From: Christoph Hellwig Date: Wed, 7 Jan 2026 07:27:03 +0000 (+0100) Subject: NFS: rewrite nfs_delegations_present in terms of nr_active_delegations X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d80e59f29d8cd14230899dfe9c462b710521a85;p=thirdparty%2Fkernel%2Flinux.git NFS: rewrite nfs_delegations_present in terms of nr_active_delegations Renewal only cares for active delegations and not revoked ones. Replace the list empty check with reading the active delegation counter to implement this. Signed-off-by: Christoph Hellwig Signed-off-by: Anna Schumaker --- diff --git a/fs/nfs/delegation.c b/fs/nfs/delegation.c index f56b1d29650a1..8e5cb8fc3f323 100644 --- a/fs/nfs/delegation.c +++ b/fs/nfs/delegation.c @@ -1453,7 +1453,7 @@ int nfs_delegations_present(struct nfs_client *clp) rcu_read_lock(); list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) - if (!list_empty(&server->delegations)) { + if (atomic_long_read(&server->nr_active_delegations) > 0) { ret = 1; break; }