Skip to content

Commit

Permalink
SUNRPC: Remove remaining dprintks from sched.c
Browse files Browse the repository at this point in the history
Clean up.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
  • Loading branch information
Chuck Lever authored and Anna Schumaker committed Sep 21, 2020
1 parent 721a1d3 commit 5589cc4
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions net/sunrpc/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@

#include "sunrpc.h"

#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
#define RPCDBG_FACILITY RPCDBG_SCHED
#endif

#define CREATE_TRACE_POINTS
#include <trace/events/sunrpc.h>

Expand Down Expand Up @@ -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;

rpc_init_task_statistics(task);

dprintk("RPC: new task initialized, procpid %u\n",
task_pid_nr(current));
}

static struct rpc_task *
Expand All @@ -1091,7 +1084,6 @@ struct rpc_task *rpc_new_task(const struct rpc_task_setup *setup_data)

rpc_init_task(task, setup_data);
task->tk_flags |= flags;
dprintk("RPC: allocated task %p\n", task);
return task;
}

Expand Down Expand Up @@ -1216,7 +1208,6 @@ static int rpciod_start(void)
/*
* 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);
if (!wq)
goto out_failed;
Expand All @@ -1241,7 +1232,6 @@ static void rpciod_stop(void)

if (rpciod_workqueue == NULL)
return;
dprintk("RPC: destroying workqueue rpciod\n");

wq = rpciod_workqueue;
rpciod_workqueue = NULL;
Expand Down

0 comments on commit 5589cc4

Please sign in to comment.