Commit 2015716a authored by Chen Yufan's avatar Chen Yufan Committed by Ilya Dryomov

ceph: Convert to use jiffies macro

Use time_after_eq macro instead of using
jiffies directly to handle wraparound.

[ xiubli: adjust the header files order ]
Signed-off-by: default avatarChen Yufan <chenyufan@vivo.com>
Reviewed-by: default avatarXiubo Li <xiubli@redhat.com>
Signed-off-by: default avatarIlya Dryomov <idryomov@gmail.com>
parent 9a948c0c
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include <linux/writeback.h> #include <linux/writeback.h>
#include <linux/iversion.h> #include <linux/iversion.h>
#include <linux/filelock.h> #include <linux/filelock.h>
#include <linux/jiffies.h>
#include "super.h" #include "super.h"
#include "mds_client.h" #include "mds_client.h"
...@@ -4659,7 +4660,7 @@ unsigned long ceph_check_delayed_caps(struct ceph_mds_client *mdsc) ...@@ -4659,7 +4660,7 @@ unsigned long ceph_check_delayed_caps(struct ceph_mds_client *mdsc)
* slowness doesn't block mdsc delayed work, * slowness doesn't block mdsc delayed work,
* preventing send_renew_caps() from running. * preventing send_renew_caps() from running.
*/ */
if (jiffies - loop_start >= 5 * HZ) if (time_after_eq(jiffies, loop_start + 5 * HZ))
break; break;
} }
spin_unlock(&mdsc->cap_delay_lock); spin_unlock(&mdsc->cap_delay_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment