xprt: remove redundant null check
author[email protected] <[email protected]>
Thu, 10 Mar 2011 17:40:28 +0000 (12:40 -0500)
committerTrond Myklebust <[email protected]>
Wed, 16 Mar 2011 00:16:14 +0000 (20:16 -0400)
'req' is dereferenced before checked for NULL.
The patch simply removes the check.

Signed-off-by: Jinqiu Yang<[email protected]>
Signed-off-by: Trond Myklebust <[email protected]>
net/sunrpc/xprt.c

index 856274d7e85c21eb6b89feff50ff767986b344e2..8bdcdbe07b98f9de382ab182a5f2d2746825cfc9 100644 (file)
@@ -202,10 +202,9 @@ int xprt_reserve_xprt(struct rpc_task *task)
                goto out_sleep;
        }
        xprt->snd_task = task;
-       if (req) {
-               req->rq_bytes_sent = 0;
-               req->rq_ntrans++;
-       }
+       req->rq_bytes_sent = 0;
+       req->rq_ntrans++;
+
        return 1;
 
 out_sleep: