• Home
  • Raw
  • Download

Lines Matching refs:filep

22 static int _nfs42_proc_fallocate(struct rpc_message *msg, struct file *filep,  in _nfs42_proc_fallocate()  argument
25 struct inode *inode = file_inode(filep); in _nfs42_proc_fallocate()
59 static int nfs42_proc_fallocate(struct rpc_message *msg, struct file *filep, in nfs42_proc_fallocate() argument
62 struct nfs_server *server = NFS_SERVER(file_inode(filep)); in nfs42_proc_fallocate()
67 lock = nfs_get_lock_context(nfs_file_open_context(filep)); in nfs42_proc_fallocate()
71 exception.inode = file_inode(filep); in nfs42_proc_fallocate()
75 err = _nfs42_proc_fallocate(msg, filep, lock, offset, len); in nfs42_proc_fallocate()
87 int nfs42_proc_allocate(struct file *filep, loff_t offset, loff_t len) in nfs42_proc_allocate() argument
92 struct inode *inode = file_inode(filep); in nfs42_proc_allocate()
100 err = nfs42_proc_fallocate(&msg, filep, offset, len); in nfs42_proc_allocate()
108 int nfs42_proc_deallocate(struct file *filep, loff_t offset, loff_t len) in nfs42_proc_deallocate() argument
113 struct inode *inode = file_inode(filep); in nfs42_proc_deallocate()
124 err = nfs42_proc_fallocate(&msg, filep, offset, len); in nfs42_proc_deallocate()
462 static loff_t _nfs42_proc_llseek(struct file *filep, in _nfs42_proc_llseek() argument
465 struct inode *inode = file_inode(filep); in _nfs42_proc_llseek()
501 return vfs_setpos(filep, res.sr_offset, inode->i_sb->s_maxbytes); in _nfs42_proc_llseek()
504 loff_t nfs42_proc_llseek(struct file *filep, loff_t offset, int whence) in nfs42_proc_llseek() argument
506 struct nfs_server *server = NFS_SERVER(file_inode(filep)); in nfs42_proc_llseek()
511 lock = nfs_get_lock_context(nfs_file_open_context(filep)); in nfs42_proc_llseek()
515 exception.inode = file_inode(filep); in nfs42_proc_llseek()
519 err = _nfs42_proc_llseek(filep, lock, offset, whence); in nfs42_proc_llseek()