SUNRPC: remove BUG_ONs checking RPC_IS_QUEUED
Replace two BUG_ON() calls with WARN_ON_ONCE() and early returns. Signed-off-by: Weston Andros Adamson <dros@netapp.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
committed by
Trond Myklebust
parent
f50ad42837
commit
2bd4eef87b
@@ -133,7 +133,9 @@ static void __rpc_add_wait_queue(struct rpc_wait_queue *queue,
|
|||||||
struct rpc_task *task,
|
struct rpc_task *task,
|
||||||
unsigned char queue_priority)
|
unsigned char queue_priority)
|
||||||
{
|
{
|
||||||
BUG_ON (RPC_IS_QUEUED(task));
|
WARN_ON_ONCE(RPC_IS_QUEUED(task));
|
||||||
|
if (RPC_IS_QUEUED(task))
|
||||||
|
return;
|
||||||
|
|
||||||
if (RPC_IS_PRIORITY(queue))
|
if (RPC_IS_PRIORITY(queue))
|
||||||
__rpc_add_wait_queue_priority(queue, task, queue_priority);
|
__rpc_add_wait_queue_priority(queue, task, queue_priority);
|
||||||
@@ -707,7 +709,9 @@ static void __rpc_execute(struct rpc_task *task)
|
|||||||
dprintk("RPC: %5u __rpc_execute flags=0x%x\n",
|
dprintk("RPC: %5u __rpc_execute flags=0x%x\n",
|
||||||
task->tk_pid, task->tk_flags);
|
task->tk_pid, task->tk_flags);
|
||||||
|
|
||||||
BUG_ON(RPC_IS_QUEUED(task));
|
WARN_ON_ONCE(RPC_IS_QUEUED(task));
|
||||||
|
if (RPC_IS_QUEUED(task))
|
||||||
|
return;
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
void (*do_action)(struct rpc_task *);
|
void (*do_action)(struct rpc_task *);
|
||||||
|
Reference in New Issue
Block a user