The patch titled Subject: timekeeping: use time_is_before_jiffies() instead of open coding it has been added to the -mm tree. Its filename is timekeeping-use-time_is_before_jiffies-instead-of-open-coding-it.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/timekeeping-use-time_is_before_jiffies-instead-of-open-coding-it.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/timekeeping-use-time_is_before_jiffies-instead-of-open-coding-it.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Wang Qing <wangqing@xxxxxxxx> Subject: timekeeping: use time_is_before_jiffies() instead of open coding it Use the helper function time_is_{before,after}_jiffies() to improve code readability. Link: https://lkml.kernel.org/r/1650621172-66967-10-git-send-email-wangqing@xxxxxxxx Signed-off-by: Wang Qing <wangqing@xxxxxxxx> Cc: John Stultz <john.stultz@xxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Stephen Boyd <sboyd@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/time/timekeeping.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/kernel/time/timekeeping.c~timekeeping-use-time_is_before_jiffies-instead-of-open-coding-it +++ a/kernel/time/timekeeping.c @@ -216,7 +216,7 @@ static void timekeeping_check_update(str } if (tk->underflow_seen) { - if (jiffies - tk->last_warning > WARNING_FREQ) { + if (time_is_before_jiffies(tk->last_warning + WARNING_FREQ)) { printk_deferred("WARNING: Underflow in clocksource '%s' observed, time update ignored.\n", name); printk_deferred(" Please report this, consider using a different clocksource, if possible.\n"); printk_deferred(" Your kernel is probably still fine.\n"); @@ -226,7 +226,7 @@ static void timekeeping_check_update(str } if (tk->overflow_seen) { - if (jiffies - tk->last_warning > WARNING_FREQ) { + if (time_is_before_jiffies(tk->last_warning + WARNING_FREQ)) { printk_deferred("WARNING: Overflow in clocksource '%s' observed, time update capped.\n", name); printk_deferred(" Please report this, consider using a different clocksource, if possible.\n"); printk_deferred(" Your kernel is probably still fine.\n"); _ Patches currently in -mm which might be from wangqing@xxxxxxxx are block-xen-use-time_is_before_eq_jiffies-instead-of-open-coding-it.patch gpu-drm-i915-use-time_is_after_jiffies-instead-of-open-coding-it.patch gpu-drm-radeon-use-time_is_before_jiffies-instead-of-open-coding-it.patch hid-use-time_is_after_jiffies-instead-of-open-coding-it.patch md-use-time_is_before_eq_jiffies-instead-of-open-coding-it.patch net-wireless-marvell-use-time_is_before_jiffies-instead-of-open-coding-it.patch scsi-bfa-use-time_is_before_jiffies-instead-of-open-coding-it.patch timekeeping-use-time_is_before_jiffies-instead-of-open-coding-it.patch net-decnet-use-time_is_before_jiffies-instead-of-open-coding-it.patch