Lines Matching refs:cmd
654 do_getlk(struct file *filp, int cmd, struct file_lock *fl, int is_local) in do_getlk() argument
674 status = NFS_PROTO(inode)->lock(filp, cmd, fl); in do_getlk()
699 do_unlk(struct file *filp, int cmd, struct file_lock *fl, int is_local) in do_unlk() argument
719 status = NFS_PROTO(inode)->lock(filp, cmd, fl); in do_unlk()
731 do_setlk(struct file *filp, int cmd, struct file_lock *fl, int is_local) in do_setlk() argument
749 status = NFS_PROTO(inode)->lock(filp, cmd, fl); in do_setlk()
776 static int nfs_lock(struct file *filp, int cmd, struct file_lock *fl) in nfs_lock() argument
803 if (IS_GETLK(cmd)) in nfs_lock()
804 ret = do_getlk(filp, cmd, fl, is_local); in nfs_lock()
806 ret = do_unlk(filp, cmd, fl, is_local); in nfs_lock()
808 ret = do_setlk(filp, cmd, fl, is_local); in nfs_lock()
816 static int nfs_flock(struct file *filp, int cmd, struct file_lock *fl) in nfs_flock() argument
838 return do_unlk(filp, cmd, fl, is_local); in nfs_flock()
839 return do_setlk(filp, cmd, fl, is_local); in nfs_flock()