From: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
To: Shuicheng Lin <shuicheng.lin@intel.com>, intel-xe@lists.freedesktop.org
Cc: Tejas Upadhyay <tejas.upadhyay@intel.com>,
Matthew Brost <matthew.brost@intel.com>
Subject: Re: [PATCH v5] drm/xe/shrinker: Take a runtime PM ref before shrinking non-system memory
Date: Fri, 04 Sep 2026 17:03:15 +0200 [thread overview]
Message-ID: <da977e02df3f538c2df4b3c934e2a3a96484646c.camel@linux.intel.com> (raw)
In-Reply-To: <20260901213331.458982-1-shuicheng.lin@intel.com>
On Tue, 2026-09-01 at 21:33 +0000, Shuicheng Lin wrote:
> __xe_shrinker_walk() walks the SYSTEM and TT LRUs without a runtime
> PM
> reference. Shrinking a bo outside system memory invalidates its GPU
> mappings, which needs the device resumed, so while it is runtime
> suspended the page table zap trips an assert and the TLB invalidation
> returns -ENODEV:
>
> WARNING: drivers/gpu/drm/xe/xe_bo.c:770 at
> xe_bo_move_notify+0x1fc/0x450 [xe]
> xe_bo_shrink+0x20f/0x2b0 [xe]
> __xe_shrinker_walk+0x174/0x410 [xe]
> xe_shrinker_scan+0x10c/0x1e0 [xe]
> do_shrink_slab+0x176/0x7e0
> drop_caches_sysctl_handler+0x9c/0xf0
>
> Take a reference before walking a memory type other than XE_PL_SYSTEM
> and stop there if the device is not active, queueing the shrinker PM
> worker so a later scan can pick those bos up. Stop the walk once the
> scan target is met, so a satisfied scan does not wake the device.
> System memory is still reclaimed while the device is suspended.
>
> Gate this on xe_device_is_l2_flush_optimized(), the same condition
> under
> which xe_bo_trigger_rebind() issues the invalidation for a non-fault-
> mode
> vm, so reclaim is unaffected elsewhere. The System CCS copy already
> has
> its own reference in xe_bo_shrink().
>
> Only a non-fault-mode vm can reach this, since a fault-mode vm
> requires
> LR mode and that holds a runtime PM reference for the vm's lifetime.
>
> Reproduced with igt@xe_madvise@dontneed-before-exec while the GPU is
> runtime suspended.
>
> v2: simplify needs_rpm check. (Matt)
> retarget Fixes tag since the issue occurs with the non-fault-mode
> path added by 4e7ebff69aed.
> v3: handle this in xe_shrinker.c instead of xe_bo.c (Thomas)
> v4: stop the walk once the scan target is met. (Sashiko)
> v5: drop the freed page accounting patch from the series. (Sashiko)
>
> Fixes: 4e7ebff69aed ("drm/xe/xe3p_lpg: flush shrinker bo cachelines
> manually")
> Assisted-by: Claude:claude-opus-5
> Cc: Tejas Upadhyay <tejas.upadhyay@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
> ---
> drivers/gpu/drm/xe/xe_shrinker.c | 39 ++++++++++++++++++++++++------
> --
> 1 file changed, 30 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_shrinker.c
> b/drivers/gpu/drm/xe/xe_shrinker.c
> index 83374cd57660..db4d11f0a156 100644
> --- a/drivers/gpu/drm/xe/xe_shrinker.c
> +++ b/drivers/gpu/drm/xe/xe_shrinker.c
> @@ -54,12 +54,14 @@ xe_shrinker_mod_pages(struct xe_shrinker
> *shrinker, long shrinkable, long purgea
> write_unlock(&shrinker->lock);
> }
>
> -static s64 __xe_shrinker_walk(struct xe_device *xe,
> +static s64 __xe_shrinker_walk(struct xe_shrinker *shrinker,
> struct ttm_operation_ctx *ctx,
> const struct xe_bo_shrink_flags flags,
> unsigned long to_scan, unsigned long
> *scanned)
> {
> + struct xe_device *xe = shrinker->xe;
> unsigned int mem_type;
> + bool rpm = false;
> s64 freed = 0, lret;
>
> for (mem_type = XE_PL_SYSTEM; mem_type <= XE_PL_TT;
> ++mem_type) {
> @@ -71,16 +73,31 @@ static s64 __xe_shrinker_walk(struct xe_device
> *xe,
> .trylock_only = true,
> };
>
> + if (*scanned >= to_scan)
> + break;
Consider adding this at the end of the loop instead. Also, those pre-
existing errors that Sashiko reported mandates a separate -fixes patch,
preferrably as the first patch of this series.
> +
> if (!man || !man->use_tt)
> continue;
>
> + if (mem_type != XE_PL_SYSTEM && !rpm &&
> + xe_device_is_l2_flush_optimized(xe)) {
> + if (!xe_pm_runtime_get_if_active(xe)) {
> + queue_work(xe->unordered_wq,
> + &shrinker->pm_worker);
> + break;
> + }
> + rpm = true;
> + }
> +
This is the actual new functionality. I think we actually have a chance
here to get runtime pm sync, avoiding queuing a work. Perhaps consider
breaking out the following block of xe_shrinker_runtime_pm_get() into a
separate helper function:
if (!xe_pm_runtime_get_if_active(xe)) {
if (xe_rpm_reclaim_safe(xe) &&
!ttm_bo_shrink_avoid_wait()) {
xe_pm_runtime_get(xe);
return true;
}
queue_work(xe->unordered_wq, &shrinker->pm_worker);
return false;
}
> ttm_bo_lru_for_each_reserved_guarded(&curs, man,
> &arg, ttm_bo) {
> if (!ttm_bo_shrink_suitable(ttm_bo, ctx))
> continue;
>
> lret = xe_bo_shrink(ctx, ttm_bo, flags,
> scanned);
> - if (lret < 0)
> - return lret;
> + if (lret < 0) {
> + freed = lret;
> + goto out;
> + }
This was a pre-existing, issue right? Belongs in a separate patch.
Thanks,
Thomas
>
> freed += lret;
> if (*scanned >= to_scan)
> @@ -90,6 +107,10 @@ static s64 __xe_shrinker_walk(struct xe_device
> *xe,
> xe_assert(xe, !IS_ERR(ttm_bo));
> }
>
> +out:
> + if (rpm)
> + xe_pm_runtime_put(xe);
> +
> return freed;
> }
>
> @@ -99,7 +120,7 @@ static s64 __xe_shrinker_walk(struct xe_device
> *xe,
> * add writeback. This avoids stalls and explicit writebacks with
> light or
> * moderate memory pressure.
> */
> -static s64 xe_shrinker_walk(struct xe_device *xe,
> +static s64 xe_shrinker_walk(struct xe_shrinker *shrinker,
> struct ttm_operation_ctx *ctx,
> const struct xe_bo_shrink_flags flags,
> unsigned long to_scan, unsigned long
> *scanned)
> @@ -110,14 +131,14 @@ static s64 xe_shrinker_walk(struct xe_device
> *xe,
>
> swap(no_wait_gpu, ctx->no_wait_gpu);
> save_flags.writeback = false;
> - lret = __xe_shrinker_walk(xe, ctx, save_flags, to_scan,
> scanned);
> + lret = __xe_shrinker_walk(shrinker, ctx, save_flags,
> to_scan, scanned);
> swap(no_wait_gpu, ctx->no_wait_gpu);
> if (lret < 0 || *scanned >= to_scan)
> return lret;
>
> freed = lret;
> if (!ctx->no_wait_gpu) {
> - lret = __xe_shrinker_walk(xe, ctx, save_flags,
> to_scan, scanned);
> + lret = __xe_shrinker_walk(shrinker, ctx, save_flags,
> to_scan, scanned);
> if (lret < 0)
> return lret;
> freed += lret;
> @@ -126,7 +147,7 @@ static s64 xe_shrinker_walk(struct xe_device *xe,
> }
>
> if (flags.writeback) {
> - lret = __xe_shrinker_walk(xe, ctx, flags, to_scan,
> scanned);
> + lret = __xe_shrinker_walk(shrinker, ctx, flags,
> to_scan, scanned);
> if (lret < 0)
> return lret;
> freed += lret;
> @@ -226,7 +247,7 @@ static unsigned long xe_shrinker_scan(struct
> shrinker *shrink, struct shrink_con
> runtime_pm = xe_shrinker_runtime_pm_get(shrinker, false,
> nr_to_scan, can_backup);
>
> if (purgeable && nr_scanned < nr_to_scan) {
> - lret = xe_shrinker_walk(shrinker->xe, &ctx,
> shrink_flags,
> + lret = xe_shrinker_walk(shrinker, &ctx,
> shrink_flags,
> nr_to_scan, &nr_scanned);
> if (lret >= 0)
> freed += lret;
> @@ -242,7 +263,7 @@ static unsigned long xe_shrinker_scan(struct
> shrinker *shrink, struct shrink_con
>
> shrink_flags.purge = false;
>
> - lret = xe_shrinker_walk(shrinker->xe, &ctx, shrink_flags,
> + lret = xe_shrinker_walk(shrinker, &ctx, shrink_flags,
> nr_to_scan, &nr_scanned);
> if (lret >= 0)
> freed += lret;
next prev parent reply other threads:[~2026-09-04 15:03 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-01 21:33 [PATCH v5] drm/xe/shrinker: Take a runtime PM ref before shrinking non-system memory Shuicheng Lin
2026-09-01 21:41 ` sashiko-bot
2026-09-02 8:33 ` ✓ CI.KUnit: success for drm/xe/shrinker: Take a runtime PM ref before shrinking non-system memory (rev2) Patchwork
2026-09-02 9:45 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-02 18:15 ` ✓ Xe.CI.FULL: " Patchwork
2026-09-04 15:03 ` Thomas Hellström [this message]
2026-09-04 20:36 ` [PATCH v5] drm/xe/shrinker: Take a runtime PM ref before shrinking non-system memory Lin, Shuicheng
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=da977e02df3f538c2df4b3c934e2a3a96484646c.camel@linux.intel.com \
--to=thomas.hellstrom@linux.intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=matthew.brost@intel.com \
--cc=shuicheng.lin@intel.com \
--cc=tejas.upadhyay@intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox