diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2013-01-08 09:26:49 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2013-02-01 10:13:47 -0500 |
commit | 1b092092bf0e2e8b7af1c2a03f615b4e60b05d47 (patch) | |
tree | 4efc332b4648144fa055fa72f1867cbc2b30e756 /net/sunrpc/xprt.c | |
parent | a4f0835c604f80f945ab3e72ffd00547145c4b2b (diff) | |
download | linux-1b092092bf0e2e8b7af1c2a03f615b4e60b05d47.tar.bz2 |
SUNRPC: Pass a pointer to struct rpc_xprt to the connect callback
Avoid another RCU dereference by passing the pointer to struct rpc_xprt
from the caller.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/xprt.c')
-rw-r--r-- | net/sunrpc/xprt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/xprt.c b/net/sunrpc/xprt.c index 738ad59628cd..774025109e2f 100644 --- a/net/sunrpc/xprt.c +++ b/net/sunrpc/xprt.c @@ -724,7 +724,7 @@ void xprt_connect(struct rpc_task *task) if (xprt_test_and_set_connecting(xprt)) return; xprt->stat.connect_start = jiffies; - xprt->ops->connect(task); + xprt->ops->connect(xprt, task); } } |