]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
nfsd: nfserr_jukebox in nlm_fopen should lead to a retry
authorOlga Kornievskaia <okorniev@redhat.com>
Thu, 21 Aug 2025 20:31:46 +0000 (16:31 -0400)
committerChuck Lever <chuck.lever@oracle.com>
Sun, 21 Sep 2025 23:24:50 +0000 (19:24 -0400)
commita082e4b4d08a4a0e656d90c2c05da85f23e6d0c9
tree0a2066ac87f31695f6465249031e4482ad193987
parent8ddd06be9a9e2b9f4af9b337150af834862331ef
nfsd: nfserr_jukebox in nlm_fopen should lead to a retry

When v3 NLM request finds a conflicting delegation, it triggers
a delegation recall and nfsd_open fails with EAGAIN. nfsd_open
then translates EAGAIN into nfserr_jukebox. In nlm_fopen, instead
of returning nlm_failed for when there is a conflicting delegation,
drop this NLM request so that the client retries. Once delegation
is recalled and if a local lock is claimed, a retry would lead to
nfsd returning a nlm_lck_blocked error or a successful nlm lock.

Fixes: d343fce148a4 ("[PATCH] knfsd: Allow lockd to drop replies as appropriate")
Cc: stable@vger.kernel.org # v6.6
Signed-off-by: Olga Kornievskaia <okorniev@redhat.com>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
fs/nfsd/lockd.c