aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs
diff options
context:
space:
mode:
authorChuck Lever <cel@netapp.com>2005-11-30 18:08:57 -0500
committerTrond Myklebust <Trond.Myklebust@netapp.com>2006-01-06 14:58:48 -0500
commitdc20f803904dbf30f834dcc43c14701dfce32491 (patch)
tree27d12ce7f8c7455501c93198d194824a346ce2ad /fs/nfs
parentNFS: simplify inlined bit ops in nfs_page.h (diff)
downloadlinux-dev-dc20f803904dbf30f834dcc43c14701dfce32491.tar.xz
linux-dev-dc20f803904dbf30f834dcc43c14701dfce32491.zip
NFS: get rid of useless kernel log message
nfs_statfs() generates a log message when GETATTR returns an error. This is usually a useless message. Make it a dprintk. Test plan: None Signed-off-by: Chuck Lever <cel@netapp.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r--fs/nfs/inode.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c
index da58207b366b..cc753928e411 100644
--- a/fs/nfs/inode.c
+++ b/fs/nfs/inode.c
@@ -575,11 +575,10 @@ nfs_statfs(struct super_block *sb, struct kstatfs *buf)
buf->f_namelen = server->namelen;
out:
unlock_kernel();
-
return 0;
out_err:
- printk(KERN_WARNING "nfs_statfs: statfs error = %d\n", -error);
+ dprintk("%s: statfs error = %d\n", __FUNCTION__, -error);
buf->f_bsize = buf->f_blocks = buf->f_bfree = buf->f_bavail = -1;
goto out;