The patch titled Subject: gpu: drm: i915: use time_is_after_jiffies() instead of open coding it has been removed from the -mm tree. Its filename was gpu-drm-i915-use-time_is_after_jiffies-instead-of-open-coding-it.patch This patch was dropped because it had testing failures ------------------------------------------------------ From: Wang Qing <wangqing@xxxxxxxx> Subject: gpu: drm: i915: use time_is_after_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-3-git-send-email-wangqing@xxxxxxxx Signed-off-by: Wang Qing <wangqing@xxxxxxxx> Cc: Jani Nikula <jani.nikula@xxxxxxxxxxxxxxx> Cc: Joonas Lahtinen <joonas.lahtinen@xxxxxxxxxxxxxxx> Cc: Rodrigo Vivi <rodrigo.vivi@xxxxxxxxx> Cc: Tvrtko Ursulin <tvrtko.ursulin@xxxxxxxxxxxxxxx> Cc: David Airlie <airlied@xxxxxxxx> Cc: Daniel Vetter <daniel@xxxxxxxx> Cc: Matt Roper <matthew.d.roper@xxxxxxxxx> Cc: Janusz Krzysztofik <janusz.krzysztofik@xxxxxxxxxxxxxxx> Cc: Andi Shyti <andi.shyti@xxxxxxxxxxxxxxx> Cc: "MichaÅ? Winiarski" <michal.winiarski@xxxxxxxxx> Cc: Matthew Auld <matthew.auld@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/gpu/drm/i915/gt/intel_gt_buffer_pool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/gpu/drm/i915/gt/intel_gt_buffer_pool.c~gpu-drm-i915-use-time_is_after_jiffies-instead-of-open-coding-it +++ a/drivers/gpu/drm/i915/gt/intel_gt_buffer_pool.c @@ -57,7 +57,7 @@ static bool pool_free_older_than(struct node = list_entry(pos, typeof(*node), link); age = READ_ONCE(node->age); - if (!age || jiffies - age < keep) + if (!age || time_is_after_jiffies(age + keep)) break; /* Check we are the first to claim this node */ _ Patches currently in -mm which might be from wangqing@xxxxxxxx are 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 net-decnet-use-time_is_before_jiffies-instead-of-open-coding-it.patch