taglinefilesource code
statbuf17fs/stat.cstatic void cp_old_stat(struct inode * inode, struct old_stat * statbuf)
statbuf36fs/stat.cmemcpy_tofs(statbuf,&tmp,sizeof(tmp));
statbuf39fs/stat.cstatic void cp_new_stat(struct inode * inode, struct new_stat * statbuf)
statbuf94fs/stat.cmemcpy_tofs(statbuf,&tmp,sizeof(tmp));
statbuf97fs/stat.casmlinkage int sys_stat(char * filename, struct old_stat * statbuf)
statbuf102fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf108fs/stat.ccp_old_stat(inode,statbuf);
statbuf113fs/stat.casmlinkage int sys_newstat(char * filename, struct new_stat * statbuf)
statbuf118fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf124fs/stat.ccp_new_stat(inode,statbuf);
statbuf129fs/stat.casmlinkage int sys_lstat(char * filename, struct old_stat * statbuf)
statbuf134fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf140fs/stat.ccp_old_stat(inode,statbuf);
statbuf145fs/stat.casmlinkage int sys_newlstat(char * filename, struct new_stat * statbuf)
statbuf150fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf156fs/stat.ccp_new_stat(inode,statbuf);
statbuf161fs/stat.casmlinkage int sys_fstat(unsigned int fd, struct old_stat * statbuf)
statbuf167fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf172fs/stat.ccp_old_stat(inode,statbuf);
statbuf176fs/stat.casmlinkage int sys_newfstat(unsigned int fd, struct new_stat * statbuf)
statbuf182fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf187fs/stat.ccp_new_stat(inode,statbuf);