summaryrefslogtreecommitdiffstats
path: root/fs/nfsd/nfs4state.c
diff options
context:
space:
mode:
authorJeff Layton2015-01-16 21:05:57 +0100
committerJeff Layton2015-01-16 22:08:50 +0100
commit7448cc37b1a6b620d948aaee3bb30960c06d5d5d (patch)
treead3db19117c9f7c6ac28e3be759ade949359c55a /fs/nfsd/nfs4state.c
parentlocks: add a dedicated spinlock to protect i_flctx lists (diff)
downloadkernel-qcow2-linux-7448cc37b1a6b620d948aaee3bb30960c06d5d5d.tar.gz
kernel-qcow2-linux-7448cc37b1a6b620d948aaee3bb30960c06d5d5d.tar.xz
kernel-qcow2-linux-7448cc37b1a6b620d948aaee3bb30960c06d5d5d.zip
locks: clean up the lm_change prototype
Now that we use standard list_heads for tracking leases, we can have lm_change take a pointer to the lease to be modified instead of a double pointer. Signed-off-by: Jeff Layton <jlayton@primarydata.com> Acked-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/nfsd/nfs4state.c')
-rw-r--r--fs/nfsd/nfs4state.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index 80242f5bd621..532a60cca2fb 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -3477,7 +3477,8 @@ nfsd_break_deleg_cb(struct file_lock *fl)
}
static int
-nfsd_change_deleg_cb(struct file_lock **onlist, int arg, struct list_head *dispose)
+nfsd_change_deleg_cb(struct file_lock *onlist, int arg,
+ struct list_head *dispose)
{
if (arg & F_UNLCK)
return lease_modify(onlist, arg, dispose);