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

Commit 393d8ed8 authored by J. Bruce Fields's avatar J. Bruce Fields
Browse files

nfsd4: purge stable client records with insufficient state



To escape having your stable storage record purged at the end of the
grace period, it's not sufficient to simply have performed a
setclientid_confirm; you also need to meet the same requirements as
someone creating a new record: either you should have done an open or
open reclaim (in the 4.0 case) or a reclaim_complete (in the 4.1 case).

Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent 1255a8f3
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -4415,7 +4415,9 @@ nfs4_has_reclaimed_state(const char *name, bool use_exchange_id)
	struct nfs4_client *clp;

	clp = find_confirmed_client_by_str(name, strhashval);
	return clp ? 1 : 0;
	if (!clp)
		return 0;
	return clp->cl_firststate;
}

/*