From: sashiko-bot@kernel.org
To: "Tejas Upadhyay" <tejas.upadhyay@intel.com>
Cc: intel-xe@lists.freedesktop.org
Subject: Re: [PATCH V18 12/14] drm/xe: Expose bad VRAM pages via debugfs
Date: Wed, 26 Aug 2026 14:13:17 +0000 [thread overview]
Message-ID: <20260826141318.71D4E1F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260826135136.204044-28-tejas.upadhyay@intel.com>
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
- [High] Use-After-Free and data race due to lockless traversal of pos->blocks.
- [Medium] TOCTOU race in xe_ttm_vram_reserve_page_at_addr leads to duplicate tracking entries and state inconsistency.
- [Low] The max_pages field is printed in debugfs but is never initialized or populated.
--
commit b60ddd8b2f9645ba022492a4803a15126cca2249
Author: Tejas Upadhyay <tejas.upadhyay@intel.com>
Subject: drm/xe: Expose bad VRAM pages via debugfs
This commit adds a debugfs file vram_bad_pages that shows offlined and
queued VRAM pages across all tiles. Each entry displays the page frame
number, GPU page size, and status flag.
> diff --git a/drivers/gpu/drm/xe/xe_ttm_vram_mgr.c b/drivers/gpu/drm/xe/xe_ttm_vram_mgr.c
> --- a/drivers/gpu/drm/xe/xe_ttm_vram_mgr.c
> +++ b/drivers/gpu/drm/xe/xe_ttm_vram_mgr.c
[ ... ]
> @@ -874,3 +875,68 @@ int xe_ttm_vram_handle_addr_fault(struct xe_device *xe, u64 addr)
> return xe_ttm_vram_reserve_page_at_addr(xe, addr - vr->dpa_base, vram_mgr, mm);
> }
> EXPORT_SYMBOL(xe_ttm_vram_handle_addr_fault);
> +
> +static int vram_bad_pages_show(struct seq_file *m, void *unused)
> +{
> + struct xe_device *xe = m->private;
> + struct xe_ttm_vram_offline_resource *pos;
> + struct ttm_resource_manager *man;
> + struct gpu_buddy_block *block;
> + struct xe_ttm_vram_mgr *mgr;
> + struct xe_tile *tile;
> + u8 id;
> +
> + man = ttm_manager_type(&xe->ttm, XE_PL_VRAM0);
> + if (man)
> + seq_printf(m, "max_pages: %d\n",
> + to_xe_ttm_vram_mgr(man)->max_pages);
[Severity: Low]
Is there a regression where max_pages is printed but never initialized?
It is defined in struct xe_ttm_vram_mgr and printed here, but it doesn't
appear to be assigned a value anywhere in the driver codebase.
Will this debugfs file always incorrectly output max_pages: 0?
> +
> + for_each_tile(tile, xe, id) {
> + struct xe_vram_region *vr = tile->mem.vram;
> +
> + man = ttm_manager_type(&xe->ttm, XE_PL_VRAM0 + id);
> + if (!man || !vr)
> + continue;
> + mgr = to_xe_ttm_vram_mgr(man);
> +
> + rcu_read_lock();
> +
> + list_for_each_entry_rcu(pos, &mgr->offlined_pages, offlined_link) {
> + block = list_first_entry_or_null(&pos->blocks,
> + struct gpu_buddy_block, link);
[Severity: High]
In xe_ttm_vram_reserve_page_at_addr(), an entry is published to the
queued_pages list via list_add_rcu() before its blocks are populated:
xe_ttm_vram_reserve_page_at_addr() {
...
++vram_mgr->n_queued_pages;
list_add_rcu(&nentry->queued_link, &vram_mgr->queued_pages);
...
}
If the subsequent buddy allocation fails halfway, it rolls back and frees
the blocks directly back to the slab allocator without respecting RCU grace
periods.
Additionally, gpu_buddy_alloc_blocks() modifies the list using standard
list_add and list_del rather than RCU-safe variants, which could create a
data race on the list pointers themselves.
Could an RCU reader here obtain a pointer to a block just as it is being
freed, resulting in a Use-After-Free regression when accessing the block
later?
> + if (!block)
> + continue;
> +
> + seq_printf(m, "0x%016llx : 0x%016llx : R\n",
> + (gpu_buddy_block_offset(block) + vr->dpa_base) >> PAGE_SHIFT,
> + gpu_buddy_block_size(&mgr->mm, block));
> + }
> +
> + list_for_each_entry_rcu(pos, &mgr->queued_pages, queued_link) {
[Severity: Medium]
When xe_ttm_vram_reserve_page_at_addr() is called for an unallocated
address, it allocates nentry under the lock but drops the lock before
adding it to queued_pages:
xe_ttm_vram_reserve_page_at_addr() {
scoped_guard(mutex, &vram_mgr->lock) {
if (xe_ttm_vram_page_already_processed(vram_mgr, addr))
return -EEXIST;
... if block is NULL, nentry is NOT added here ...
}
... lock is dropped ...
if (block) {
...
} else {
scoped_guard(mutex, &vram_mgr->lock) {
++vram_mgr->n_queued_pages;
list_add_rcu(&nentry->queued_link, &vram_mgr->queued_pages);
...
}
}
}
Multiple concurrent faults on the same address could both bypass the
xe_ttm_vram_page_already_processed() check because neither added their
entry to the list yet.
Both threads would then reacquire the lock and add their nentry to
queued_pages. One might succeed (moving to offlined_pages) while the other
fails (staying in queued_pages).
Could this iteration encounter a regression with duplicate tracking entries
for the exact same physical address, resulting in conflicting states being
exposed here?
> + u64 pfn, blk_size;
> +
> + block = list_first_entry_or_null(&pos->blocks,
> + struct gpu_buddy_block, link);
[ ... ]
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260826135136.204044-16-tejas.upadhyay@intel.com?part=12
next prev parent reply other threads:[~2026-08-26 14:13 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-26 13:51 [PATCH V18 00/14] Add memory page offlining support Tejas Upadhyay
2026-08-26 13:51 ` [PATCH V18 01/14] drm/xe: Link VRAM object with gpu buddy Tejas Upadhyay
2026-08-26 22:31 ` Andi Shyti
2026-08-26 13:51 ` [PATCH V18 02/14] drm/xe: Link LRC BO and its execution Queue Tejas Upadhyay
2026-08-26 22:34 ` Andi Shyti
2026-08-26 13:51 ` [PATCH V18 03/14] drm/xe: Extend BO purge to handle vram pages as well Tejas Upadhyay
2026-08-26 14:07 ` sashiko-bot
2026-08-26 22:42 ` Andi Shyti
2026-08-27 6:17 ` Upadhyay, Tejas
2026-08-27 14:40 ` Andi Shyti
2026-08-27 14:48 ` Upadhyay, Tejas
2026-08-28 5:25 ` Upadhyay, Tejas
2026-08-28 7:39 ` Andi Shyti
2026-08-28 17:29 ` Upadhyay, Tejas
2026-08-26 13:51 ` [PATCH V18 04/14] drm/xe/bo: Make xe_bo_is_user() public Tejas Upadhyay
2026-08-26 22:44 ` Andi Shyti
2026-08-26 13:51 ` [PATCH V18 05/14] drm/xe: Guard teardown paths against purged BOs Tejas Upadhyay
2026-08-26 14:12 ` sashiko-bot
2026-08-27 6:08 ` Ghimiray, Himal Prasad
2026-08-27 8:27 ` Upadhyay, Tejas
2026-08-26 13:51 ` [PATCH V18 06/14] drm/xe/vram: Extract buddy alloc and free helpers Tejas Upadhyay
2026-08-26 22:50 ` Andi Shyti
2026-08-26 13:51 ` [PATCH V18 07/14] drm/xe/vram: Add page offline data structures and lifecycle Tejas Upadhyay
2026-08-26 23:09 ` Andi Shyti
2026-08-27 6:19 ` Ghimiray, Himal Prasad
2026-08-26 13:51 ` [PATCH V18 08/14] drm/xe/vram: Add VRAM page offline fault handler Tejas Upadhyay
2026-08-26 14:05 ` sashiko-bot
2026-08-26 13:51 ` [PATCH V18 09/14] drm/xe/configfs: Add bad_page_reservation attribute Tejas Upadhyay
2026-08-27 6:42 ` Ghimiray, Himal Prasad
2026-08-27 15:00 ` Michal Wajdeczko
2026-08-28 17:48 ` Upadhyay, Tejas
2026-08-26 13:51 ` [PATCH V18 10/14] drm/xe/ras: Cache bad_page_reservation policy at init Tejas Upadhyay
2026-08-26 14:11 ` sashiko-bot
2026-08-27 6:45 ` Ghimiray, Himal Prasad
2026-08-26 13:51 ` [PATCH V18 11/14] drm/xe/vram: Check bad_page_reservation policy in fault handler Tejas Upadhyay
2026-08-26 14:08 ` sashiko-bot
2026-08-27 6:46 ` Ghimiray, Himal Prasad
2026-08-27 15:04 ` Michal Wajdeczko
2026-08-26 13:51 ` [PATCH V18 12/14] drm/xe: Expose bad VRAM pages via debugfs Tejas Upadhyay
2026-08-26 14:13 ` sashiko-bot [this message]
2026-08-27 15:16 ` Michal Wajdeczko
2026-08-28 19:06 ` Upadhyay, Tejas
2026-08-28 15:04 ` Rodrigo Vivi
2026-08-26 13:51 ` [PATCH V18 13/14] drm/xe/uapi: Expose ban reason in EXEC_QUEUE_GET_PROPERTY_BAN Tejas Upadhyay
2026-08-26 14:20 ` sashiko-bot
2026-08-27 18:26 ` Andi Shyti
2026-08-28 5:31 ` Upadhyay, Tejas
2026-08-26 13:51 ` [PATCH V18 14/14] drm/xe: Add fault-inject based VRAM page offline injection Tejas Upadhyay
2026-08-27 7:10 ` Ghimiray, Himal Prasad
2026-08-27 8:23 ` Upadhyay, Tejas
2026-08-26 14:37 ` ✗ CI.checkpatch: warning for Add memory page offlining support (rev21) Patchwork
2026-08-26 14:39 ` ✓ CI.KUnit: success " Patchwork
2026-08-26 15:21 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-26 19:01 ` ✓ Xe.CI.FULL: " Patchwork
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=20260826141318.71D4E1F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=sashiko-reviews@lists.linux.dev \
--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