From: J. Bruce Fields Date: Mon, 5 May 2008 21:17:44 +0000 (-0400) Subject: nfsd: add dprintk of compound return X-Git-Tag: v2.6.27-rc1~961^2~39 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3b12cd9862d5f560031d90bda78952ab55e36b24;p=karo-tx-linux.git nfsd: add dprintk of compound return We already print each operation of the compound when debugging is turned on; printing the result could also help with remote debugging. Signed-off-by: J. Bruce Fields --- diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c index c309c881bd4e..313484380a9b 100644 --- a/fs/nfsd/nfs4proc.c +++ b/fs/nfsd/nfs4proc.c @@ -952,6 +952,7 @@ encode_op: out: nfsd4_release_compoundargs(args); cstate_free(cstate); + dprintk("nfsv4 compound returned %d\n", ntohl(status)); return status; }