diff options
author | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-06-01 22:59:08 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-06-05 11:15:42 -0400 |
commit | 0f41979164a52a1ca0f0a601f90000fc18e3a396 (patch) | |
tree | bd988ee2e67be19b718883af1379ad9c16e3c41f /net/sunrpc/svc.c | |
parent | 632dda833e28fe43049a01b4bc53e409176e7843 (diff) | |
download | linux-stable-0f41979164a52a1ca0f0a601f90000fc18e3a396.tar.gz linux-stable-0f41979164a52a1ca0f0a601f90000fc18e3a396.tar.bz2 linux-stable-0f41979164a52a1ca0f0a601f90000fc18e3a396.zip |
SUNRPC: Remove unused argument 'tk_ops' in rpc_run_bc_task
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'net/sunrpc/svc.c')
-rw-r--r-- | net/sunrpc/svc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index e144902d382e..51c8cad5e765 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c @@ -1350,7 +1350,6 @@ bc_svc_process(struct svc_serv *serv, struct rpc_rqst *req, { struct kvec *argv = &rqstp->rq_arg.head[0]; struct kvec *resv = &rqstp->rq_res.head[0]; - static const struct rpc_call_ops reply_ops = { }; struct rpc_task *task; int error; @@ -1391,7 +1390,7 @@ bc_svc_process(struct svc_serv *serv, struct rpc_rqst *req, /* Finally, send the reply synchronously */ memcpy(&req->rq_snd_buf, &rqstp->rq_res, sizeof(req->rq_snd_buf)); - task = rpc_run_bc_task(req, &reply_ops); + task = rpc_run_bc_task(req); if (IS_ERR(task)) { error = PTR_ERR(task); goto out; |