From: Matthew Brost <matthew.brost@intel.com>
To: intel-xe@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: "Carlos Santa" <carlos.santa@intel.com>,
"Ryan Neph" <ryanneph@google.com>,
"Christian Koenig" <christian.koenig@amd.com>,
"Huang Rui" <ray.huang@amd.com>,
"Matthew Auld" <matthew.auld@intel.com>,
"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
"Maxime Ripard" <mripard@kernel.org>,
"Thomas Zimmermann" <tzimmermann@suse.de>,
"David Airlie" <airlied@gmail.com>,
"Simona Vetter" <simona@ffwll.ch>,
linux-kernel@vger.kernel.org,
"Thomas Hellström" <thomas.hellstrom@linux.intel.com>
Subject: [PATCH v2 09/33] drm/ttm: Preallocate beneficial-order defrag pages outside the lock
Date: Fri, 10 Jul 2026 14:54:18 -0700 [thread overview]
Message-ID: <20260710215442.2444235-10-matthew.brost@intel.com> (raw)
In-Reply-To: <20260710215442.2444235-1-matthew.brost@intel.com>
Defragmentation moves reallocate a BO's backing at the pool's beneficial
order. On a fragmented system those high-order allocations frequently
stall in direct reclaim/compaction, and they run under the BO dma-resv
lock, holding up concurrent rendering. The defrag worker does not care
how long the work takes; it only cares about minimizing locked time.
Add a preallocation bag so the expensive allocations can be hoisted out
of the lock:
- struct ttm_pool_prealloc carries beneficial-order pages preallocated
outside the lock; ttm_pool_prealloc_fill()/_fini() allocate and
release them. __ttm_pool_alloc() consumes them via ctx->prealloc.
- Apply the requested cpu-caching to the bag pages during fill, so the
set_memory_*() cost is paid outside the lock too; consumed pages are
already cache-consistent and leftovers are restored to write-back on
free. Bag pages are never highmem so the kernel mapping is always
valid for set_memory_*().
- Record the exact number of sub-optimal pages on the tt
(nr_suboptimal_pages) at populate time so a defrag pass can size its
prealloc precisely instead of guessing.
- Once a defrag move exhausts the prealloc bag, harvest the remainder
of the old tt rather than entering reclaim under the lock, and flag
the tt sub-optimal so the driver re-queues it for a later pass.
This keeps all reclaim/compaction stalls and cache mode changes out of
the dma-resv critical section: lock-held time then tracks only the bytes
actually copied.
Cc: Carlos Santa <carlos.santa@intel.com>
Cc: Ryan Neph <ryanneph@google.com>
Cc: Christian Koenig <christian.koenig@amd.com>
Cc: Huang Rui <ray.huang@amd.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Cc: David Airlie <airlied@gmail.com>
Cc: Simona Vetter <simona@ffwll.ch>
Cc: dri-devel@lists.freedesktop.org
Cc: linux-kernel@vger.kernel.org
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Assisted-by: GitHub_Copilot:claude-opus-4.8
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
drivers/gpu/drm/ttm/ttm_pool.c | 243 +++++++++++++++++++++++++++++++--
include/drm/ttm/ttm_bo.h | 11 ++
include/drm/ttm/ttm_pool.h | 29 ++++
include/drm/ttm/ttm_tt.h | 17 +++
4 files changed, 286 insertions(+), 14 deletions(-)
diff --git a/drivers/gpu/drm/ttm/ttm_pool.c b/drivers/gpu/drm/ttm/ttm_pool.c
index a6847a16c47f..76e5fc54ea9a 100644
--- a/drivers/gpu/drm/ttm/ttm_pool.c
+++ b/drivers/gpu/drm/ttm/ttm_pool.c
@@ -82,6 +82,9 @@ struct ttm_pool_dma {
* Pages harvested (borrowed) from the old tt are free and do not count; once
* this drops to zero the allocator stops upgrading and harvests the remainder.
* On completion it holds the unused budget. 0 means unlimited (no defrag cap).
+ * @nr_suboptimal_pages: Number of pages backed below the pool's beneficial
+ * order. Recorded by the pool allocator after populate; a defrag pass reads it
+ * to size its out-of-lock preallocation exactly.
*/
struct ttm_pool_alloc_state {
struct page **pages;
@@ -90,6 +93,7 @@ struct ttm_pool_alloc_state {
pgoff_t remaining_pages;
enum ttm_caching tt_caching;
s64 defrag_bytes_remaining;
+ u32 nr_suboptimal_pages;
};
/**
@@ -787,6 +791,7 @@ static void ttm_pool_alloc_state_init(const struct ttm_tt *tt,
alloc->remaining_pages = tt->num_pages;
alloc->tt_caching = tt->caching;
alloc->defrag_bytes_remaining = 0;
+ alloc->nr_suboptimal_pages = 0;
}
/*
@@ -852,7 +857,8 @@ static unsigned int ttm_pool_defrag_old_order(struct ttm_pool *pool,
* pages stay owned by the old tt until the move commits.
*/
static int ttm_pool_harvest_page(struct ttm_tt *old_tt, unsigned int order,
- pgoff_t off, struct ttm_pool_alloc_state *alloc)
+ unsigned int beneficial_order, pgoff_t off,
+ struct ttm_pool_alloc_state *alloc)
{
pgoff_t nr = 1UL << order;
int r;
@@ -887,6 +893,9 @@ static int ttm_pool_harvest_page(struct ttm_tt *old_tt, unsigned int order,
alloc->caching_divide = alloc->pages;
+ if (order < beneficial_order)
+ alloc->nr_suboptimal_pages += 0x1 << order;
+
return 0;
}
@@ -919,7 +928,8 @@ static int ttm_pool_harvest_remaining(struct ttm_pool *pool,
round_down(off, bnr) + bnr <= num_pages)
*suboptimal = true;
- r = ttm_pool_harvest_page(old_tt, order, off, alloc);
+ r = ttm_pool_harvest_page(old_tt, order, beneficial, off,
+ alloc);
if (r)
return r;
@@ -929,6 +939,172 @@ static int ttm_pool_harvest_remaining(struct ttm_pool *pool,
return 0;
}
+unsigned int ttm_pool_prealloc_order(struct ttm_pool *pool)
+{
+ return ttm_pool_beneficial_order(pool);
+}
+EXPORT_SYMBOL(ttm_pool_prealloc_order);
+
+/*
+ * Build the gfp flags used for the high-order, possibly reclaiming, beneficial
+ * order page allocations, matching the in-line defrag alloc path.
+ */
+static gfp_t ttm_pool_prealloc_gfp(struct ttm_pool *pool)
+{
+ gfp_t gfp = GFP_USER;
+
+ /*
+ * No highmem: prealloc applies caching in bulk via set_pages_array_*()
+ * on the kernel mapping, so the pages must be permanently mapped.
+ */
+ if (ttm_pool_uses_dma32(pool))
+ gfp |= GFP_DMA32;
+
+ return gfp;
+}
+
+/*
+ * Apply a tt's cpu-caching to a batch of freshly system-allocated (write-back)
+ * prealloc pages in one shot. @cpages is an unpacked array of @ncpages
+ * individual 4K pages (the constituent pages of the mixed-order chunks, expanded
+ * so set_pages_array_*() sees one entry per page), since the packed prealloc bag
+ * holds multi-order chunks. Prealloc pages are never highmem (see
+ * ttm_pool_prealloc_gfp), so their kernel mapping is valid. No-op for cached
+ * pages and on non-x86. Returns non-zero if the caching change failed (the
+ * caller drops the whole bag and falls back to in-line allocation).
+ */
+static int ttm_pool_prealloc_apply_caching(enum ttm_caching caching,
+ struct page **cpages,
+ unsigned int ncpages)
+{
+#ifdef CONFIG_X86
+ if (!ncpages)
+ return 0;
+
+ switch (caching) {
+ case ttm_cached:
+ break;
+ case ttm_write_combined:
+ return set_pages_array_wc(cpages, ncpages);
+ case ttm_uncached:
+ return set_pages_array_uc(cpages, ncpages);
+ }
+#endif
+ return 0;
+}
+
+/* Expand an @order chunk into its constituent 4K pages for bulk caching. */
+static void ttm_pool_prealloc_stage_caching(struct page **cpages,
+ unsigned int *ncpages,
+ struct page *p, unsigned int order)
+{
+ unsigned int i, nr = 1u << order;
+
+ for (i = 0; i < nr; i++)
+ cpages[(*ncpages)++] = p + i;
+}
+
+/**
+ * ttm_pool_prealloc_fill() - Preallocate beneficial-order pages outside any lock
+ * @pool: The pool to allocate from.
+ * @tt_caching: The requested cpu-caching for the pages allocated.
+ * @pp: Prealloc bag to fill; @pp->order is set to the beneficial order.
+ * @count: Number of beneficial-order chunks to attempt.
+ *
+ * Allocate up to @count beneficial-order chunks, parking them in @pp for a
+ * later __ttm_pool_alloc() defrag move to consume under the dma-resv lock. May
+ * sleep/reclaim freely as it runs unlocked. A short fill is fine: the pool
+ * falls back to in-line allocation for the shortfall. DMA-alloc pools are not
+ * supported (count stays 0). Returns 0 (release with ttm_pool_prealloc_fini()).
+ */
+int ttm_pool_prealloc_fill(struct ttm_pool *pool, enum ttm_caching tt_caching,
+ struct ttm_pool_prealloc *pp, unsigned int count)
+{
+ unsigned int order = ttm_pool_beneficial_order(pool);
+ gfp_t gfp = ttm_pool_prealloc_gfp(pool);
+ struct page **cpages = NULL;
+ unsigned int ncpages = 0;
+ int r;
+
+ pp->pages = NULL;
+ pp->order = order;
+ pp->caching = tt_caching;
+ pp->count = 0;
+ pp->used = 0;
+
+ /* Nothing to gain without a beneficial order or for DMA-alloc pools. */
+ if (!order || !count || ttm_pool_uses_dma_alloc(pool))
+ return 0;
+
+ pp->pages = kvzalloc_objs(*pp->pages, count);
+ if (!pp->pages)
+ return 0;
+
+ /*
+ * Every chunk is a fresh write-back system page of @order that needs a
+ * caching change; collect their constituent pages into an unpacked
+ * scratch array and issue a single set_pages_array_*() after the fill.
+ * Cached tts need no change (and non-x86 handles caching at map time).
+ */
+ if (IS_ENABLED(CONFIG_X86) && tt_caching != ttm_cached) {
+ cpages = kvzalloc_objs(*cpages, (size_t)count << order);
+ if (!cpages) {
+ kvfree(pp->pages);
+ pp->pages = NULL;
+ return 0;
+ }
+ }
+
+ while (pp->count < count) {
+ struct page *p = ttm_pool_alloc_page(pool, gfp, order, false);
+
+ if (!p)
+ break;
+
+ pp->pages[pp->count++] = p;
+ if (cpages)
+ ttm_pool_prealloc_stage_caching(cpages, &ncpages, p,
+ order);
+ }
+
+ /*
+ * Apply the requested caching to every collected page in one shot. On
+ * failure the pages' caching is indeterminate, so drop the whole bag
+ * (freeing restores write-back) and let the consumer allocate in-line.
+ */
+ r = ttm_pool_prealloc_apply_caching(tt_caching, cpages, ncpages);
+ kvfree(cpages);
+ if (r) {
+ unsigned int i;
+
+ for (i = 0; i < pp->count; i++)
+ ttm_pool_free_page(pool, tt_caching, order,
+ pp->pages[i], false);
+ pp->count = 0;
+ }
+
+ return 0;
+}
+EXPORT_SYMBOL(ttm_pool_prealloc_fill);
+
+/**
+ * ttm_pool_prealloc_fini() - Release unconsumed preallocated pages
+ * @pool: The pool the pages came from.
+ * @pp: Prealloc bag to drain. Consumed pages (< @used) are now owned by the tt.
+ */
+void ttm_pool_prealloc_fini(struct ttm_pool *pool, struct ttm_pool_prealloc *pp)
+{
+ unsigned int i;
+
+ for (i = pp->used; i < pp->count; ++i)
+ ttm_pool_free_page(pool, pp->caching, pp->order, pp->pages[i],
+ false);
+ kvfree(pp->pages);
+ pp->pages = NULL;
+ pp->count = pp->used = 0;
+}
+EXPORT_SYMBOL(ttm_pool_prealloc_fini);
+
/**
* enum ttm_pool_iter_action - Outcome of a per-order allocation phase
* @TTM_POOL_ITER_FILL: A page (@it->p) was acquired; proceed to fill it in.
@@ -960,6 +1136,7 @@ struct ttm_pool_alloc_iter {
struct ttm_pool_alloc_state *alloc;
struct ttm_pool_tt_restore *restore;
struct ttm_tt *defrag_old_tt;
+ struct ttm_pool_prealloc *prealloc;
unsigned int beneficial_order;
gfp_t gfp_flags;
bool defrag_capped;
@@ -975,16 +1152,20 @@ struct ttm_pool_alloc_iter {
};
/*
- * Defrag move budget exhausted: the upgrade can make no further progress this
- * pass. Snapshot @defrag_capped is set only when a byte budget was in force at
- * entry.
+ * Defrag move budget exhausted, or the out-of-lock prealloc bag ran dry: the
+ * upgrade can make no further progress this pass. Snapshot @defrag_capped is
+ * set only when a byte budget was in force at entry.
*/
static bool ttm_pool_iter_defrag_exhausted(const struct ttm_pool_alloc_iter *it)
{
+ const struct ttm_pool_prealloc *pp = it->prealloc;
+
if (!it->defrag_old_tt)
return false;
+ if (it->defrag_capped && it->alloc->defrag_bytes_remaining <= 0)
+ return true;
- return it->defrag_capped && it->alloc->defrag_bytes_remaining <= 0;
+ return pp && pp->count && pp->used >= pp->count;
}
/*
@@ -1041,7 +1222,8 @@ static int ttm_pool_iter_reuse_old(struct ttm_pool_alloc_iter *it)
return TTM_POOL_ITER_FILL;
it->order = harvest_order;
- r = ttm_pool_harvest_page(it->defrag_old_tt, it->order, off, it->alloc);
+ r = ttm_pool_harvest_page(it->defrag_old_tt, it->order,
+ it->beneficial_order, off, it->alloc);
if (r)
return r;
@@ -1053,11 +1235,13 @@ static int ttm_pool_iter_reuse_old(struct ttm_pool_alloc_iter *it)
/*
* Acquire a single page for the current order, leaving it in @it->p (NULL on
- * failure). Tries a same-order pool page, then a fresh system allocation. Fault
- * injection can force the beneficial-order paths to "fail".
+ * failure). Tries, in order: a beneficial-order page preallocated outside the
+ * dma-resv lock (defrag), a same-order pool page, then a fresh system
+ * allocation. Fault injection can force the beneficial-order paths to "fail".
*/
static void ttm_pool_iter_acquire_page(struct ttm_pool_alloc_iter *it)
{
+ struct ttm_pool_prealloc *pp = it->prealloc;
struct ttm_pool_type *pt;
it->p = NULL;
@@ -1072,7 +1256,18 @@ static void ttm_pool_iter_acquire_page(struct ttm_pool_alloc_iter *it)
it->beneficial_order && it->order >= it->beneficial_order &&
should_fail(&beneficial_order_fault_inject, 1);
- /* First, try to allocate a page from a pool if one exists. */
+ /*
+ * Defrag move: consume a beneficial-order page preallocated outside the
+ * dma-resv lock instead of allocating one in-line (which may stall in
+ * reclaim/compaction). Falls through once the bag is empty.
+ */
+ if (pp && !it->fail_beneficial && it->order >= it->beneficial_order &&
+ pp->used < pp->count) {
+ it->order = it->beneficial_order;
+ it->p = pp->pages[pp->used++];
+ it->page_caching = it->tt->caching;
+ }
+
pt = ttm_pool_select_type(it->pool, it->page_caching, it->order);
if (!it->p && pt && it->allow_pools && !it->fail_beneficial)
it->p = ttm_pool_type_take(pt, ttm_pool_nid(it->pool));
@@ -1149,6 +1344,7 @@ static int __ttm_pool_alloc(struct ttm_pool *pool, struct ttm_tt *tt,
.alloc = alloc,
.restore = restore,
.defrag_old_tt = restore ? NULL : ctx->defrag_old_tt,
+ .prealloc = restore ? NULL : ctx->prealloc,
.beneficial_order = ttm_pool_beneficial_order(pool),
.page_caching = tt->caching,
.allow_pools = true,
@@ -1178,8 +1374,8 @@ static int __ttm_pool_alloc(struct ttm_pool *pool, struct ttm_tt *tt,
alloc->remaining_pages;
it.order = ttm_pool_alloc_find_order(it.order, alloc)) {
/*
- * Out of defrag budget: harvest the rest of the old tt as-is and
- * stop (the tt is re-queued if the remainder is still
+ * Out of defrag budget/prealloc: harvest the rest of the old tt
+ * as-is and stop (the tt is re-queued if the remainder is still
* sub-optimal).
*/
if (ttm_pool_iter_defrag_exhausted(&it)) {
@@ -1196,7 +1392,7 @@ static int __ttm_pool_alloc(struct ttm_pool *pool, struct ttm_tt *tt,
if (r == TTM_POOL_ITER_RETRY)
continue;
- /* Acquire a page (pool / system) for this order. */
+ /* Acquire a page (prealloc / pool / system) for this order. */
ttm_pool_iter_acquire_page(&it);
if (!it.p) {
r = ttm_pool_iter_lower_order(&it);
@@ -1228,6 +1424,8 @@ static int __ttm_pool_alloc(struct ttm_pool *pool, struct ttm_tt *tt,
alloc->defrag_bytes_remaining -=
(s64)(1UL << it.order) << PAGE_SHIFT;
+ if (it.order < it.beneficial_order)
+ alloc->nr_suboptimal_pages += 0x1 << it.order;
it.alloc_count++;
}
@@ -1291,6 +1489,9 @@ int ttm_pool_alloc(struct ttm_pool *pool, struct ttm_tt *tt,
/* Report the unused defrag budget back to the caller. */
ctx->defrag_bytes_remaining = alloc.defrag_bytes_remaining;
+ if (!ret)
+ tt->nr_suboptimal_pages = alloc.nr_suboptimal_pages;
+
return ret;
}
EXPORT_SYMBOL(ttm_pool_alloc);
@@ -1343,6 +1544,15 @@ int ttm_pool_restore_and_alloc(struct ttm_pool *pool, struct ttm_tt *tt,
if (ret)
return ret;
+
+ /*
+ * __ttm_pool_alloc() counts each freshly (re)allocated
+ * chunk against nr_suboptimal_pages, but a chunk whose
+ * backup copy was interrupted and is finished here
+ * resumes past that loop, so account for it directly.
+ */
+ if (restore->order < ttm_pool_beneficial_order(pool))
+ alloc.nr_suboptimal_pages += 1U << restore->order;
}
if (!alloc.remaining_pages) {
ret = ttm_pool_apply_caching(&alloc);
@@ -1352,11 +1562,16 @@ int ttm_pool_restore_and_alloc(struct ttm_pool *pool, struct ttm_tt *tt,
kfree(tt->restore);
tt->restore = NULL;
+ tt->nr_suboptimal_pages = alloc.nr_suboptimal_pages;
return 0;
}
}
- return __ttm_pool_alloc(pool, tt, ctx, &alloc, restore);
+ ret = __ttm_pool_alloc(pool, tt, ctx, &alloc, restore);
+ if (!ret)
+ tt->nr_suboptimal_pages = alloc.nr_suboptimal_pages;
+
+ return ret;
}
/**
diff --git a/include/drm/ttm/ttm_bo.h b/include/drm/ttm/ttm_bo.h
index 6124d2627b47..a80304f179ba 100644
--- a/include/drm/ttm/ttm_bo.h
+++ b/include/drm/ttm/ttm_bo.h
@@ -237,6 +237,17 @@ struct ttm_operation_ctx {
* @defrag_old_tt is set.
*/
s64 defrag_bytes_remaining;
+ /**
+ * @prealloc: Pages preallocated outside the dma-resv lock for a defrag
+ * move. The pool allocator consumes these instead of allocating fresh
+ * beneficial-order pages under the lock, moving the (potentially
+ * reclaim/compaction stalling) high-order allocations out of the
+ * critical section. NULL means allocate in-line as usual. The pool
+ * silently falls back to in-line allocation for any shortfall. The
+ * allocator consumes it for beneficial-order chunks of any populate;
+ * drivers only set it for a defrag move.
+ */
+ struct ttm_pool_prealloc *prealloc;
/**
* @resv: Reservation object to be used together with
* @allow_res_evict.
diff --git a/include/drm/ttm/ttm_pool.h b/include/drm/ttm/ttm_pool.h
index 753203980e2c..71670350eb15 100644
--- a/include/drm/ttm/ttm_pool.h
+++ b/include/drm/ttm/ttm_pool.h
@@ -81,6 +81,35 @@ int ttm_pool_alloc(struct ttm_pool *pool, struct ttm_tt *tt,
struct ttm_operation_ctx *ctx);
void ttm_pool_free(struct ttm_pool *pool, struct ttm_tt *tt);
+/**
+ * struct ttm_pool_prealloc - Pages preallocated outside the dma-resv lock
+ * @pages: Array of @count beneficial-order pages (or fewer if a fill fell
+ * short); each entry is the head page of a 1 << @order chunk.
+ * @order: Page order of every preallocated chunk.
+ * @caching: CPU caching applied to the pages, so leftovers can be restored
+ * to write-back before being freed.
+ * @count: Number of valid entries in @pages.
+ * @used: Number of entries already consumed by the pool allocator.
+ *
+ * Defrag pages are interchangeable, so only a count of beneficial-order chunks
+ * is needed. ttm_pool_prealloc_fill() populates this outside the lock and
+ * __ttm_pool_alloc() drains it; any unused tail is released by
+ * ttm_pool_prealloc_fini().
+ */
+struct ttm_pool_prealloc {
+ struct page **pages;
+ unsigned int order;
+ enum ttm_caching caching;
+ unsigned int count;
+ unsigned int used;
+};
+
+int ttm_pool_prealloc_fill(struct ttm_pool *pool, enum ttm_caching tt_caching,
+ struct ttm_pool_prealloc *pp, unsigned int count);
+void ttm_pool_prealloc_fini(struct ttm_pool *pool,
+ struct ttm_pool_prealloc *pp);
+unsigned int ttm_pool_prealloc_order(struct ttm_pool *pool);
+
void ttm_pool_init(struct ttm_pool *pool, struct device *dev,
int nid, unsigned int alloc_flags);
void ttm_pool_fini(struct ttm_pool *pool);
diff --git a/include/drm/ttm/ttm_tt.h b/include/drm/ttm/ttm_tt.h
index 55c35bcf134d..81a5446ca693 100644
--- a/include/drm/ttm/ttm_tt.h
+++ b/include/drm/ttm/ttm_tt.h
@@ -135,6 +135,12 @@ struct ttm_tt {
enum ttm_caching caching;
/** @restore: Partial restoration from backup state. TTM private */
struct ttm_pool_tt_restore *restore;
+ /**
+ * @nr_suboptimal_pages: Number of pages backed below the pool's
+ * beneficial order. Recorded by the pool allocator after populate; a
+ * defrag pass reads it to size its out-of-lock preallocation exactly.
+ */
+ u32 nr_suboptimal_pages;
};
/**
@@ -201,6 +207,17 @@ static inline bool ttm_tt_is_beneficial_order_failed(const struct ttm_tt *tt)
return tt->page_flags & TTM_TT_FLAG_BENEFICIAL_ORDER_FAILED;
}
+/**
+ * ttm_tt_suboptimal_pages() - Pages backed below the pool's beneficial order
+ * @tt: The struct ttm_tt.
+ *
+ * Return: Number of pages a defrag move would (re)allocate at beneficial order.
+ */
+static inline u32 ttm_tt_suboptimal_pages(const struct ttm_tt *tt)
+{
+ return tt->nr_suboptimal_pages;
+}
+
/**
* ttm_tt_create
*
--
2.34.1
next prev parent reply other threads:[~2026-07-10 21:55 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-10 21:54 [PATCH v2 00/33] drm/ttm, drm/xe: Minimize dma-resv hold times and defragment sub-optimally backed BOs Matthew Brost
2026-07-10 21:54 ` [PATCH v2 01/33] drm/ttm/pool: Allow backing off reclaim at the beneficial order Matthew Brost
2026-07-11 10:38 ` Christian König
2026-07-11 13:27 ` Matthew Brost
2026-07-10 21:54 ` [PATCH v2 02/33] drm/ttm/pool: Add ttm_pool_page_order_nodma() helper Matthew Brost
2026-07-11 10:39 ` Christian König
2026-07-11 12:40 ` Matthew Brost
2026-07-10 21:54 ` [PATCH v2 03/33] drm/ttm: Record sub-optimal page order allocations in ttm_tt Matthew Brost
2026-07-10 21:54 ` [PATCH v2 04/33] drm/ttm: Introduce ttm_pool_alloc_iter for __ttm_pool_alloc() Matthew Brost
2026-07-10 21:54 ` [PATCH v2 05/33] drm/ttm: Support defragmentation moves Matthew Brost
2026-07-10 21:54 ` [PATCH v2 06/33] drm/ttm: Add fault injection for beneficial-order allocation failures Matthew Brost
2026-07-10 21:54 ` [PATCH v2 07/33] drm/ttm: Harvest beneficial-order pages on defragmentation moves Matthew Brost
2026-07-10 21:54 ` [PATCH v2 08/33] drm/ttm: Bound page (re)allocation per defragmentation move Matthew Brost
2026-07-10 21:54 ` Matthew Brost [this message]
2026-07-10 21:54 ` [PATCH v2 10/33] drm/ttm: Add full out-of-lock preallocation for ttm_pool_alloc() Matthew Brost
2026-07-10 21:54 ` [PATCH v2 11/33] drm/gpusvm: Add a DMA-mapping accounting callback Matthew Brost
2026-07-10 21:54 ` [PATCH v2 12/33] drm/xe: Add debugfs stats for DMA-mapped pages per order Matthew Brost
2026-07-10 21:54 ` [PATCH v2 13/33] drm/xe: Flush L2 asynchronously in xe_bo_trigger_rebind() Matthew Brost
2026-07-10 21:54 ` [PATCH v2 14/33] drm/xe: Destroy page tables after unlinking all VMAs on VM close Matthew Brost
2026-07-10 21:54 ` [PATCH v2 15/33] drm/xe: Track BOs backed at a sub-optimal page order Matthew Brost
2026-07-10 21:54 ` [PATCH v2 16/33] drm/xe: Back off beneficial-order reclaim under defrag pressure Matthew Brost
2026-07-10 21:54 ` [PATCH v2 17/33] drm/xe: Add xe_migrate_copy_defrag() for on-GPU defrag copies Matthew Brost
2026-07-10 21:54 ` [PATCH v2 18/33] drm/xe: Handle defrag moves in xe_bo_move() Matthew Brost
2026-07-10 21:54 ` [PATCH v2 19/33] drm/xe: Skip self-copies for borrowed pages on defrag moves Matthew Brost
2026-07-10 21:54 ` [PATCH v2 20/33] drm/xe: Add a page defragmentation worker Matthew Brost
2026-07-10 21:54 ` [PATCH v2 21/33] drm/xe: Add defrag GT stats Matthew Brost
2026-07-10 21:54 ` [PATCH v2 22/33] drm/xe: Add Kconfig.profile options for BO defrag configuration Matthew Brost
2026-07-10 21:54 ` [PATCH v2 23/33] drm/xe: Defrag using out-of-lock page preallocation Matthew Brost
2026-07-10 21:54 ` [PATCH v2 24/33] drm/xe: Add defrag profiling tracepoints Matthew Brost
2026-07-10 21:54 ` [PATCH v2 25/33] drm/xe: Preallocate system BO backing outside the dma-resv lock Matthew Brost
2026-07-10 21:54 ` [PATCH v2 26/33] drm/xe: Add tracepoint for xe_gem_create_ioctl Matthew Brost
2026-07-10 21:54 ` [PATCH v2 27/33] drm/xe: Add IOVA-based xe_res_cursor variant Matthew Brost
2026-07-10 21:54 ` [PATCH v2 28/33] drm/xe: Use IOVA-based DMA mapping for eligible tt BOs Matthew Brost
2026-07-10 21:54 ` [PATCH v2 29/33] drm/xe: Add per-device dependency scheduler for IOVA defrag finalize Matthew Brost
2026-07-10 21:54 ` [PATCH v2 30/33] drm/xe: Add packed copy-step IOVA mapping for defrag Matthew Brost
2026-07-10 21:54 ` [PATCH v2 31/33] drm/xe: Blit src-natural to dst-packed for defrag-IOVA copies Matthew Brost
2026-07-10 21:54 ` [PATCH v2 32/33] drm/xe: Finalize defrag-IOVA moves with post-copy job Matthew Brost
2026-07-10 21:54 ` [PATCH v2 33/33] drm/amdgpu: Preallocate system BO pages outside the reservation lock Matthew Brost
2026-07-10 22:03 ` ✗ CI.checkpatch: warning for drm/ttm, drm/xe: Minimize dma-resv hold times and defragment sub-optimally backed BOs Patchwork
2026-07-10 22:05 ` ✓ CI.KUnit: success " Patchwork
2026-07-10 22:20 ` ✗ CI.checksparse: warning " Patchwork
2026-07-10 22:40 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-07-11 10:33 ` [PATCH v2 00/33] " Christian König
2026-07-11 13:49 ` Matthew Brost
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=20260710215442.2444235-10-matthew.brost@intel.com \
--to=matthew.brost@intel.com \
--cc=airlied@gmail.com \
--cc=carlos.santa@intel.com \
--cc=christian.koenig@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=matthew.auld@intel.com \
--cc=mripard@kernel.org \
--cc=ray.huang@amd.com \
--cc=ryanneph@google.com \
--cc=simona@ffwll.ch \
--cc=thomas.hellstrom@linux.intel.com \
--cc=tzimmermann@suse.de \
/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