summaryrefslogtreecommitdiffstats
path: root/fs/ceph/mds_client.c
diff options
context:
space:
mode:
authorNicholas Mc Guire2015-02-06 12:52:17 +0100
committerIlya Dryomov2015-04-20 16:30:22 +0200
commit3563dbdd99603d4339467ddffafe3851aae2e398 (patch)
tree69f192383d59499c057640412882f3883890a733 /fs/ceph/mds_client.c
parentceph: remove redundant declaration (diff)
downloadkernel-qcow2-linux-3563dbdd99603d4339467ddffafe3851aae2e398.tar.gz
kernel-qcow2-linux-3563dbdd99603d4339467ddffafe3851aae2e398.tar.xz
kernel-qcow2-linux-3563dbdd99603d4339467ddffafe3851aae2e398.zip
ceph: use msecs_to_jiffies for time conversion
This is only an API consolidation and should make things more readable it replaces var * HZ / 1000 by msecs_to_jiffies(var). Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org> Signed-off-by: Yan, Zheng <zyan@redhat.com>
Diffstat (limited to 'fs/ceph/mds_client.c')
-rw-r--r--fs/ceph/mds_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/mds_client.c b/fs/ceph/mds_client.c
index 0a1a9e452148..0122491d947c 100644
--- a/fs/ceph/mds_client.c
+++ b/fs/ceph/mds_client.c
@@ -3140,7 +3140,7 @@ static void handle_lease(struct ceph_mds_client *mdsc,
di->lease_renew_from &&
di->lease_renew_after == 0) {
unsigned long duration =
- le32_to_cpu(h->duration_ms) * HZ / 1000;
+ msecs_to_jiffies(le32_to_cpu(h->duration_ms));
di->lease_seq = seq;
dentry->d_time = di->lease_renew_from + duration;