Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 858cc573 authored by Trond Myklebust's avatar Trond Myklebust Committed by J. Bruce Fields
Browse files

nfsd: nfsd4_locku() must reference the lock stateid



Ensure that nfsd4_locku() keeps a reference to the lock stateid
until it is done working with it. Necessary step toward client_mutex
removal.

Signed-off-by: default avatarTrond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent 3d0fabd5
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -5147,10 +5147,12 @@ nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
					&stp, nn);
	if (status)
		goto out;
	/* FIXME: move into nfs4_preprocess_seqid_op */
	atomic_inc(&stp->st_stid.sc_count);
	filp = find_any_file(stp->st_stid.sc_file);
	if (!filp) {
		status = nfserr_lock_range;
		goto out;
		goto put_stateid;
	}
	file_lock = locks_alloc_lock();
	if (!file_lock) {
@@ -5180,6 +5182,8 @@ nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
	memcpy(&locku->lu_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
fput:
	fput(filp);
put_stateid:
	nfs4_put_stid(&stp->st_stid);
out:
	nfsd4_bump_seqid(cstate, status);
	if (!cstate->replay_owner)