diff options
author | 2024-08-26 08:50:11 -0400 | |
---|---|---|
committer | 2024-09-20 19:31:03 -0400 | |
commit | e8581a9124470b751db8ec46044720d1597dbbfe (patch) | |
tree | 84644848c89da25e24b00a592d82cdcec9ec25a8 | |
parent | nfsd: fix some spelling errors in comments (diff) | |
download | wireguard-linux-e8581a9124470b751db8ec46044720d1597dbbfe.tar.xz wireguard-linux-e8581a9124470b751db8ec46044720d1597dbbfe.zip |
nfsd: add more info to WARN_ON_ONCE on failed callbacks
Currently, you get the warning and stack trace, but nothing is printed
about the relevant error codes. Add that in.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
-rw-r--r-- | fs/nfsd/nfs4callback.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4callback.c b/fs/nfsd/nfs4callback.c index d756f443fc44..dee9477cc5b5 100644 --- a/fs/nfsd/nfs4callback.c +++ b/fs/nfsd/nfs4callback.c @@ -1333,7 +1333,8 @@ static void nfsd4_cb_done(struct rpc_task *task, void *calldata) return; if (cb->cb_status) { - WARN_ON_ONCE(task->tk_status); + WARN_ONCE(task->tk_status, "cb_status=%d tk_status=%d", + cb->cb_status, task->tk_status); task->tk_status = cb->cb_status; } |