From: "Yadav, Arvind" <arvind.yadav@intel.com>
To: Matthew Brost <matthew.brost@intel.com>
Cc: <intel-xe@lists.freedesktop.org>,
<himal.prasad.ghimiray@intel.com>,
<thomas.hellstrom@linux.intel.com>, <pallavi.mishra@intel.com>
Subject: Re: [PATCH v4 2/8] drm/xe/bo: Add purgeable bo state tracking and field madv to xe_bo
Date: Wed, 21 Jan 2026 11:00:36 +0530 [thread overview]
Message-ID: <2c8c60b8-36ef-4ab3-b4c0-a8d3fc1d441e@intel.com> (raw)
In-Reply-To: <aW+/LsX/Od66W8NX@lstrano-desk.jf.intel.com>
On 20-01-2026 23:15, Matthew Brost wrote:
> On Tue, Jan 20, 2026 at 11:38:48AM +0530, Arvind Yadav wrote:
>> Add infrastructure for tracking purgeable state of buffer objects.
>> This includes:
>>
>> Introduce enum xe_madv_purgeable_state with three states:
>> - XE_MADV_PURGEABLE_WILLNEED (0): BO is needed and should not be
>> purged. This is the default state for all BOs.
>>
>> - XE_MADV_PURGEABLE_DONTNEED (1): BO is not currently needed and
>> can be purged by the kernel under memory pressure to reclaim
>> resources. Only non-shared BOs can be marked as DONTNEED.
>>
>> - XE_MADV_PURGEABLE_PURGED (2): BO has been purged by the kernel.
>> Accessing a purged BO results in error. Follows i915 semantics
>> where once purged, the BO remains permanently invalid ("once
>> purged, always purged").
>>
>> Add atomic_t madv field to struct xe_bo for state tracking
>> of purgeable state across concurrent access paths
>>
>> v2:
>> - Add xe_bo_is_purged() helper, improve state documentation
>>
>> v3:
>> - Add the kernel doc(Matthew Brost)
>> - Add the new helpers xe_bo_madv_is_dontneed(Matthew Brost)
>>
>> v4:
>> - @madv_purgeable atomic_t → u32 change across all relevant patches. (Matt)
>>
>> Cc: Matthew Brost <matthew.brost@intel.com>
>> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>> Signed-off-by: Arvind Yadav <arvind.yadav@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_bo.h | 56 ++++++++++++++++++++++++++++++++
>> drivers/gpu/drm/xe/xe_bo_types.h | 3 ++
>> 2 files changed, 59 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_bo.h b/drivers/gpu/drm/xe/xe_bo.h
>> index 8ab4474129c3..00e93b3065c9 100644
>> --- a/drivers/gpu/drm/xe/xe_bo.h
>> +++ b/drivers/gpu/drm/xe/xe_bo.h
>> @@ -86,6 +86,28 @@
>>
>> #define XE_PCI_BARRIER_MMAP_OFFSET (0x50 << XE_PTE_SHIFT)
>>
>> +/**
>> + * enum xe_madv_purgeable_state - Buffer object purgeable state enumeration
>> + *
>> + * This enum defines the possible purgeable states for a buffer object,
>> + * allowing userspace to provide memory usage hints to the kernel for
>> + * better memory management under pressure.
>> + *
>> + * @XE_MADV_PURGEABLE_WILLNEED: The buffer object is needed and should not be purged.
>> + * This is the default state.
>> + * @XE_MADV_PURGEABLE_DONTNEED: The buffer object is not currently needed and can be
>> + * purged by the kernel under memory pressure.
>> + * @XE_MADV_PURGEABLE_PURGED: The buffer object has been purged by the kernel.
>> + *
>> + * Accessing a purged buffer will result in an error. Per i915 semantics,
>> + * once purged, a BO remains permanently invalid and must be destroyed and recreated.
>> + */
>> +enum xe_madv_purgeable_state {
>> + XE_MADV_PURGEABLE_WILLNEED,
>> + XE_MADV_PURGEABLE_DONTNEED,
>> + XE_MADV_PURGEABLE_PURGED,
>> +};
>> +
>> struct sg_table;
>>
>> struct xe_bo *xe_bo_alloc(void);
>> @@ -214,6 +236,40 @@ static inline bool xe_bo_is_protected(const struct xe_bo *bo)
>> return bo->pxp_key_instance;
>> }
>>
>> +/**
>> + * xe_bo_is_purged() - Check if buffer object has been purged
>> + * @bo: The buffer object to check
>> + *
>> + * Checks if the buffer object's backing store has been discarded by the
>> + * kernel due to memory pressure after being marked as purgeable (DONTNEED).
>> + * Once purged, the BO cannot be restored and any attempt to use it will fail.
>> + *
>> + * Context: Caller must hold the BO's dma-resv lock
>> + * Return: true if the BO has been purged, false otherwise
>> + */
>> +static inline bool xe_bo_is_purged(struct xe_bo *bo)
>> +{
>> + xe_bo_assert_held(bo);
>> + return bo->madv_purgeable == XE_MADV_PURGEABLE_PURGED;
>> +}
>> +
>> +/**
>> + * xe_bo_madv_is_dontneed() - Check if BO is marked as DONTNEED
>> + * @bo: The buffer object to check
>> + *
>> + * Checks if userspace has marked this BO as DONTNEED (i.e., its contents
>> + * are not currently needed and can be discarded under memory pressure).
>> + * This is used internally to decide whether a BO is eligible for purging.
>> + *
>> + * Context: Caller must hold the BO's dma-resv lock
>> + * Return: true if the BO is marked DONTNEED, false otherwise
>> + */
>> +static inline bool xe_bo_madv_is_dontneed(struct xe_bo *bo)
>> +{
>> + xe_bo_assert_held(bo);
>> + return bo->madv_purgeable == XE_MADV_PURGEABLE_DONTNEED;
>> +}
>> +
>> static inline void xe_bo_unpin_map_no_vm(struct xe_bo *bo)
>> {
>> if (likely(bo)) {
>> diff --git a/drivers/gpu/drm/xe/xe_bo_types.h b/drivers/gpu/drm/xe/xe_bo_types.h
>> index d4fe3c8dca5b..6acfed0c0bb4 100644
>> --- a/drivers/gpu/drm/xe/xe_bo_types.h
>> +++ b/drivers/gpu/drm/xe/xe_bo_types.h
>> @@ -108,6 +108,9 @@ struct xe_bo {
>> * from default
>> */
>> u64 min_align;
>> +
>> + /** @madv_purgeable: user space advise on BO purgeability */
> , protected by BO's dma-resv lock.
>
> Everything else LGTM.
Noted, I will do the changes as per suggestion.
Thanks,
Arvind
>
> Matt
>
>> + u32 madv_purgeable;
>> };
>>
>> #endif
>> --
>> 2.43.0
>>
next prev parent reply other threads:[~2026-01-21 5:30 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-20 6:08 [PATCH v4 0/8] drm/xe/madvise: Add support for purgeable buffer objects Arvind Yadav
2026-01-20 6:08 ` [PATCH v4 1/8] drm/xe/uapi: Add UAPI " Arvind Yadav
2026-01-20 17:20 ` Matthew Brost
2026-01-21 18:42 ` Vivi, Rodrigo
2026-01-20 6:08 ` [PATCH v4 2/8] drm/xe/bo: Add purgeable bo state tracking and field madv to xe_bo Arvind Yadav
2026-01-20 17:45 ` Matthew Brost
2026-01-21 5:30 ` Yadav, Arvind [this message]
2026-01-22 15:05 ` Thomas Hellström
2026-01-20 6:08 ` [PATCH v4 3/8] drm/xe/madvise: Implement purgeable buffer object support Arvind Yadav
2026-01-20 16:58 ` Matthew Brost
2026-01-20 17:15 ` Matthew Brost
2026-01-21 8:24 ` Yadav, Arvind
2026-01-22 15:30 ` Thomas Hellström
2026-01-30 8:13 ` Yadav, Arvind
2026-01-20 17:44 ` Matthew Brost
2026-01-20 6:08 ` [PATCH v4 4/8] drm/xe/bo: Handle CPU faults on purged buffer objects Arvind Yadav
2026-01-20 17:23 ` Matthew Brost
2026-01-22 15:54 ` Thomas Hellström
2026-01-20 6:08 ` [PATCH v4 5/8] drm/xe/vm: Prevent binding of " Arvind Yadav
2026-01-20 17:27 ` Matthew Brost
2026-01-23 5:41 ` Yadav, Arvind
2026-01-23 12:37 ` Thomas Hellström
2026-01-30 8:17 ` Yadav, Arvind
2026-01-20 6:08 ` [PATCH v4 6/8] drm/xe/madvise: Implement per-VMA purgeable state tracking Arvind Yadav
2026-01-20 17:41 ` Matthew Brost
2026-01-21 5:11 ` Yadav, Arvind
2026-01-23 13:07 ` Thomas Hellström
2026-01-20 6:08 ` [PATCH v4 7/8] drm/xe/madvise: Block imported and exported dma-bufs Arvind Yadav
2026-01-20 17:51 ` Matthew Brost
2026-01-23 13:31 ` Thomas Hellström
2026-01-30 8:22 ` Yadav, Arvind
2026-01-30 8:59 ` Thomas Hellström
2026-01-20 6:08 ` [PATCH v4 8/8] drm/xe/bo: Add purgeable shrinker state helpers Arvind Yadav
2026-01-20 17:58 ` Matthew Brost
2026-01-23 13:42 ` Thomas Hellström
2026-01-20 6:14 ` ✗ CI.checkpatch: warning for drm/xe/madvise: Add support for purgeable buffer objects (rev5) Patchwork
2026-01-20 6:16 ` ✗ CI.KUnit: failure " 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=2c8c60b8-36ef-4ab3-b4c0-a8d3fc1d441e@intel.com \
--to=arvind.yadav@intel.com \
--cc=himal.prasad.ghimiray@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=matthew.brost@intel.com \
--cc=pallavi.mishra@intel.com \
--cc=thomas.hellstrom@linux.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