taglinefilesource code
statbuf14fs/stat.cstatic void cp_old_stat(struct inode * inode, struct old_stat * statbuf)
statbuf31fs/stat.cmemcpy_tofs(statbuf,&tmp,sizeof(tmp));
statbuf34fs/stat.cstatic void cp_new_stat(struct inode * inode, struct new_stat * statbuf)
statbuf86fs/stat.cmemcpy_tofs(statbuf,&tmp,sizeof(tmp));
statbuf89fs/stat.casmlinkage int sys_stat(char * filename, struct old_stat * statbuf)
statbuf94fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf100fs/stat.ccp_old_stat(inode,statbuf);
statbuf105fs/stat.casmlinkage int sys_newstat(char * filename, struct new_stat * statbuf)
statbuf110fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf116fs/stat.ccp_new_stat(inode,statbuf);
statbuf121fs/stat.casmlinkage int sys_lstat(char * filename, struct old_stat * statbuf)
statbuf126fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf132fs/stat.ccp_old_stat(inode,statbuf);
statbuf137fs/stat.casmlinkage int sys_newlstat(char * filename, struct new_stat * statbuf)
statbuf142fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf148fs/stat.ccp_new_stat(inode,statbuf);
statbuf153fs/stat.casmlinkage int sys_fstat(unsigned int fd, struct old_stat * statbuf)
statbuf159fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf164fs/stat.ccp_old_stat(inode,statbuf);
statbuf168fs/stat.casmlinkage int sys_newfstat(unsigned int fd, struct new_stat * statbuf)
statbuf174fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf179fs/stat.ccp_new_stat(inode,statbuf);