taglinefilesource code
statbuf23fs/stat.cstatic void cp_old_stat(struct inode * inode, struct old_stat * statbuf)
statbuf42fs/stat.cmemcpy_tofs(statbuf,&tmp,sizeof(tmp));
statbuf47fs/stat.cstatic void cp_new_stat(struct inode * inode, struct new_stat * statbuf)
statbuf102fs/stat.cmemcpy_tofs(statbuf,&tmp,sizeof(tmp));
statbuf110fs/stat.casmlinkage int sys_stat(char * filename, struct old_stat * statbuf)
statbuf115fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf121fs/stat.ccp_old_stat(inode,statbuf);
statbuf127fs/stat.casmlinkage int sys_newstat(char * filename, struct new_stat * statbuf)
statbuf132fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf138fs/stat.ccp_new_stat(inode,statbuf);
statbuf149fs/stat.casmlinkage int sys_lstat(char * filename, struct old_stat * statbuf)
statbuf154fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf160fs/stat.ccp_old_stat(inode,statbuf);
statbuf167fs/stat.casmlinkage int sys_newlstat(char * filename, struct new_stat * statbuf)
statbuf172fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf178fs/stat.ccp_new_stat(inode,statbuf);
statbuf189fs/stat.casmlinkage int sys_fstat(unsigned int fd, struct old_stat * statbuf)
statbuf195fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf200fs/stat.ccp_old_stat(inode,statbuf);
statbuf206fs/stat.casmlinkage int sys_newfstat(unsigned int fd, struct new_stat * statbuf)
statbuf212fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf217fs/stat.ccp_new_stat(inode,statbuf);