Skip to content

Commit 6c53da5

Browse files
committed
SUNRPC: Remove transport class dprintk call sites
Remove a couple of dprintk call sites that are of little value. Reviewed-by: Jeff Layton <jlayton@kernel.org> Acked-by: Tom Talpey <tom@talpey.com> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
1 parent 02cea33 commit 6c53da5

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

net/sunrpc/svc_xprt.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,6 @@ int svc_reg_xprt_class(struct svc_xprt_class *xcl)
8686
struct svc_xprt_class *cl;
8787
int res = -EEXIST;
8888

89-
dprintk("svc: Adding svc transport class '%s'\n", xcl->xcl_name);
90-
9189
INIT_LIST_HEAD(&xcl->xcl_list);
9290
spin_lock(&svc_xprt_class_lock);
9391
/* Make sure there isn't already a class with the same name */
@@ -110,7 +108,6 @@ EXPORT_SYMBOL_GPL(svc_reg_xprt_class);
110108
*/
111109
void svc_unreg_xprt_class(struct svc_xprt_class *xcl)
112110
{
113-
dprintk("svc: Removing svc transport class '%s'\n", xcl->xcl_name);
114111
spin_lock(&svc_xprt_class_lock);
115112
list_del_init(&xcl->xcl_list);
116113
spin_unlock(&svc_xprt_class_lock);

0 commit comments

Comments
 (0)