diff options
author | Olga Kornievskaia <[email protected]> | 2021-03-11 10:55:00 -0500 |
---|---|---|
committer | Chuck Lever <[email protected]> | 2021-03-11 10:58:49 -0500 |
commit | b4250dd868d1b42c0a65de11ef3afbee67ba5d2f (patch) | |
tree | 14d92fec167a211d6299eef16d95a242a8f07b57 | |
parent | 614c9750173e412663728215152cc6d12bcb3425 (diff) |
NFSD: fix error handling in NFSv4.0 callbacks
When the server tries to do a callback and a client fails it due to
authentication problems, we need the server to set callback down
flag in RENEW so that client can recover.
Suggested-by: Bruce Fields <[email protected]>
Signed-off-by: Olga Kornievskaia <[email protected]>
Signed-off-by: Chuck Lever <[email protected]>
Tested-by: Benjamin Coddington <[email protected]>
Link: https://lore.kernel.org/linux-nfs/[email protected]/T/#t
-rw-r--r-- | fs/nfsd/nfs4callback.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfsd/nfs4callback.c b/fs/nfsd/nfs4callback.c index 052be5bf9ef5..7325592b456e 100644 --- a/fs/nfsd/nfs4callback.c +++ b/fs/nfsd/nfs4callback.c @@ -1189,6 +1189,7 @@ static void nfsd4_cb_done(struct rpc_task *task, void *calldata) switch (task->tk_status) { case -EIO: case -ETIMEDOUT: + case -EACCES: nfsd4_mark_cb_down(clp, task->tk_status); } break; |