diff options
author | J. Bruce Fields <bfields@redhat.com> | 2013-03-14 18:12:03 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2013-04-03 11:48:36 -0400 |
commit | 1ca507920db36aea8b81fe1443f96a1a6a43318f (patch) | |
tree | 857ae36228c84b4e8e6df7c5a48c58139052de38 /fs/nfsd | |
parent | 0eb6f20aa532b0c16849d627926c2ad3fe2f1cdf (diff) |
nfsd4: remove some dprintk's
E.g. printk's that just report the return value from an op are
uninteresting as we already do that in the main proc_compound loop.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/nfs4state.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index a0ab6ad7239d..84dfbdfd2d2c 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c | |||
@@ -1843,15 +1843,13 @@ nfsd4_create_session(struct svc_rqst *rqstp, | |||
1843 | /* cache solo and embedded create sessions under the state lock */ | 1843 | /* cache solo and embedded create sessions under the state lock */ |
1844 | nfsd4_cache_create_session(cr_ses, cs_slot, status); | 1844 | nfsd4_cache_create_session(cr_ses, cs_slot, status); |
1845 | nfs4_unlock_state(); | 1845 | nfs4_unlock_state(); |
1846 | out: | ||
1847 | dprintk("%s returns %d\n", __func__, ntohl(status)); | ||
1848 | return status; | 1846 | return status; |
1849 | out_free_conn: | 1847 | out_free_conn: |
1850 | nfs4_unlock_state(); | 1848 | nfs4_unlock_state(); |
1851 | free_conn(conn); | 1849 | free_conn(conn); |
1852 | out_free_session: | 1850 | out_free_session: |
1853 | __free_session(new); | 1851 | __free_session(new); |
1854 | goto out; | 1852 | return status; |
1855 | } | 1853 | } |
1856 | 1854 | ||
1857 | static __be32 nfsd4_map_bcts_dir(u32 *dir) | 1855 | static __be32 nfsd4_map_bcts_dir(u32 *dir) |
@@ -1963,7 +1961,6 @@ nfsd4_destroy_session(struct svc_rqst *r, | |||
1963 | spin_unlock(&nn->client_lock); | 1961 | spin_unlock(&nn->client_lock); |
1964 | status = nfs_ok; | 1962 | status = nfs_ok; |
1965 | out: | 1963 | out: |
1966 | dprintk("%s returns %d\n", __func__, ntohl(status)); | ||
1967 | return status; | 1964 | return status; |
1968 | } | 1965 | } |
1969 | 1966 | ||
@@ -2116,7 +2113,6 @@ out: | |||
2116 | } | 2113 | } |
2117 | kfree(conn); | 2114 | kfree(conn); |
2118 | spin_unlock(&nn->client_lock); | 2115 | spin_unlock(&nn->client_lock); |
2119 | dprintk("%s: return %d\n", __func__, ntohl(status)); | ||
2120 | return status; | 2116 | return status; |
2121 | } | 2117 | } |
2122 | 2118 | ||
@@ -2155,7 +2151,6 @@ nfsd4_destroy_clientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *csta | |||
2155 | expire_client(clp); | 2151 | expire_client(clp); |
2156 | out: | 2152 | out: |
2157 | nfs4_unlock_state(); | 2153 | nfs4_unlock_state(); |
2158 | dprintk("%s return %d\n", __func__, ntohl(status)); | ||
2159 | return status; | 2154 | return status; |
2160 | } | 2155 | } |
2161 | 2156 | ||
@@ -2532,8 +2527,6 @@ nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type) | |||
2532 | struct nfs4_ol_stateid *stp; | 2527 | struct nfs4_ol_stateid *stp; |
2533 | __be32 ret; | 2528 | __be32 ret; |
2534 | 2529 | ||
2535 | dprintk("NFSD: nfs4_share_conflict\n"); | ||
2536 | |||
2537 | fp = find_file(ino); | 2530 | fp = find_file(ino); |
2538 | if (!fp) | 2531 | if (!fp) |
2539 | return nfs_ok; | 2532 | return nfs_ok; |