Commit 5589cc47 authored by Chuck Lever's avatar Chuck Lever Committed by Anna Schumaker

SUNRPC: Remove remaining dprintks from sched.c

Clean up.
Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
Signed-off-by: default avatarAnna Schumaker <Anna.Schumaker@Netapp.com>
parent 721a1d38
...@@ -27,10 +27,6 @@ ...@@ -27,10 +27,6 @@
#include "sunrpc.h" #include "sunrpc.h"
#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
#define RPCDBG_FACILITY RPCDBG_SCHED
#endif
#define CREATE_TRACE_POINTS #define CREATE_TRACE_POINTS
#include <trace/events/sunrpc.h> #include <trace/events/sunrpc.h>
...@@ -1065,9 +1061,6 @@ static void rpc_init_task(struct rpc_task *task, const struct rpc_task_setup *ta ...@@ -1065,9 +1061,6 @@ static void rpc_init_task(struct rpc_task *task, const struct rpc_task_setup *ta
task->tk_action = rpc_prepare_task; task->tk_action = rpc_prepare_task;
rpc_init_task_statistics(task); rpc_init_task_statistics(task);
dprintk("RPC: new task initialized, procpid %u\n",
task_pid_nr(current));
} }
static struct rpc_task * static struct rpc_task *
...@@ -1091,7 +1084,6 @@ struct rpc_task *rpc_new_task(const struct rpc_task_setup *setup_data) ...@@ -1091,7 +1084,6 @@ struct rpc_task *rpc_new_task(const struct rpc_task_setup *setup_data)
rpc_init_task(task, setup_data); rpc_init_task(task, setup_data);
task->tk_flags |= flags; task->tk_flags |= flags;
dprintk("RPC: allocated task %p\n", task);
return task; return task;
} }
...@@ -1216,7 +1208,6 @@ static int rpciod_start(void) ...@@ -1216,7 +1208,6 @@ static int rpciod_start(void)
/* /*
* Create the rpciod thread and wait for it to start. * Create the rpciod thread and wait for it to start.
*/ */
dprintk("RPC: creating workqueue rpciod\n");
wq = alloc_workqueue("rpciod", WQ_MEM_RECLAIM | WQ_UNBOUND, 0); wq = alloc_workqueue("rpciod", WQ_MEM_RECLAIM | WQ_UNBOUND, 0);
if (!wq) if (!wq)
goto out_failed; goto out_failed;
...@@ -1241,7 +1232,6 @@ static void rpciod_stop(void) ...@@ -1241,7 +1232,6 @@ static void rpciod_stop(void)
if (rpciod_workqueue == NULL) if (rpciod_workqueue == NULL)
return; return;
dprintk("RPC: destroying workqueue rpciod\n");
wq = rpciod_workqueue; wq = rpciod_workqueue;
rpciod_workqueue = NULL; rpciod_workqueue = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment