taglinefilesource code
statbuf15fs/stat.cstatic void cp_old_stat(struct inode * inode, struct old_stat * statbuf)
statbuf32fs/stat.cmemcpy_tofs(statbuf,&tmp,sizeof(tmp));
statbuf35fs/stat.cstatic void cp_new_stat(struct inode * inode, struct new_stat * statbuf)
statbuf88fs/stat.cmemcpy_tofs(statbuf,&tmp,sizeof(tmp));
statbuf91fs/stat.casmlinkage int sys_stat(char * filename, struct old_stat * statbuf)
statbuf96fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf102fs/stat.ccp_old_stat(inode,statbuf);
statbuf107fs/stat.casmlinkage int sys_newstat(char * filename, struct new_stat * statbuf)
statbuf112fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf118fs/stat.ccp_new_stat(inode,statbuf);
statbuf123fs/stat.casmlinkage int sys_lstat(char * filename, struct old_stat * statbuf)
statbuf128fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf134fs/stat.ccp_old_stat(inode,statbuf);
statbuf139fs/stat.casmlinkage int sys_newlstat(char * filename, struct new_stat * statbuf)
statbuf144fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf150fs/stat.ccp_new_stat(inode,statbuf);
statbuf155fs/stat.casmlinkage int sys_fstat(unsigned int fd, struct old_stat * statbuf)
statbuf161fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf166fs/stat.ccp_old_stat(inode,statbuf);
statbuf170fs/stat.casmlinkage int sys_newfstat(unsigned int fd, struct new_stat * statbuf)
statbuf176fs/stat.cerror = verify_area(VERIFY_WRITE,statbuf,sizeof (*statbuf));
statbuf181fs/stat.ccp_new_stat(inode,statbuf);