From: Andrew Morton <akpm@linux-foundation.org>
To: mm-commits@vger.kernel.org, tvrtko.ursulin@linux.intel.com,
rodrigo.vivi@intel.com, michal.winiarski@intel.com,
matthew.d.roper@intel.com, matthew.auld@intel.com,
joonas.lahtinen@linux.intel.com,
janusz.krzysztofik@linux.intel.com, jani.nikula@linux.intel.com,
daniel@ffwll.ch, andi.shyti@linux.intel.com, airlied@linux.ie,
wangqing@vivo.com, akpm@linux-foundation.org
Subject: [failures] gpu-drm-i915-use-time_is_after_jiffies-instead-of-open-coding-it.patch removed from -mm tree
Date: Mon, 25 Apr 2022 16:59:14 -0700 [thread overview]
Message-ID: <20220425235915.5AE59C385AD@smtp.kernel.org> (raw)
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2316 bytes --]
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@vivo.com>
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@vivo.com
Signed-off-by: Wang Qing <wangqing@vivo.com>
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: David Airlie <airlied@linux.ie>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: Andi Shyti <andi.shyti@linux.intel.com>
Cc: "Michał Winiarski" <michal.winiarski@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
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@vivo.com 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
reply other threads:[~2022-04-25 23:59 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220425235915.5AE59C385AD@smtp.kernel.org \
--to=akpm@linux-foundation.org \
--cc=airlied@linux.ie \
--cc=andi.shyti@linux.intel.com \
--cc=daniel@ffwll.ch \
--cc=jani.nikula@linux.intel.com \
--cc=janusz.krzysztofik@linux.intel.com \
--cc=joonas.lahtinen@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=matthew.auld@intel.com \
--cc=matthew.d.roper@intel.com \
--cc=michal.winiarski@intel.com \
--cc=mm-commits@vger.kernel.org \
--cc=rodrigo.vivi@intel.com \
--cc=tvrtko.ursulin@linux.intel.com \
--cc=wangqing@vivo.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.