2011-03-16 15:16:29

by j223yang

[permalink] [raw]
Subject: [patch]xprt: remove redundant check

remove redundant check, second hunk.

Signed-off-by: Jinqiu Yang <[email protected]>
---
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);