Replace BUG_ON() with WARN_ON_ONCE() and handle error condition by calling rpc_exit(). Signed-off-by: Weston Andros Adamson <dros@xxxxxxxxxx> --- net/sunrpc/clnt.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index ced0f36..bff6438 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c @@ -1750,7 +1750,12 @@ call_bc_transmit(struct rpc_task *task) { struct rpc_rqst *req = task->tk_rqstp; - BUG_ON(task->tk_status != 0); + WARN_ON_ONCE(task->tk_status != 0); + if (task->tk_status != 0) { + rpc_exit(task, task->tk_status); + return; + } + task->tk_status = xprt_prepare_transmit(task); if (task->tk_status == -EAGAIN) { /* -- 1.7.9.6 (Apple Git-31.1) -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html