summaryrefslogtreecommitdiffstats
path: root/fs/nfsd/nfssvc.c
diff options
context:
space:
mode:
authorJ. Bruce Fields2007-06-22 23:26:32 +0200
committerJ. Bruce Fields2007-10-10 00:31:54 +0200
commit45457e0916f8253691a44d3574949b6d3d5872b1 (patch)
tree60774cfc75cf073280b39ad82f095704c4b221af /fs/nfsd/nfssvc.c
parentLinux 2.6.23 (diff)
downloadkernel-qcow2-linux-45457e0916f8253691a44d3574949b6d3d5872b1.tar.gz
kernel-qcow2-linux-45457e0916f8253691a44d3574949b6d3d5872b1.tar.xz
kernel-qcow2-linux-45457e0916f8253691a44d3574949b6d3d5872b1.zip
nfsd: tone down inaccurate dprintk
The nfserr_dropit happens routinely on upcalls (so a kmalloc failure is almost never the actual cause), but I occasionally get a complant from some tester that's worried because they ran across this message after turning on debugging to research some unrelated problem. Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu> Acked-by: Neil Brown <neilb@suse.de>
Diffstat (limited to 'fs/nfsd/nfssvc.c')
-rw-r--r--fs/nfsd/nfssvc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfssvc.c b/fs/nfsd/nfssvc.c
index a8c89ae4c743..221eeaa68a2d 100644
--- a/fs/nfsd/nfssvc.c
+++ b/fs/nfsd/nfssvc.c
@@ -549,7 +549,7 @@ nfsd_dispatch(struct svc_rqst *rqstp, __be32 *statp)
if (nfserr == nfserr_jukebox && rqstp->rq_vers == 2)
nfserr = nfserr_dropit;
if (nfserr == nfserr_dropit) {
- dprintk("nfsd: Dropping request due to malloc failure!\n");
+ dprintk("nfsd: Dropping request; may be revisited later\n");
nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
return 0;
}