diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2010-09-21 16:55:47 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-09-21 16:55:47 -0400 |
commit | d141d97437a3c84aa18cfd5c8d91b89c4173f25c (patch) | |
tree | 56caa08d56a6c1fb947aefffa53656d189c805a2 /fs | |
parent | 609588928fae2c977c887d6d31b1f0aae60ea09e (diff) |
NFS: Fix NFSv3 debugging messages in fs/nfs/nfs3proc.c
Clean up.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfs/nfs3proc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/nfs/nfs3proc.c b/fs/nfs/nfs3proc.c index 4e9d941ab548..f8446b38dcb4 100644 --- a/fs/nfs/nfs3proc.c +++ b/fs/nfs/nfs3proc.c | |||
@@ -671,7 +671,8 @@ nfs3_proc_readdir(struct dentry *dentry, struct rpc_cred *cred, | |||
671 | 671 | ||
672 | nfs_free_fattr(res.dir_attr); | 672 | nfs_free_fattr(res.dir_attr); |
673 | out: | 673 | out: |
674 | dprintk("NFS reply readdir: %d\n", status); | 674 | dprintk("NFS reply readdir%s: %d\n", |
675 | plus? "plus" : "", status); | ||
675 | return status; | 676 | return status; |
676 | } | 677 | } |
677 | 678 | ||
@@ -741,7 +742,7 @@ nfs3_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, | |||
741 | dprintk("NFS call fsstat\n"); | 742 | dprintk("NFS call fsstat\n"); |
742 | nfs_fattr_init(stat->fattr); | 743 | nfs_fattr_init(stat->fattr); |
743 | status = rpc_call_sync(server->client, &msg, 0); | 744 | status = rpc_call_sync(server->client, &msg, 0); |
744 | dprintk("NFS reply statfs: %d\n", status); | 745 | dprintk("NFS reply fsstat: %d\n", status); |
745 | return status; | 746 | return status; |
746 | } | 747 | } |
747 | 748 | ||