aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@redhat.com>2018-02-15 22:08:45 -0500
committerJ. Bruce Fields <bfields@redhat.com>2018-03-20 17:51:11 -0400
commit653e514e9ebcb1d6ab71c2c8bb28a3b65ffbfe15 (patch)
tree579fe0f28cd593e4ef91bbbd44e785243f0eb121
parentcba7b3d15071fa0deb5b6e7a1c97c29d2904e6a3 (diff)
nfsd4: set fl_owner to delegation, not file pointer
For now this makes no difference, as for files having delegations, there's a one-to-one relationship between an nfs4_file and its nfs4_delegation. Signed-off-by: J. Bruce Fields <bfields@redhat.com> Reviewed-by: Jeff Layton <jlayton@kernel.org>
-rw-r--r--fs/nfsd/nfs4state.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index 39a4de64ce93..33538b98720a 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -889,7 +889,7 @@ static void nfs4_put_deleg_lease(struct nfs4_delegation *dp)
889 spin_unlock(&fp->fi_lock); 889 spin_unlock(&fp->fi_lock);
890 890
891 if (filp) { 891 if (filp) {
892 vfs_setlease(filp, F_UNLCK, NULL, (void **)&fp); 892 vfs_setlease(filp, F_UNLCK, NULL, (void **)&dp);
893 fput(filp); 893 fput(filp);
894 } 894 }
895} 895}
@@ -3957,13 +3957,9 @@ static bool
3957nfsd_break_deleg_cb(struct file_lock *fl) 3957nfsd_break_deleg_cb(struct file_lock *fl)
3958{ 3958{
3959 bool ret = false; 3959 bool ret = false;
3960 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner; 3960 struct nfs4_delegation *dp = (struct nfs4_delegation *)fl->fl_owner;
3961 struct nfs4_delegation *dp; 3961 struct nfs4_file *fp = dp->dl_stid.sc_file;
3962 3962
3963 if (!fp) {
3964 WARN(1, "(%p)->fl_owner NULL\n", fl);
3965 return ret;
3966 }
3967 if (fp->fi_had_conflict) { 3963 if (fp->fi_had_conflict) {
3968 WARN(1, "duplicate break on %p\n", fp); 3964 WARN(1, "duplicate break on %p\n", fp);
3969 return ret; 3965 return ret;
@@ -4309,7 +4305,8 @@ static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
4309 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN; 4305 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
4310} 4306}
4311 4307
4312static struct file_lock *nfs4_alloc_init_lease(struct nfs4_file *fp, int flag) 4308static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp,
4309 int flag)
4313{ 4310{
4314 struct file_lock *fl; 4311 struct file_lock *fl;
4315 4312
@@ -4320,7 +4317,7 @@ static struct file_lock *nfs4_alloc_init_lease(struct nfs4_file *fp, int flag)
4320 fl->fl_flags = FL_DELEG; 4317 fl->fl_flags = FL_DELEG;
4321 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK; 4318 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
4322 fl->fl_end = OFFSET_MAX; 4319 fl->fl_end = OFFSET_MAX;
4323 fl->fl_owner = (fl_owner_t)fp; 4320 fl->fl_owner = (fl_owner_t)dp;
4324 fl->fl_pid = current->tgid; 4321 fl->fl_pid = current->tgid;
4325 return fl; 4322 return fl;
4326} 4323}
@@ -4344,7 +4341,7 @@ static int nfs4_setlease(struct nfs4_delegation *dp)
4344 struct file *filp; 4341 struct file *filp;
4345 int status = 0; 4342 int status = 0;
4346 4343
4347 fl = nfs4_alloc_init_lease(fp, NFS4_OPEN_DELEGATE_READ); 4344 fl = nfs4_alloc_init_lease(dp, NFS4_OPEN_DELEGATE_READ);
4348 if (!fl) 4345 if (!fl)
4349 return -ENOMEM; 4346 return -ENOMEM;
4350 filp = find_readable_file(fp); 4347 filp = find_readable_file(fp);