aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc
diff options
context:
space:
mode:
Diffstat (limited to 'net/sunrpc')
-rw-r--r--net/sunrpc/sched.c5
-rw-r--r--net/sunrpc/xprt.c5
2 files changed, 4 insertions, 6 deletions
diff --git a/net/sunrpc/sched.c b/net/sunrpc/sched.c
index c98873f39ae..eed5dd9819c 100644
--- a/net/sunrpc/sched.c
+++ b/net/sunrpc/sched.c
@@ -811,9 +811,8 @@ EXPORT_SYMBOL_GPL(rpc_free);
811void rpc_init_task(struct rpc_task *task, struct rpc_clnt *clnt, int flags, const struct rpc_call_ops *tk_ops, void *calldata) 811void rpc_init_task(struct rpc_task *task, struct rpc_clnt *clnt, int flags, const struct rpc_call_ops *tk_ops, void *calldata)
812{ 812{
813 memset(task, 0, sizeof(*task)); 813 memset(task, 0, sizeof(*task));
814 init_timer(&task->tk_timer); 814 setup_timer(&task->tk_timer, (void (*)(unsigned long))rpc_run_timer,
815 task->tk_timer.data = (unsigned long) task; 815 (unsigned long)task);
816 task->tk_timer.function = (void (*)(unsigned long)) rpc_run_timer;
817 atomic_set(&task->tk_count, 1); 816 atomic_set(&task->tk_count, 1);
818 task->tk_client = clnt; 817 task->tk_client = clnt;
819 task->tk_flags = flags; 818 task->tk_flags = flags;
diff --git a/net/sunrpc/xprt.c b/net/sunrpc/xprt.c
index cd641c8634f..fb92f51405c 100644
--- a/net/sunrpc/xprt.c
+++ b/net/sunrpc/xprt.c
@@ -1011,9 +1011,8 @@ found:
1011 INIT_LIST_HEAD(&xprt->free); 1011 INIT_LIST_HEAD(&xprt->free);
1012 INIT_LIST_HEAD(&xprt->recv); 1012 INIT_LIST_HEAD(&xprt->recv);
1013 INIT_WORK(&xprt->task_cleanup, xprt_autoclose); 1013 INIT_WORK(&xprt->task_cleanup, xprt_autoclose);
1014 init_timer(&xprt->timer); 1014 setup_timer(&xprt->timer, xprt_init_autodisconnect,
1015 xprt->timer.function = xprt_init_autodisconnect; 1015 (unsigned long)xprt);
1016 xprt->timer.data = (unsigned long) xprt;
1017 xprt->last_used = jiffies; 1016 xprt->last_used = jiffies;
1018 xprt->cwnd = RPC_INITCWND; 1017 xprt->cwnd = RPC_INITCWND;
1019 xprt->bind_index = 0; 1018 xprt->bind_index = 0;