diff options
author | Nicholas Mc Guire <hofrat@osadl.org> | 2015-03-13 04:25:34 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-03-13 09:05:20 -0400 |
commit | 55cc1d7806cd4827d38a18ddf3bcf04706758218 (patch) | |
tree | d272548c33b69e98e0025fb02da07043c8837b8a /net | |
parent | 38942ba204639030b3f3cfe5748a6aff3c9dcc81 (diff) |
SUNRPC: fix build-warning due to format missmatch
fix build-warning introduced by commit: f0eede10fd4 ("SUNRPC: use
jiffies_to_msecs for converting jiffies") which did not fixup
the format properly (my bad).
Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/sunrpc/sched.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sunrpc/sched.c b/net/sunrpc/sched.c index c234e7ff2bf0..337ca851a350 100644 --- a/net/sunrpc/sched.c +++ b/net/sunrpc/sched.c | |||
@@ -89,8 +89,8 @@ __rpc_add_timer(struct rpc_wait_queue *queue, struct rpc_task *task) | |||
89 | if (!task->tk_timeout) | 89 | if (!task->tk_timeout) |
90 | return; | 90 | return; |
91 | 91 | ||
92 | dprintk("RPC: %5u setting alarm for %lu ms\n", | 92 | dprintk("RPC: %5u setting alarm for %u ms\n", |
93 | task->tk_pid, jiffies_to_msecs(task->tk_timeout)); | 93 | task->tk_pid, jiffies_to_msecs(task->tk_timeout)); |
94 | 94 | ||
95 | task->u.tk_wait.expires = jiffies + task->tk_timeout; | 95 | task->u.tk_wait.expires = jiffies + task->tk_timeout; |
96 | if (list_empty(&queue->timer_list.list) || time_before(task->u.tk_wait.expires, queue->timer_list.expires)) | 96 | if (list_empty(&queue->timer_list.list) || time_before(task->u.tk_wait.expires, queue->timer_list.expires)) |