Commit 1deed572 authored by Trond Myklebust's avatar Trond Myklebust
Browse files

NFSv4: Don't reclaim delegations that have been returned or revoked



If the delegation has already been revoked, we want to avoid reclaiming
it on reboot.

Signed-off-by: default avatarTrond Myklebust <trond.myklebust@hammerspace.com>
parent af20b7b8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -199,7 +199,7 @@ void nfs_inode_reclaim_delegation(struct inode *inode, const struct cred *cred,
	delegation = rcu_dereference(NFS_I(inode)->delegation);
	if (delegation != NULL) {
		spin_lock(&delegation->lock);
		if (delegation->inode != NULL) {
		if (nfs4_is_valid_delegation(delegation, 0)) {
			nfs4_stateid_copy(&delegation->stateid, stateid);
			delegation->type = type;
			delegation->pagemod_limit = pagemod_limit;