[patch]xprt: remove redundant check

From: j223yang
Date: Wed Mar 16 2011 - 11:16:38 EST


remove redundant check, second hunk.

Signed-off-by: Jinqiu Yang <crindy646@xxxxxxxxx>
---
xprt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/sunrpc/xprt.c b/net/sunrpc/xprt
--- a/net/sunrpc/xprt.c 2011-03-16 11:06:58.460039603 -0400
+++ b/net/sunrpc/xprt.c 2011-03-16 11:07:49.835164663 -0400
@@ -212,7 +212,7 @@ out_sleep:
task->tk_pid, xprt);
task->tk_timeout = 0;
task->tk_status = -EAGAIN;
- if (req && req->rq_ntrans)
+ if (req->rq_ntrans)
rpc_sleep_on(&xprt->resend, task, NULL);
else
rpc_sleep_on(&xprt->sending, task, NULL);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/