mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
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>
This commit is contained in:
parent
bbf25010f1
commit
45457e0916
1 changed files with 1 additions and 1 deletions
|
@ -549,7 +549,7 @@ nfsd_dispatch(struct svc_rqst *rqstp, __be32 *statp)
|
||||||
if (nfserr == nfserr_jukebox && rqstp->rq_vers == 2)
|
if (nfserr == nfserr_jukebox && rqstp->rq_vers == 2)
|
||||||
nfserr = nfserr_dropit;
|
nfserr = nfserr_dropit;
|
||||||
if (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);
|
nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue