commit | 21051ba6259c519e20a7d575ddceb16e84ad2a5d | [log] [tgz] |
---|---|---|
author | Trond Myklebust <Trond.Myklebust@netapp.com> | Mon May 14 16:50:44 2007 -0400 |
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | Mon May 14 19:33:44 2007 -0400 |
tree | 78dcaf02ffe66efce5e0ab230e446be435da0d21 | |
parent | faa8b6c3c2e1454175609167a25ae525d075f045 [diff] |
NLM: Fix locking client timeouts... nlmsvc_timeout is already in units of HZ... Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
diff --git a/fs/lockd/host.c b/fs/lockd/host.c index ad21c07..96070bf 100644 --- a/fs/lockd/host.c +++ b/fs/lockd/host.c
@@ -221,7 +221,7 @@ host->h_nextrebind - jiffies); } } else { - unsigned long increment = nlmsvc_timeout * HZ; + unsigned long increment = nlmsvc_timeout; struct rpc_timeout timeparms = { .to_initval = increment, .to_increment = increment,