* [PATCH v4 0/5] Add reclaim to the dmem cgroup controller
@ 2026-05-12 8:24 Thomas Hellström
2026-05-12 8:24 ` [PATCH v4 1/5] drm/amdgpu: Fix init ordering in amdgpu_vram_mgr_init() Thomas Hellström
` (8 more replies)
0 siblings, 9 replies; 10+ messages in thread
From: Thomas Hellström @ 2026-05-12 8:24 UTC (permalink / raw)
To: intel-xe
Cc: Thomas Hellström, Natalie Vock, Johannes Weiner, Tejun Heo,
Michal Koutný, cgroups, Huang Rui, Matthew Brost,
Matthew Auld, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
Simona Vetter, David Airlie, Christian König, Alex Deucher,
Rodrigo Vivi, dri-devel, amd-gfx, linux-kernel
When writing a "max" limit lower than the current usage, the
existing code silently failed. This series aims to improve
on that by returning -EBUSY on failure and also attempt
to synchronously reclaim device memory to push the usage
under the new max limit to avoid the error.
Patch 1 fixes a pre-existing amdgpu_vram_mgr_init() error path
Patch 2 implements and documents a reclaim callback interface
for the dmem controller.
Patch 3 implements a TTM reclaim callback.
Patch 4-5 hooks up the reclaim callback to the dmem cgroups-
aware drivers xe and amdgpu.
v2:
- Remove the error propagation that was in a previous series (Maarten)
- A number of updates in patch 1. See its commit message for
details (Maarten)
v3:
- Add patch 1 fixing a pre-existing amdgpu_vram_mgr_init() error path
bug where drmm_cgroup_register_region() was called before
INIT_LIST_HEAD() and gpu_buddy_init(), causing a kernel panic on
failure. (Sashiko-bot)
- Use an rwsem to protect reclaim callback registration and region
unregister against concurrent reclaim invocations. (Sashiko-bot)
- Fix ttm_resource_manager_set_dmem_region() storing an error pointer
in man->cg unconditionally. (Sashiko-bot)
- Fix kernel-doc function name format for ttm_bo_evict_cgroup() and
ttm_resource_manager_set_dmem_region().
v4:
- Rebased on drm-tip; dropped the XE_PL_STOLEN guard in the xe patch
as stolen memory uses a separate TTM manager.
User-space tests are at
https://patchwork.freedesktop.org/series/163935/
Test-with: 20260428065411.4222-1-thomas.hellstrom@linux.intel.com
Thomas Hellström (5):
drm/amdgpu: Fix init ordering in amdgpu_vram_mgr_init()
cgroup/dmem: Add reclaim callback for lowering max below current usage
drm/ttm: Hook up a cgroup-aware reclaim callback for the dmem
controller
drm/xe: Wire up dmem cgroup reclaim for VRAM manager
drm/amdgpu: Wire up dmem cgroup reclaim for VRAM manager
drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 2 +-
drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c | 10 +-
drivers/gpu/drm/ttm/ttm_bo.c | 95 ++++++++++++++++-
drivers/gpu/drm/ttm/ttm_bo_util.c | 3 +-
drivers/gpu/drm/ttm/ttm_resource.c | 37 +++++++
drivers/gpu/drm/xe/xe_ttm_vram_mgr.c | 14 ++-
include/drm/ttm/ttm_bo.h | 10 ++
include/drm/ttm/ttm_resource.h | 4 +
include/linux/cgroup_dmem.h | 24 +++++
kernel/cgroup/dmem.c | 106 +++++++++++++++++--
10 files changed, 283 insertions(+), 22 deletions(-)
--
2.54.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v4 1/5] drm/amdgpu: Fix init ordering in amdgpu_vram_mgr_init()
2026-05-12 8:24 [PATCH v4 0/5] Add reclaim to the dmem cgroup controller Thomas Hellström
@ 2026-05-12 8:24 ` Thomas Hellström
2026-05-12 8:24 ` [PATCH v4 2/5] cgroup/dmem: Add reclaim callback for lowering max below current usage Thomas Hellström
` (7 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Thomas Hellström @ 2026-05-12 8:24 UTC (permalink / raw)
To: intel-xe
Cc: Thomas Hellström, Sashiko-bot, Friedrich Vock,
Maarten Lankhorst, Tejun Heo, Maxime Ripard, Christian König,
Alex Deucher, amd-gfx, dri-devel, stable, Natalie Vock,
Johannes Weiner, Michal Koutný, cgroups, Huang Rui,
Matthew Brost, Matthew Auld, Maarten Lankhorst, Thomas Zimmermann,
Simona Vetter, David Airlie, Rodrigo Vivi, linux-kernel
drmm_cgroup_register_region() is called before INIT_LIST_HEAD() and
gpu_buddy_init() in amdgpu_vram_mgr_init(). If it fails, the function
returns early and bypasses those initializations.
Since adev->mman.initialized is set to true before amdgpu_vram_mgr_init()
is called, a failure triggers amdgpu_ttm_fini(), which calls
amdgpu_vram_mgr_fini(), which then:
- Calls list_for_each_entry_safe() on reservations_pending and
reserved_pages, whose list_head::next pointers are zero-initialized
(NULL). The loop does not recognize them as empty and dereferences NULL.
- Calls gpu_buddy_fini(), which iterates free_trees[] unconditionally
via for_each_free_tree(). Since mm->free_trees is NULL
(never allocated), this dereferences NULL.
Both result in a kernel panic on the module load error path.
Fix by moving drmm_cgroup_register_region() to after the list and buddy
allocator are fully initialized, so the teardown path is safe to run.
Reported-by: Sashiko-bot <sashiko-bot@kernel.org>
Closes: https://sashiko.dev/#/patchset/20260428073116.15687-1-thomas.hellstrom@linux.intel.com?part=4
Fixes: 2b624a2c1865 ("drm/ttm: Handle cgroup based eviction in TTM")
Cc: Friedrich Vock <friedrich.vock@gmx.de>
Cc: Maarten Lankhorst <dev@lankhorst.se>
Cc: Tejun Heo <tj@kernel.org>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: Christian König <christian.koenig@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: amd-gfx@lists.freedesktop.org
Cc: dri-devel@lists.freedesktop.org
Cc: <stable@vger.kernel.org> # v6.14+
Assisted-by: GitHub_Copilot:claude-sonnet-4.6
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c
index 2a241a5b12c4..ac3f71d77140 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c
@@ -918,9 +918,6 @@ int amdgpu_vram_mgr_init(struct amdgpu_device *adev)
struct ttm_resource_manager *man = &mgr->manager;
int err;
- man->cg = drmm_cgroup_register_region(adev_to_drm(adev), "vram", adev->gmc.real_vram_size);
- if (IS_ERR(man->cg))
- return PTR_ERR(man->cg);
ttm_resource_manager_init(man, &adev->mman.bdev,
adev->gmc.real_vram_size);
@@ -935,6 +932,10 @@ int amdgpu_vram_mgr_init(struct amdgpu_device *adev)
if (err)
return err;
+ man->cg = drmm_cgroup_register_region(adev_to_drm(adev), "vram", adev->gmc.real_vram_size);
+ if (IS_ERR(man->cg))
+ return PTR_ERR(man->cg);
+
ttm_set_driver_manager(&adev->mman.bdev, TTM_PL_VRAM, &mgr->manager);
ttm_resource_manager_set_used(man, true);
return 0;
--
2.54.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v4 2/5] cgroup/dmem: Add reclaim callback for lowering max below current usage
2026-05-12 8:24 [PATCH v4 0/5] Add reclaim to the dmem cgroup controller Thomas Hellström
2026-05-12 8:24 ` [PATCH v4 1/5] drm/amdgpu: Fix init ordering in amdgpu_vram_mgr_init() Thomas Hellström
@ 2026-05-12 8:24 ` Thomas Hellström
2026-05-12 8:24 ` [PATCH v4 3/5] drm/ttm: Hook up a cgroup-aware reclaim callback for the dmem controller Thomas Hellström
` (6 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Thomas Hellström @ 2026-05-12 8:24 UTC (permalink / raw)
To: intel-xe
Cc: Thomas Hellström, Natalie Vock, Johannes Weiner, Tejun Heo,
Michal Koutný, cgroups, Huang Rui, Matthew Brost,
Matthew Auld, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
Simona Vetter, David Airlie, Christian König, Alex Deucher,
Rodrigo Vivi, dri-devel, amd-gfx, linux-kernel
Add an optional reclaim callback to struct dmem_cgroup_region. When
dmem.max is set below the current usage of a cgroup pool, the new limit
is applied immediately (so that concurrent allocations are throttled
while reclaim is in progress) and then the driver is asked to evict
memory to bring usage back below the limit.
Reclaim is attempted up to a bounded number of times. No error is
returned to userspace if usage remains above the limit after reclaim,
and a pending signal will abort the reclaim loop early. This matches
the behavior of memory.max in the memory cgroup controller.
Also honor O_NONBLOCK so that if that flag is set during the
max value write, no reclaim is initiated. The idea is to avoid
charging the reclaim cost to the writer of the max value.
v2:
- Write max before reclaim is attempted (Maarten)
- Let signals abort the reclaim without error (Maarten)
- If a new max value is written with the O_NONBLOCK flag,
reclaim is not attempted (Maarten)
- Extract region from the pool parameter rather than
passing it explicitly to set_resource_xxx().
v3:
- Use an rwsem to protect reclaim callback registration and
region unregister against concurrent reclaim invocations,
ensuring reclaim_priv is visible when the callback is
invoked. (Sashiko-bot)
Assisted-by: GitHub_Copilot:claude-sonnet-4.6
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
include/linux/cgroup_dmem.h | 24 ++++++++
kernel/cgroup/dmem.c | 106 +++++++++++++++++++++++++++++++++---
2 files changed, 121 insertions(+), 9 deletions(-)
diff --git a/include/linux/cgroup_dmem.h b/include/linux/cgroup_dmem.h
index dd4869f1d736..c3bce21cbe80 100644
--- a/include/linux/cgroup_dmem.h
+++ b/include/linux/cgroup_dmem.h
@@ -14,6 +14,21 @@ struct dmem_cgroup_pool_state;
/* Opaque definition of a cgroup region, used internally */
struct dmem_cgroup_region;
+/**
+ * typedef dmem_cgroup_reclaim_fn_t - Reclaim callback for a dmem cgroup region.
+ * @pool: The cgroup pool that needs memory reclaimed.
+ * @target_bytes: Minimum number of bytes the driver should attempt to free.
+ * @priv: Private data registered with dmem_cgroup_region_set_reclaim().
+ *
+ * Called by the dmem cgroup controller when dmem.max is set below the current
+ * usage of @pool. The driver should evict at least @target_bytes of memory
+ * from @pool. May be called multiple times if usage remains above the limit.
+ *
+ * Return: 0 if progress was made, negative error code otherwise.
+ */
+typedef int (*dmem_cgroup_reclaim_fn_t)(struct dmem_cgroup_pool_state *pool,
+ u64 target_bytes, void *priv);
+
#if IS_ENABLED(CONFIG_CGROUP_DMEM)
struct dmem_cgroup_region *dmem_cgroup_register_region(u64 size, const char *name_fmt, ...) __printf(2,3);
void dmem_cgroup_unregister_region(struct dmem_cgroup_region *region);
@@ -26,6 +41,9 @@ bool dmem_cgroup_state_evict_valuable(struct dmem_cgroup_pool_state *limit_pool,
bool ignore_low, bool *ret_hit_low);
void dmem_cgroup_pool_state_put(struct dmem_cgroup_pool_state *pool);
+void dmem_cgroup_region_set_reclaim(struct dmem_cgroup_region *region,
+ dmem_cgroup_reclaim_fn_t reclaim,
+ void *priv);
#else
static inline __printf(2,3) struct dmem_cgroup_region *
dmem_cgroup_register_region(u64 size, const char *name_fmt, ...)
@@ -62,5 +80,11 @@ bool dmem_cgroup_state_evict_valuable(struct dmem_cgroup_pool_state *limit_pool,
static inline void dmem_cgroup_pool_state_put(struct dmem_cgroup_pool_state *pool)
{ }
+static inline void
+dmem_cgroup_region_set_reclaim(struct dmem_cgroup_region *region,
+ dmem_cgroup_reclaim_fn_t reclaim,
+ void *priv)
+{ }
+
#endif
#endif /* _CGROUP_DMEM_H */
diff --git a/kernel/cgroup/dmem.c b/kernel/cgroup/dmem.c
index 1ab1fb47f271..5fd5a1634d21 100644
--- a/kernel/cgroup/dmem.c
+++ b/kernel/cgroup/dmem.c
@@ -51,6 +51,20 @@ struct dmem_cgroup_region {
* No new pools should be added to the region afterwards.
*/
bool unregistered;
+
+ /**
+ * @reclaim: Optional callback invoked when dmem.max is set below the
+ * current usage of a pool. The driver should attempt to free at least
+ * @target_bytes from @pool. May be called multiple times if usage
+ * remains above the limit after returning.
+ */
+ dmem_cgroup_reclaim_fn_t reclaim;
+
+ /** @reclaim_priv: Private data passed to @reclaim. */
+ void *reclaim_priv;
+
+ /** @unregister_sem: Protect @reclaim while it is running. */
+ struct rw_semaphore unregister_sem;
};
struct dmemcg_state {
@@ -145,21 +159,58 @@ static void free_cg_pool(struct dmem_cgroup_pool_state *pool)
}
static void
-set_resource_min(struct dmem_cgroup_pool_state *pool, u64 val)
+set_resource_min(struct dmem_cgroup_pool_state *pool, u64 val, bool nonblock)
{
page_counter_set_min(&pool->cnt, val);
}
static void
-set_resource_low(struct dmem_cgroup_pool_state *pool, u64 val)
+set_resource_low(struct dmem_cgroup_pool_state *pool, u64 val, bool nonblock)
{
page_counter_set_low(&pool->cnt, val);
}
static void
-set_resource_max(struct dmem_cgroup_pool_state *pool, u64 val)
+set_resource_max(struct dmem_cgroup_pool_state *pool, u64 val, bool nonblock)
{
- page_counter_set_max(&pool->cnt, val);
+ struct dmem_cgroup_region *region = pool->region;
+
+ /*
+ * Always update the limit, even if usage currently exceeds it.
+ * Concurrent allocations will be throttled against the new limit
+ * while reclaim is in progress.
+ */
+ xchg(&pool->cnt.max, (unsigned long)val);
+
+ if (nonblock || !READ_ONCE(region->reclaim))
+ return;
+
+ for (int retries = 5; retries > 0; retries--) {
+ u64 usage = page_counter_read(&pool->cnt);
+ int ret;
+
+ if (usage <= val)
+ break;
+
+ if (signal_pending(current))
+ break;
+
+ /* Block unregister until the reclaim callback completes. */
+ if (down_read_interruptible(®ion->unregister_sem))
+ break;
+
+ if (!region->reclaim) {
+ up_read(®ion->unregister_sem);
+ break;
+ }
+
+ ret = region->reclaim(pool, usage - val, region->reclaim_priv);
+ up_read(®ion->unregister_sem);
+ if (ret)
+ break;
+
+ cond_resched();
+ }
}
static u64 get_resource_low(struct dmem_cgroup_pool_state *pool)
@@ -184,9 +235,9 @@ static u64 get_resource_current(struct dmem_cgroup_pool_state *pool)
static void reset_all_resource_limits(struct dmem_cgroup_pool_state *rpool)
{
- set_resource_min(rpool, 0);
- set_resource_low(rpool, 0);
- set_resource_max(rpool, PAGE_COUNTER_MAX);
+ set_resource_min(rpool, 0, false);
+ set_resource_low(rpool, 0, false);
+ set_resource_max(rpool, PAGE_COUNTER_MAX, false);
}
static void dmemcs_offline(struct cgroup_subsys_state *css)
@@ -491,6 +542,12 @@ void dmem_cgroup_unregister_region(struct dmem_cgroup_region *region)
region->unregistered = true;
spin_unlock(&dmemcg_lock);
+ /* Ensure all reclaim() callbacks have finished. */
+ down_write(®ion->unregister_sem);
+ /* Pairs with READ_ONCE() in set_resource_max() */
+ WRITE_ONCE(region->reclaim, NULL);
+ up_write(®ion->unregister_sem);
+
kref_put(®ion->ref, dmemcg_free_region);
}
EXPORT_SYMBOL_GPL(dmem_cgroup_unregister_region);
@@ -530,6 +587,7 @@ struct dmem_cgroup_region *dmem_cgroup_register_region(u64 size, const char *fmt
INIT_LIST_HEAD(&ret->pools);
ret->name = region_name;
ret->size = size;
+ init_rwsem(&ret->unregister_sem);
kref_init(&ret->ref);
spin_lock(&dmemcg_lock);
@@ -568,6 +626,34 @@ void dmem_cgroup_pool_state_put(struct dmem_cgroup_pool_state *pool)
}
EXPORT_SYMBOL_GPL(dmem_cgroup_pool_state_put);
+/**
+ * dmem_cgroup_region_set_reclaim() - Register a reclaim callback on a region.
+ * @region: The region to register the callback for.
+ * @reclaim: Callback to invoke when dmem.max is set below current usage.
+ * Called with the pool that needs reclaiming and the number of
+ * bytes to free. Returns 0 on progress, negative on failure.
+ * @priv: Opaque pointer passed back to @reclaim.
+ *
+ * When dmem.max is lowered below the current usage of a cgroup pool, the
+ * dmem controller will call @reclaim with a target number of bytes to free.
+ * After @reclaim returns the controller retries setting the limit; if usage
+ * is still too high it calls @reclaim again, up to a bounded retry count.
+ */
+void dmem_cgroup_region_set_reclaim(struct dmem_cgroup_region *region,
+ dmem_cgroup_reclaim_fn_t reclaim,
+ void *priv)
+{
+ if (!region)
+ return;
+
+ down_write(®ion->unregister_sem);
+ region->reclaim_priv = priv;
+ /* Pairs with READ_ONCE() in set_resource_max() */
+ WRITE_ONCE(region->reclaim, reclaim);
+ up_write(®ion->unregister_sem);
+}
+EXPORT_SYMBOL_GPL(dmem_cgroup_region_set_reclaim);
+
static struct dmem_cgroup_pool_state *
get_cg_pool_unlocked(struct dmemcg_state *cg, struct dmem_cgroup_region *region)
{
@@ -725,9 +811,10 @@ static int dmemcg_parse_limit(char *options, u64 *new_limit)
static ssize_t dmemcg_limit_write(struct kernfs_open_file *of,
char *buf, size_t nbytes, loff_t off,
- void (*apply)(struct dmem_cgroup_pool_state *, u64))
+ void (*apply)(struct dmem_cgroup_pool_state *, u64, bool))
{
struct dmemcg_state *dmemcs = css_to_dmemcs(of_css(of));
+ bool nonblock = of->file->f_flags & O_NONBLOCK;
int err = 0;
while (buf && !err) {
@@ -772,7 +859,8 @@ static ssize_t dmemcg_limit_write(struct kernfs_open_file *of,
}
/* And commit */
- apply(pool, new_limit);
+ apply(pool, new_limit, nonblock);
+
dmemcg_pool_put(pool);
out_put:
--
2.54.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v4 3/5] drm/ttm: Hook up a cgroup-aware reclaim callback for the dmem controller
2026-05-12 8:24 [PATCH v4 0/5] Add reclaim to the dmem cgroup controller Thomas Hellström
2026-05-12 8:24 ` [PATCH v4 1/5] drm/amdgpu: Fix init ordering in amdgpu_vram_mgr_init() Thomas Hellström
2026-05-12 8:24 ` [PATCH v4 2/5] cgroup/dmem: Add reclaim callback for lowering max below current usage Thomas Hellström
@ 2026-05-12 8:24 ` Thomas Hellström
2026-05-12 8:24 ` [PATCH v4 4/5] drm/xe: Wire up dmem cgroup reclaim for VRAM manager Thomas Hellström
` (5 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Thomas Hellström @ 2026-05-12 8:24 UTC (permalink / raw)
To: intel-xe
Cc: Thomas Hellström, Natalie Vock, Johannes Weiner, Tejun Heo,
Michal Koutný, cgroups, Huang Rui, Matthew Brost,
Matthew Auld, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
Simona Vetter, David Airlie, Christian König, Alex Deucher,
Rodrigo Vivi, dri-devel, amd-gfx, linux-kernel
Add ttm_bo_evict_cgroup() to evict buffer objects charged to a specific
dmem cgroup pool from a resource manager's LRU until a byte target is
met. Add ttm_resource_manager_set_dmem_region() to register the TTM
eviction path as the reclaim callback for a dmem cgroup region.
The eviction context is interruptible; signals abort the operation and
propagate back through the write() syscall.
Introduce a new mode for the bo LRU walker so that sleeping locks
can be taken. This can be used when the caller doesn't hold any
previous dma_resv locks, and where it intends to hold at most
one lock at a time.
Like the rest of the TTM eviction this should sooner than later
be converted to full WW transactions.
v3:
- Fix ttm_resource_manager_set_dmem_region() storing an error pointer
in man->cg unconditionally. (Sashiko-bot)
- Fix kernel-doc function name format for ttm_bo_evict_cgroup() and
ttm_resource_manager_set_dmem_region().
Assisted-by: GitHub_Copilot:claude-sonnet-4.6
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
drivers/gpu/drm/ttm/ttm_bo.c | 95 +++++++++++++++++++++++++++++-
drivers/gpu/drm/ttm/ttm_bo_util.c | 3 +-
drivers/gpu/drm/ttm/ttm_resource.c | 37 ++++++++++++
include/drm/ttm/ttm_bo.h | 10 ++++
include/drm/ttm/ttm_resource.h | 4 ++
5 files changed, 145 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
index 293401705542..3d0872f2f14d 100644
--- a/drivers/gpu/drm/ttm/ttm_bo.c
+++ b/drivers/gpu/drm/ttm/ttm_bo.c
@@ -515,12 +515,20 @@ static s64 ttm_bo_evict_cb(struct ttm_lru_walk *walk, struct ttm_buffer_object *
{
struct ttm_bo_evict_walk *evict_walk =
container_of(walk, typeof(*evict_walk), walk);
+ /* Capture size before eviction in case res is cleared. */
+ s64 bo_size = bo->base.size;
s64 lret;
if (!dmem_cgroup_state_evict_valuable(evict_walk->limit_pool, bo->resource->css,
evict_walk->try_low, &evict_walk->hit_low))
return 0;
+ /*
+ * evict_walk->place is NULL in cgroup drain mode. Drivers'
+ * eviction_valuable() callbacks must handle a NULL place, treating it
+ * as "any placement": the TTM base implementation already does so via
+ * ttm_resource_intersects().
+ */
if (bo->pin_count || !bo->bdev->funcs->eviction_valuable(bo, evict_walk->place))
return 0;
@@ -536,11 +544,15 @@ static s64 ttm_bo_evict_cb(struct ttm_lru_walk *walk, struct ttm_buffer_object *
goto out;
evict_walk->evicted++;
- if (evict_walk->res)
+ if (evict_walk->res) {
lret = ttm_resource_alloc(evict_walk->evictor, evict_walk->place,
evict_walk->res, NULL);
- if (lret == 0)
- return 1;
+ if (lret == 0)
+ return 1;
+ } else {
+ /* Cgroup drain: return bytes freed for byte-denominated progress. */
+ return bo_size;
+ }
out:
/* Errors that should terminate the walk. */
if (lret == -ENOSPC)
@@ -614,6 +626,83 @@ static int ttm_bo_evict_alloc(struct ttm_device *bdev,
return 0;
}
+/**
+ * ttm_bo_evict_cgroup() - Evict buffer objects charged to a specific cgroup.
+ * @bdev: The TTM device.
+ * @man: The resource manager whose LRU to walk.
+ * @limit_pool: The cgroup pool state whose members should be evicted.
+ * @target_bytes: Number of bytes to free.
+ * @ctx: The TTM operation context.
+ *
+ * Walk the LRU of @man and evict buffer objects that are charged to the
+ * cgroup identified by @limit_pool, until at least @target_bytes have been
+ * freed. Mirrors the two-pass (trylock -> sleeping-lock, low-watermark)
+ * strategy used by ttm_bo_evict_alloc().
+ *
+ * Return: >= @target_bytes on full success, 0..target_bytes-1 if partial,
+ * negative error code on fatal error.
+ */
+s64 ttm_bo_evict_cgroup(struct ttm_device *bdev,
+ struct ttm_resource_manager *man,
+ struct dmem_cgroup_pool_state *limit_pool,
+ s64 target_bytes,
+ struct ttm_operation_ctx *ctx)
+{
+ struct ttm_bo_evict_walk evict_walk = {
+ .walk = {
+ .ops = &ttm_evict_walk_ops,
+ .arg = { .ctx = ctx },
+ },
+ .limit_pool = limit_pool,
+ /* place, evictor, res left NULL: selects cgroup drain mode */
+ };
+ s64 lret, pass;
+
+ evict_walk.walk.arg.trylock_only = true;
+ lret = ttm_lru_walk_for_evict(&evict_walk.walk, bdev, man, target_bytes);
+ if (lret < 0 || lret >= target_bytes)
+ return lret;
+
+ /* Second pass: also evict BOs at the low watermark. */
+ if (evict_walk.hit_low) {
+ evict_walk.try_low = true;
+ pass = ttm_lru_walk_for_evict(&evict_walk.walk, bdev, man,
+ target_bytes - lret);
+ if (pass < 0)
+ return pass;
+ lret += pass;
+ if (lret >= target_bytes)
+ return lret;
+ }
+
+ /* Full sleeping-lock pass for remaining target. */
+ evict_walk.try_low = evict_walk.hit_low = false;
+ evict_walk.walk.arg.trylock_only = false;
+
+retry:
+ evict_walk.walk.arg.sleeping_lock = true;
+ do {
+ evict_walk.evicted = 0;
+ pass = ttm_lru_walk_for_evict(&evict_walk.walk, bdev, man,
+ target_bytes - lret);
+ if (pass < 0) {
+ lret = pass;
+ goto out;
+ }
+ lret += pass;
+ } while (lret < target_bytes && evict_walk.evicted);
+
+ /* One more attempt if we hit the low limit during sleeping-lock pass. */
+ if (lret < target_bytes && evict_walk.hit_low && !evict_walk.try_low) {
+ evict_walk.try_low = true;
+ goto retry;
+ }
+
+out:
+ return lret;
+}
+EXPORT_SYMBOL(ttm_bo_evict_cgroup);
+
/**
* ttm_bo_pin - Pin the buffer object.
* @bo: The buffer object to pin
diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
index f83b7d5ec6c6..81c6a674c462 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_util.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
@@ -999,7 +999,8 @@ __ttm_bo_lru_cursor_next(struct ttm_bo_lru_cursor *curs)
bo = res->bo;
if (ttm_lru_walk_trylock(curs, bo))
bo_locked = true;
- else if (!arg->ticket || arg->ctx->no_wait_gpu || arg->trylock_only)
+ else if ((!arg->ticket && !arg->sleeping_lock) || arg->ctx->no_wait_gpu ||
+ arg->trylock_only)
continue;
if (!ttm_bo_get_unless_zero(bo)) {
diff --git a/drivers/gpu/drm/ttm/ttm_resource.c b/drivers/gpu/drm/ttm/ttm_resource.c
index 0e5f1582f13d..6d24f3320892 100644
--- a/drivers/gpu/drm/ttm/ttm_resource.c
+++ b/drivers/gpu/drm/ttm/ttm_resource.c
@@ -950,3 +950,40 @@ void ttm_resource_manager_create_debugfs(struct ttm_resource_manager *man,
#endif
}
EXPORT_SYMBOL(ttm_resource_manager_create_debugfs);
+
+static int ttm_resource_manager_dmem_reclaim(struct dmem_cgroup_pool_state *pool,
+ u64 target_bytes, void *priv)
+{
+ struct ttm_resource_manager *man = priv;
+ struct ttm_operation_ctx ctx = { .interruptible = true };
+ s64 freed;
+
+ freed = ttm_bo_evict_cgroup(man->bdev, man, pool, target_bytes, &ctx);
+ if (freed < 0)
+ return freed;
+
+ return freed >= (s64)target_bytes ? 0 : -ENOSPC;
+}
+
+/**
+ * ttm_resource_manager_set_dmem_region() - Associate a dmem cgroup region with a
+ * resource manager and register a reclaim
+ * callback.
+ * @man: The resource manager.
+ * @region: The dmem cgroup region to associate, may be NULL or IS_ERR().
+ *
+ * Sets @man->cg and registers ttm_resource_manager_dmem_reclaim() so that
+ * writing to dmem.max below current usage triggers TTM eviction rather than
+ * returning -EBUSY to userspace.
+ */
+void ttm_resource_manager_set_dmem_region(struct ttm_resource_manager *man,
+ struct dmem_cgroup_region *region)
+{
+ if (!IS_ERR_OR_NULL(region)) {
+ man->cg = region;
+ dmem_cgroup_region_set_reclaim(region,
+ ttm_resource_manager_dmem_reclaim,
+ man);
+ }
+}
+EXPORT_SYMBOL(ttm_resource_manager_set_dmem_region);
diff --git a/include/drm/ttm/ttm_bo.h b/include/drm/ttm/ttm_bo.h
index 8310bc3d55f9..32791c4db2a9 100644
--- a/include/drm/ttm/ttm_bo.h
+++ b/include/drm/ttm/ttm_bo.h
@@ -226,6 +226,11 @@ struct ttm_lru_walk_arg {
struct ww_acquire_ctx *ticket;
/** @trylock_only: Only use trylock for locking. */
bool trylock_only;
+ /**
+ * @sleeping_lock: Use sleeping locks even with %NULL @ticket.
+ * @trylock_only has precedence over this field.
+ */
+ bool sleeping_lock;
};
/**
@@ -431,6 +436,11 @@ void ttm_bo_unpin(struct ttm_buffer_object *bo);
int ttm_bo_evict_first(struct ttm_device *bdev,
struct ttm_resource_manager *man,
struct ttm_operation_ctx *ctx);
+s64 ttm_bo_evict_cgroup(struct ttm_device *bdev,
+ struct ttm_resource_manager *man,
+ struct dmem_cgroup_pool_state *limit_pool,
+ s64 target_bytes,
+ struct ttm_operation_ctx *ctx);
int ttm_bo_access(struct ttm_buffer_object *bo, unsigned long offset,
void *buf, int len, int write);
vm_fault_t ttm_bo_vm_reserve(struct ttm_buffer_object *bo,
diff --git a/include/drm/ttm/ttm_resource.h b/include/drm/ttm/ttm_resource.h
index a5d386583fb6..1ba3ae39763c 100644
--- a/include/drm/ttm/ttm_resource.h
+++ b/include/drm/ttm/ttm_resource.h
@@ -39,6 +39,7 @@
struct dentry;
struct dmem_cgroup_device;
+struct dmem_cgroup_region;
struct drm_printer;
struct ttm_device;
struct ttm_resource_manager;
@@ -477,6 +478,9 @@ void ttm_resource_manager_init(struct ttm_resource_manager *man,
struct ttm_device *bdev,
uint64_t size);
+void ttm_resource_manager_set_dmem_region(struct ttm_resource_manager *man,
+ struct dmem_cgroup_region *region);
+
int ttm_resource_manager_evict_all(struct ttm_device *bdev,
struct ttm_resource_manager *man);
--
2.54.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v4 4/5] drm/xe: Wire up dmem cgroup reclaim for VRAM manager
2026-05-12 8:24 [PATCH v4 0/5] Add reclaim to the dmem cgroup controller Thomas Hellström
` (2 preceding siblings ...)
2026-05-12 8:24 ` [PATCH v4 3/5] drm/ttm: Hook up a cgroup-aware reclaim callback for the dmem controller Thomas Hellström
@ 2026-05-12 8:24 ` Thomas Hellström
2026-05-12 8:24 ` [PATCH v4 5/5] drm/amdgpu: " Thomas Hellström
` (4 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Thomas Hellström @ 2026-05-12 8:24 UTC (permalink / raw)
To: intel-xe
Cc: Thomas Hellström, Natalie Vock, Johannes Weiner, Tejun Heo,
Michal Koutný, cgroups, Huang Rui, Matthew Brost,
Matthew Auld, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
Simona Vetter, David Airlie, Christian König, Alex Deucher,
Rodrigo Vivi, dri-devel, amd-gfx, linux-kernel
Register the VRAM manager with the dmem cgroup reclaim infrastructure
so that lowering dmem.max below current VRAM usage triggers TTM
eviction rather than failing with -EBUSY.
v4:
- Rebased on drm-tip; dropped the XE_PL_STOLEN guard as stolen memory
uses a separate TTM manager and never calls __xe_ttm_vram_mgr_init().
Assisted-by: GitHub_Copilot:claude-sonnet-4.6
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
drivers/gpu/drm/xe/xe_ttm_vram_mgr.c | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_ttm_vram_mgr.c b/drivers/gpu/drm/xe/xe_ttm_vram_mgr.c
index b518f7dec680..d8d596d8575b 100644
--- a/drivers/gpu/drm/xe/xe_ttm_vram_mgr.c
+++ b/drivers/gpu/drm/xe/xe_ttm_vram_mgr.c
@@ -299,14 +299,10 @@ int __xe_ttm_vram_mgr_init(struct xe_device *xe, struct xe_ttm_vram_mgr *mgr,
u64 default_page_size)
{
struct ttm_resource_manager *man = &mgr->manager;
+ struct dmem_cgroup_region *cg;
const char *name;
int err;
- name = mem_type == XE_PL_VRAM0 ? "vram0" : "vram1";
- man->cg = drmm_cgroup_register_region(&xe->drm, name, size);
- if (IS_ERR(man->cg))
- return PTR_ERR(man->cg);
-
man->func = &xe_ttm_vram_mgr_func;
mgr->mem_type = mem_type;
err = drmm_mutex_init(&xe->drm, &mgr->lock);
@@ -317,6 +313,14 @@ int __xe_ttm_vram_mgr_init(struct xe_device *xe, struct xe_ttm_vram_mgr *mgr,
mgr->visible_avail = io_size;
ttm_resource_manager_init(man, &xe->ttm, size);
+
+ name = mem_type == XE_PL_VRAM0 ? "vram0" : "vram1";
+ cg = drmm_cgroup_register_region(&xe->drm, name, size);
+ if (IS_ERR(cg))
+ return PTR_ERR(cg);
+
+ ttm_resource_manager_set_dmem_region(man, cg);
+
err = gpu_buddy_init(&mgr->mm, man->size, default_page_size);
if (err)
return err;
--
2.54.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v4 5/5] drm/amdgpu: Wire up dmem cgroup reclaim for VRAM manager
2026-05-12 8:24 [PATCH v4 0/5] Add reclaim to the dmem cgroup controller Thomas Hellström
` (3 preceding siblings ...)
2026-05-12 8:24 ` [PATCH v4 4/5] drm/xe: Wire up dmem cgroup reclaim for VRAM manager Thomas Hellström
@ 2026-05-12 8:24 ` Thomas Hellström
2026-05-12 15:51 ` ✗ CI.checkpatch: warning for Add reclaim to the dmem cgroup controller (rev4) Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Thomas Hellström @ 2026-05-12 8:24 UTC (permalink / raw)
To: intel-xe
Cc: Thomas Hellström, Natalie Vock, Johannes Weiner, Tejun Heo,
Michal Koutný, cgroups, Huang Rui, Matthew Brost,
Matthew Auld, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
Simona Vetter, David Airlie, Christian König, Alex Deucher,
Rodrigo Vivi, dri-devel, amd-gfx, linux-kernel
Register the VRAM manager with the dmem cgroup reclaim infrastructure
so that lowering dmem.max below current VRAM usage triggers TTM
eviction rather than failing with -EBUSY.
Guard place->flags in amdgpu_ttm_bo_eviction_valuable() against NULL,
as the TTM reclaim path passes a NULL place in cgroup drain mode.
v3:
- Rebased on fix for uninitialized list and buddy allocator on the
drmm_cgroup_register_region() error path.
Assisted-by: GitHub_Copilot:claude-sonnet-4.6
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 2 +-
drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c | 9 ++++++---
2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
index 2740de94e93c..8cbcd33f51a5 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
@@ -1488,7 +1488,7 @@ static bool amdgpu_ttm_bo_eviction_valuable(struct ttm_buffer_object *bo,
dma_resv_for_each_fence(&resv_cursor, bo->base.resv,
DMA_RESV_USAGE_BOOKKEEP, f) {
if (amdkfd_fence_check_mm(f, current->mm) &&
- !(place->flags & TTM_PL_FLAG_CONTIGUOUS))
+ !(place && (place->flags & TTM_PL_FLAG_CONTIGUOUS)))
return false;
}
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c
index ac3f71d77140..a1f1ae264a40 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c
@@ -916,6 +916,7 @@ int amdgpu_vram_mgr_init(struct amdgpu_device *adev)
{
struct amdgpu_vram_mgr *mgr = &adev->mman.vram_mgr;
struct ttm_resource_manager *man = &mgr->manager;
+ struct dmem_cgroup_region *cg;
int err;
ttm_resource_manager_init(man, &adev->mman.bdev,
@@ -932,9 +933,11 @@ int amdgpu_vram_mgr_init(struct amdgpu_device *adev)
if (err)
return err;
- man->cg = drmm_cgroup_register_region(adev_to_drm(adev), "vram", adev->gmc.real_vram_size);
- if (IS_ERR(man->cg))
- return PTR_ERR(man->cg);
+ cg = drmm_cgroup_register_region(adev_to_drm(adev), "vram",
+ adev->gmc.real_vram_size);
+ if (IS_ERR(cg))
+ return PTR_ERR(cg);
+ ttm_resource_manager_set_dmem_region(man, cg);
ttm_set_driver_manager(&adev->mman.bdev, TTM_PL_VRAM, &mgr->manager);
ttm_resource_manager_set_used(man, true);
--
2.54.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✗ CI.checkpatch: warning for Add reclaim to the dmem cgroup controller (rev4)
2026-05-12 8:24 [PATCH v4 0/5] Add reclaim to the dmem cgroup controller Thomas Hellström
` (4 preceding siblings ...)
2026-05-12 8:24 ` [PATCH v4 5/5] drm/amdgpu: " Thomas Hellström
@ 2026-05-12 15:51 ` Patchwork
2026-05-12 15:53 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-05-12 15:51 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe
== Series Details ==
Series: Add reclaim to the dmem cgroup controller (rev4)
URL : https://patchwork.freedesktop.org/series/163970/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 52d167804b9c139c1123408a3fd00f29d3beb8f7
Author: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Date: Tue May 12 10:24:06 2026 +0200
drm/amdgpu: Wire up dmem cgroup reclaim for VRAM manager
Register the VRAM manager with the dmem cgroup reclaim infrastructure
so that lowering dmem.max below current VRAM usage triggers TTM
eviction rather than failing with -EBUSY.
Guard place->flags in amdgpu_ttm_bo_eviction_valuable() against NULL,
as the TTM reclaim path passes a NULL place in cgroup drain mode.
v3:
- Rebased on fix for uninitialized list and buddy allocator on the
drmm_cgroup_register_region() error path.
Assisted-by: GitHub_Copilot:claude-sonnet-4.6
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
+ /mt/dim checkpatch 82b65e2afc27ff2bad3e0dfa3fd40c4f39f9f472 drm-intel
c0367e095797 drm/amdgpu: Fix init ordering in amdgpu_vram_mgr_init()
9fe917243fd7 cgroup/dmem: Add reclaim callback for lowering max below current usage
b06567a9867c drm/ttm: Hook up a cgroup-aware reclaim callback for the dmem controller
-:133: CHECK:MULTIPLE_ASSIGNMENTS: multiple assignments should be avoided
#133: FILE: drivers/gpu/drm/ttm/ttm_bo.c:679:
+ evict_walk.try_low = evict_walk.hit_low = false;
total: 0 errors, 0 warnings, 1 checks, 208 lines checked
c4a70bc80572 drm/xe: Wire up dmem cgroup reclaim for VRAM manager
52d167804b9c drm/amdgpu: Wire up dmem cgroup reclaim for VRAM manager
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ CI.KUnit: success for Add reclaim to the dmem cgroup controller (rev4)
2026-05-12 8:24 [PATCH v4 0/5] Add reclaim to the dmem cgroup controller Thomas Hellström
` (5 preceding siblings ...)
2026-05-12 15:51 ` ✗ CI.checkpatch: warning for Add reclaim to the dmem cgroup controller (rev4) Patchwork
@ 2026-05-12 15:53 ` Patchwork
2026-05-12 16:48 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-13 4:27 ` ✗ Xe.CI.FULL: failure " Patchwork
8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-05-12 15:53 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe
== Series Details ==
Series: Add reclaim to the dmem cgroup controller (rev4)
URL : https://patchwork.freedesktop.org/series/163970/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:51:59] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:52:03] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[15:52:34] Starting KUnit Kernel (1/1)...
[15:52:34] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:52:34] ================== guc_buf (11 subtests) ===================
[15:52:34] [PASSED] test_smallest
[15:52:34] [PASSED] test_largest
[15:52:34] [PASSED] test_granular
[15:52:34] [PASSED] test_unique
[15:52:34] [PASSED] test_overlap
[15:52:34] [PASSED] test_reusable
[15:52:34] [PASSED] test_too_big
[15:52:34] [PASSED] test_flush
[15:52:34] [PASSED] test_lookup
[15:52:34] [PASSED] test_data
[15:52:34] [PASSED] test_class
[15:52:34] ===================== [PASSED] guc_buf =====================
[15:52:34] =================== guc_dbm (7 subtests) ===================
[15:52:34] [PASSED] test_empty
[15:52:34] [PASSED] test_default
[15:52:34] ======================== test_size ========================
[15:52:34] [PASSED] 4
[15:52:34] [PASSED] 8
[15:52:34] [PASSED] 32
[15:52:34] [PASSED] 256
[15:52:34] ==================== [PASSED] test_size ====================
[15:52:34] ======================= test_reuse ========================
[15:52:34] [PASSED] 4
[15:52:34] [PASSED] 8
[15:52:34] [PASSED] 32
[15:52:34] [PASSED] 256
[15:52:34] =================== [PASSED] test_reuse ====================
[15:52:34] =================== test_range_overlap ====================
[15:52:34] [PASSED] 4
[15:52:34] [PASSED] 8
[15:52:34] [PASSED] 32
[15:52:34] [PASSED] 256
[15:52:34] =============== [PASSED] test_range_overlap ================
[15:52:34] =================== test_range_compact ====================
[15:52:34] [PASSED] 4
[15:52:34] [PASSED] 8
[15:52:34] [PASSED] 32
[15:52:34] [PASSED] 256
[15:52:34] =============== [PASSED] test_range_compact ================
[15:52:34] ==================== test_range_spare =====================
[15:52:34] [PASSED] 4
[15:52:34] [PASSED] 8
[15:52:34] [PASSED] 32
[15:52:34] [PASSED] 256
[15:52:34] ================ [PASSED] test_range_spare =================
[15:52:34] ===================== [PASSED] guc_dbm =====================
[15:52:34] =================== guc_idm (6 subtests) ===================
[15:52:34] [PASSED] bad_init
[15:52:34] [PASSED] no_init
[15:52:34] [PASSED] init_fini
[15:52:34] [PASSED] check_used
[15:52:34] [PASSED] check_quota
[15:52:34] [PASSED] check_all
[15:52:34] ===================== [PASSED] guc_idm =====================
[15:52:34] ================== no_relay (3 subtests) ===================
[15:52:34] [PASSED] xe_drops_guc2pf_if_not_ready
[15:52:34] [PASSED] xe_drops_guc2vf_if_not_ready
[15:52:34] [PASSED] xe_rejects_send_if_not_ready
[15:52:34] ==================== [PASSED] no_relay =====================
[15:52:34] ================== pf_relay (14 subtests) ==================
[15:52:34] [PASSED] pf_rejects_guc2pf_too_short
[15:52:34] [PASSED] pf_rejects_guc2pf_too_long
[15:52:34] [PASSED] pf_rejects_guc2pf_no_payload
[15:52:34] [PASSED] pf_fails_no_payload
[15:52:34] [PASSED] pf_fails_bad_origin
[15:52:34] [PASSED] pf_fails_bad_type
[15:52:34] [PASSED] pf_txn_reports_error
[15:52:34] [PASSED] pf_txn_sends_pf2guc
[15:52:34] [PASSED] pf_sends_pf2guc
[15:52:34] [SKIPPED] pf_loopback_nop
[15:52:34] [SKIPPED] pf_loopback_echo
[15:52:34] [SKIPPED] pf_loopback_fail
[15:52:34] [SKIPPED] pf_loopback_busy
[15:52:34] [SKIPPED] pf_loopback_retry
[15:52:34] ==================== [PASSED] pf_relay =====================
[15:52:34] ================== vf_relay (3 subtests) ===================
[15:52:34] [PASSED] vf_rejects_guc2vf_too_short
[15:52:34] [PASSED] vf_rejects_guc2vf_too_long
[15:52:34] [PASSED] vf_rejects_guc2vf_no_payload
[15:52:34] ==================== [PASSED] vf_relay =====================
[15:52:34] ================ pf_gt_config (9 subtests) =================
[15:52:34] [PASSED] fair_contexts_1vf
[15:52:34] [PASSED] fair_doorbells_1vf
[15:52:34] [PASSED] fair_ggtt_1vf
[15:52:34] ====================== fair_vram_1vf ======================
[15:52:34] [PASSED] 3.50 GiB
[15:52:34] [PASSED] 11.5 GiB
[15:52:34] [PASSED] 15.5 GiB
[15:52:34] [PASSED] 31.5 GiB
[15:52:34] [PASSED] 63.5 GiB
[15:52:34] [PASSED] 1.91 GiB
[15:52:34] ================== [PASSED] fair_vram_1vf ==================
[15:52:34] ================ fair_vram_1vf_admin_only =================
[15:52:34] [PASSED] 3.50 GiB
[15:52:34] [PASSED] 11.5 GiB
[15:52:34] [PASSED] 15.5 GiB
[15:52:34] [PASSED] 31.5 GiB
[15:52:34] [PASSED] 63.5 GiB
[15:52:34] [PASSED] 1.91 GiB
[15:52:34] ============ [PASSED] fair_vram_1vf_admin_only =============
[15:52:34] ====================== fair_contexts ======================
[15:52:34] [PASSED] 1 VF
[15:52:34] [PASSED] 2 VFs
[15:52:34] [PASSED] 3 VFs
[15:52:34] [PASSED] 4 VFs
[15:52:34] [PASSED] 5 VFs
[15:52:34] [PASSED] 6 VFs
[15:52:34] [PASSED] 7 VFs
[15:52:34] [PASSED] 8 VFs
[15:52:34] [PASSED] 9 VFs
[15:52:34] [PASSED] 10 VFs
[15:52:34] [PASSED] 11 VFs
[15:52:34] [PASSED] 12 VFs
[15:52:34] [PASSED] 13 VFs
[15:52:34] [PASSED] 14 VFs
[15:52:34] [PASSED] 15 VFs
[15:52:34] [PASSED] 16 VFs
[15:52:34] [PASSED] 17 VFs
[15:52:34] [PASSED] 18 VFs
[15:52:34] [PASSED] 19 VFs
[15:52:34] [PASSED] 20 VFs
[15:52:34] [PASSED] 21 VFs
[15:52:34] [PASSED] 22 VFs
[15:52:34] [PASSED] 23 VFs
[15:52:34] [PASSED] 24 VFs
[15:52:34] [PASSED] 25 VFs
[15:52:34] [PASSED] 26 VFs
[15:52:34] [PASSED] 27 VFs
[15:52:34] [PASSED] 28 VFs
[15:52:34] [PASSED] 29 VFs
[15:52:34] [PASSED] 30 VFs
[15:52:34] [PASSED] 31 VFs
[15:52:34] [PASSED] 32 VFs
[15:52:34] [PASSED] 33 VFs
[15:52:34] [PASSED] 34 VFs
[15:52:34] [PASSED] 35 VFs
[15:52:34] [PASSED] 36 VFs
[15:52:34] [PASSED] 37 VFs
[15:52:34] [PASSED] 38 VFs
[15:52:34] [PASSED] 39 VFs
[15:52:34] [PASSED] 40 VFs
[15:52:34] [PASSED] 41 VFs
[15:52:34] [PASSED] 42 VFs
[15:52:34] [PASSED] 43 VFs
[15:52:34] [PASSED] 44 VFs
[15:52:34] [PASSED] 45 VFs
[15:52:34] [PASSED] 46 VFs
[15:52:34] [PASSED] 47 VFs
[15:52:34] [PASSED] 48 VFs
[15:52:34] [PASSED] 49 VFs
[15:52:34] [PASSED] 50 VFs
[15:52:34] [PASSED] 51 VFs
[15:52:34] [PASSED] 52 VFs
[15:52:34] [PASSED] 53 VFs
[15:52:34] [PASSED] 54 VFs
[15:52:34] [PASSED] 55 VFs
[15:52:34] [PASSED] 56 VFs
[15:52:34] [PASSED] 57 VFs
[15:52:34] [PASSED] 58 VFs
[15:52:34] [PASSED] 59 VFs
[15:52:34] [PASSED] 60 VFs
[15:52:34] [PASSED] 61 VFs
[15:52:34] [PASSED] 62 VFs
[15:52:34] [PASSED] 63 VFs
[15:52:34] ================== [PASSED] fair_contexts ==================
[15:52:34] ===================== fair_doorbells ======================
[15:52:34] [PASSED] 1 VF
[15:52:34] [PASSED] 2 VFs
[15:52:34] [PASSED] 3 VFs
[15:52:34] [PASSED] 4 VFs
[15:52:34] [PASSED] 5 VFs
[15:52:34] [PASSED] 6 VFs
[15:52:34] [PASSED] 7 VFs
[15:52:34] [PASSED] 8 VFs
[15:52:34] [PASSED] 9 VFs
[15:52:34] [PASSED] 10 VFs
[15:52:34] [PASSED] 11 VFs
[15:52:34] [PASSED] 12 VFs
[15:52:34] [PASSED] 13 VFs
[15:52:34] [PASSED] 14 VFs
[15:52:34] [PASSED] 15 VFs
[15:52:34] [PASSED] 16 VFs
[15:52:34] [PASSED] 17 VFs
[15:52:34] [PASSED] 18 VFs
[15:52:34] [PASSED] 19 VFs
[15:52:34] [PASSED] 20 VFs
[15:52:34] [PASSED] 21 VFs
[15:52:34] [PASSED] 22 VFs
[15:52:34] [PASSED] 23 VFs
[15:52:34] [PASSED] 24 VFs
[15:52:34] [PASSED] 25 VFs
[15:52:34] [PASSED] 26 VFs
[15:52:34] [PASSED] 27 VFs
[15:52:34] [PASSED] 28 VFs
[15:52:35] [PASSED] 29 VFs
[15:52:35] [PASSED] 30 VFs
[15:52:35] [PASSED] 31 VFs
[15:52:35] [PASSED] 32 VFs
[15:52:35] [PASSED] 33 VFs
[15:52:35] [PASSED] 34 VFs
[15:52:35] [PASSED] 35 VFs
[15:52:35] [PASSED] 36 VFs
[15:52:35] [PASSED] 37 VFs
[15:52:35] [PASSED] 38 VFs
[15:52:35] [PASSED] 39 VFs
[15:52:35] [PASSED] 40 VFs
[15:52:35] [PASSED] 41 VFs
[15:52:35] [PASSED] 42 VFs
[15:52:35] [PASSED] 43 VFs
[15:52:35] [PASSED] 44 VFs
[15:52:35] [PASSED] 45 VFs
[15:52:35] [PASSED] 46 VFs
[15:52:35] [PASSED] 47 VFs
[15:52:35] [PASSED] 48 VFs
[15:52:35] [PASSED] 49 VFs
[15:52:35] [PASSED] 50 VFs
[15:52:35] [PASSED] 51 VFs
[15:52:35] [PASSED] 52 VFs
[15:52:35] [PASSED] 53 VFs
[15:52:35] [PASSED] 54 VFs
[15:52:35] [PASSED] 55 VFs
[15:52:35] [PASSED] 56 VFs
[15:52:35] [PASSED] 57 VFs
[15:52:35] [PASSED] 58 VFs
[15:52:35] [PASSED] 59 VFs
[15:52:35] [PASSED] 60 VFs
[15:52:35] [PASSED] 61 VFs
[15:52:35] [PASSED] 62 VFs
[15:52:35] [PASSED] 63 VFs
[15:52:35] ================= [PASSED] fair_doorbells ==================
[15:52:35] ======================== fair_ggtt ========================
[15:52:35] [PASSED] 1 VF
[15:52:35] [PASSED] 2 VFs
[15:52:35] [PASSED] 3 VFs
[15:52:35] [PASSED] 4 VFs
[15:52:35] [PASSED] 5 VFs
[15:52:35] [PASSED] 6 VFs
[15:52:35] [PASSED] 7 VFs
[15:52:35] [PASSED] 8 VFs
[15:52:35] [PASSED] 9 VFs
[15:52:35] [PASSED] 10 VFs
[15:52:35] [PASSED] 11 VFs
[15:52:35] [PASSED] 12 VFs
[15:52:35] [PASSED] 13 VFs
[15:52:35] [PASSED] 14 VFs
[15:52:35] [PASSED] 15 VFs
[15:52:35] [PASSED] 16 VFs
[15:52:35] [PASSED] 17 VFs
[15:52:35] [PASSED] 18 VFs
[15:52:35] [PASSED] 19 VFs
[15:52:35] [PASSED] 20 VFs
[15:52:35] [PASSED] 21 VFs
[15:52:35] [PASSED] 22 VFs
[15:52:35] [PASSED] 23 VFs
[15:52:35] [PASSED] 24 VFs
[15:52:35] [PASSED] 25 VFs
[15:52:35] [PASSED] 26 VFs
[15:52:35] [PASSED] 27 VFs
[15:52:35] [PASSED] 28 VFs
[15:52:35] [PASSED] 29 VFs
[15:52:35] [PASSED] 30 VFs
[15:52:35] [PASSED] 31 VFs
[15:52:35] [PASSED] 32 VFs
[15:52:35] [PASSED] 33 VFs
[15:52:35] [PASSED] 34 VFs
[15:52:35] [PASSED] 35 VFs
[15:52:35] [PASSED] 36 VFs
[15:52:35] [PASSED] 37 VFs
[15:52:35] [PASSED] 38 VFs
[15:52:35] [PASSED] 39 VFs
[15:52:35] [PASSED] 40 VFs
[15:52:35] [PASSED] 41 VFs
[15:52:35] [PASSED] 42 VFs
[15:52:35] [PASSED] 43 VFs
[15:52:35] [PASSED] 44 VFs
[15:52:35] [PASSED] 45 VFs
[15:52:35] [PASSED] 46 VFs
[15:52:35] [PASSED] 47 VFs
[15:52:35] [PASSED] 48 VFs
[15:52:35] [PASSED] 49 VFs
[15:52:35] [PASSED] 50 VFs
[15:52:35] [PASSED] 51 VFs
[15:52:35] [PASSED] 52 VFs
[15:52:35] [PASSED] 53 VFs
[15:52:35] [PASSED] 54 VFs
[15:52:35] [PASSED] 55 VFs
[15:52:35] [PASSED] 56 VFs
[15:52:35] [PASSED] 57 VFs
[15:52:35] [PASSED] 58 VFs
[15:52:35] [PASSED] 59 VFs
[15:52:35] [PASSED] 60 VFs
[15:52:35] [PASSED] 61 VFs
[15:52:35] [PASSED] 62 VFs
[15:52:35] [PASSED] 63 VFs
[15:52:35] ==================== [PASSED] fair_ggtt ====================
[15:52:35] ======================== fair_vram ========================
[15:52:35] [PASSED] 1 VF
[15:52:35] [PASSED] 2 VFs
[15:52:35] [PASSED] 3 VFs
[15:52:35] [PASSED] 4 VFs
[15:52:35] [PASSED] 5 VFs
[15:52:35] [PASSED] 6 VFs
[15:52:35] [PASSED] 7 VFs
[15:52:35] [PASSED] 8 VFs
[15:52:35] [PASSED] 9 VFs
[15:52:35] [PASSED] 10 VFs
[15:52:35] [PASSED] 11 VFs
[15:52:35] [PASSED] 12 VFs
[15:52:35] [PASSED] 13 VFs
[15:52:35] [PASSED] 14 VFs
[15:52:35] [PASSED] 15 VFs
[15:52:35] [PASSED] 16 VFs
[15:52:35] [PASSED] 17 VFs
[15:52:35] [PASSED] 18 VFs
[15:52:35] [PASSED] 19 VFs
[15:52:35] [PASSED] 20 VFs
[15:52:35] [PASSED] 21 VFs
[15:52:35] [PASSED] 22 VFs
[15:52:35] [PASSED] 23 VFs
[15:52:35] [PASSED] 24 VFs
[15:52:35] [PASSED] 25 VFs
[15:52:35] [PASSED] 26 VFs
[15:52:35] [PASSED] 27 VFs
[15:52:35] [PASSED] 28 VFs
[15:52:35] [PASSED] 29 VFs
[15:52:35] [PASSED] 30 VFs
[15:52:35] [PASSED] 31 VFs
[15:52:35] [PASSED] 32 VFs
[15:52:35] [PASSED] 33 VFs
[15:52:35] [PASSED] 34 VFs
[15:52:35] [PASSED] 35 VFs
[15:52:35] [PASSED] 36 VFs
[15:52:35] [PASSED] 37 VFs
[15:52:35] [PASSED] 38 VFs
[15:52:35] [PASSED] 39 VFs
[15:52:35] [PASSED] 40 VFs
[15:52:35] [PASSED] 41 VFs
[15:52:35] [PASSED] 42 VFs
[15:52:35] [PASSED] 43 VFs
[15:52:35] [PASSED] 44 VFs
[15:52:35] [PASSED] 45 VFs
[15:52:35] [PASSED] 46 VFs
[15:52:35] [PASSED] 47 VFs
[15:52:35] [PASSED] 48 VFs
[15:52:35] [PASSED] 49 VFs
[15:52:35] [PASSED] 50 VFs
[15:52:35] [PASSED] 51 VFs
[15:52:35] [PASSED] 52 VFs
[15:52:35] [PASSED] 53 VFs
[15:52:35] [PASSED] 54 VFs
[15:52:35] [PASSED] 55 VFs
[15:52:35] [PASSED] 56 VFs
[15:52:35] [PASSED] 57 VFs
[15:52:35] [PASSED] 58 VFs
[15:52:35] [PASSED] 59 VFs
[15:52:35] [PASSED] 60 VFs
[15:52:35] [PASSED] 61 VFs
[15:52:35] [PASSED] 62 VFs
[15:52:35] [PASSED] 63 VFs
[15:52:35] ==================== [PASSED] fair_vram ====================
[15:52:35] ================== [PASSED] pf_gt_config ===================
[15:52:35] ===================== lmtt (1 subtest) =====================
[15:52:35] ======================== test_ops =========================
[15:52:35] [PASSED] 2-level
[15:52:35] [PASSED] multi-level
[15:52:35] ==================== [PASSED] test_ops =====================
[15:52:35] ====================== [PASSED] lmtt =======================
[15:52:35] ================= pf_service (11 subtests) =================
[15:52:35] [PASSED] pf_negotiate_any
[15:52:35] [PASSED] pf_negotiate_base_match
[15:52:35] [PASSED] pf_negotiate_base_newer
[15:52:35] [PASSED] pf_negotiate_base_next
[15:52:35] [SKIPPED] pf_negotiate_base_older
[15:52:35] [PASSED] pf_negotiate_base_prev
[15:52:35] [PASSED] pf_negotiate_latest_match
[15:52:35] [PASSED] pf_negotiate_latest_newer
[15:52:35] [PASSED] pf_negotiate_latest_next
[15:52:35] [SKIPPED] pf_negotiate_latest_older
[15:52:35] [SKIPPED] pf_negotiate_latest_prev
[15:52:35] =================== [PASSED] pf_service ====================
[15:52:35] ================= xe_guc_g2g (2 subtests) ==================
[15:52:35] ============== xe_live_guc_g2g_kunit_default ==============
[15:52:35] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[15:52:35] ============== xe_live_guc_g2g_kunit_allmem ===============
[15:52:35] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[15:52:35] =================== [SKIPPED] xe_guc_g2g ===================
[15:52:35] =================== xe_mocs (2 subtests) ===================
[15:52:35] ================ xe_live_mocs_kernel_kunit ================
[15:52:35] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:52:35] ================ xe_live_mocs_reset_kunit =================
[15:52:35] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:52:35] ==================== [SKIPPED] xe_mocs =====================
[15:52:35] ================= xe_migrate (2 subtests) ==================
[15:52:35] ================= xe_migrate_sanity_kunit =================
[15:52:35] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:52:35] ================== xe_validate_ccs_kunit ==================
[15:52:35] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:52:35] =================== [SKIPPED] xe_migrate ===================
[15:52:35] ================== xe_dma_buf (1 subtest) ==================
[15:52:35] ==================== xe_dma_buf_kunit =====================
[15:52:35] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:52:35] =================== [SKIPPED] xe_dma_buf ===================
[15:52:35] ================= xe_bo_shrink (1 subtest) =================
[15:52:35] =================== xe_bo_shrink_kunit ====================
[15:52:35] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:52:35] ================== [SKIPPED] xe_bo_shrink ==================
[15:52:35] ==================== xe_bo (2 subtests) ====================
[15:52:35] ================== xe_ccs_migrate_kunit ===================
[15:52:35] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:52:35] ==================== xe_bo_evict_kunit ====================
[15:52:35] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:52:35] ===================== [SKIPPED] xe_bo ======================
[15:52:35] ==================== args (13 subtests) ====================
[15:52:35] [PASSED] count_args_test
[15:52:35] [PASSED] call_args_example
[15:52:35] [PASSED] call_args_test
[15:52:35] [PASSED] drop_first_arg_example
[15:52:35] [PASSED] drop_first_arg_test
[15:52:35] [PASSED] first_arg_example
[15:52:35] [PASSED] first_arg_test
[15:52:35] [PASSED] last_arg_example
[15:52:35] [PASSED] last_arg_test
[15:52:35] [PASSED] pick_arg_example
[15:52:35] [PASSED] if_args_example
[15:52:35] [PASSED] if_args_test
[15:52:35] [PASSED] sep_comma_example
[15:52:35] ====================== [PASSED] args =======================
[15:52:35] =================== xe_pci (3 subtests) ====================
[15:52:35] ==================== check_graphics_ip ====================
[15:52:35] [PASSED] 12.00 Xe_LP
[15:52:35] [PASSED] 12.10 Xe_LP+
[15:52:35] [PASSED] 12.55 Xe_HPG
[15:52:35] [PASSED] 12.60 Xe_HPC
[15:52:35] [PASSED] 12.70 Xe_LPG
[15:52:35] [PASSED] 12.71 Xe_LPG
[15:52:35] [PASSED] 12.74 Xe_LPG+
[15:52:35] [PASSED] 20.01 Xe2_HPG
[15:52:35] [PASSED] 20.02 Xe2_HPG
[15:52:35] [PASSED] 20.04 Xe2_LPG
[15:52:35] [PASSED] 30.00 Xe3_LPG
[15:52:35] [PASSED] 30.01 Xe3_LPG
[15:52:35] [PASSED] 30.03 Xe3_LPG
[15:52:35] [PASSED] 30.04 Xe3_LPG
[15:52:35] [PASSED] 30.05 Xe3_LPG
[15:52:35] [PASSED] 35.10 Xe3p_LPG
[15:52:35] [PASSED] 35.11 Xe3p_XPC
[15:52:35] ================ [PASSED] check_graphics_ip ================
[15:52:35] ===================== check_media_ip ======================
[15:52:35] [PASSED] 12.00 Xe_M
[15:52:35] [PASSED] 12.55 Xe_HPM
[15:52:35] [PASSED] 13.00 Xe_LPM+
[15:52:35] [PASSED] 13.01 Xe2_HPM
[15:52:35] [PASSED] 20.00 Xe2_LPM
[15:52:35] [PASSED] 30.00 Xe3_LPM
[15:52:35] [PASSED] 30.02 Xe3_LPM
[15:52:35] [PASSED] 35.00 Xe3p_LPM
[15:52:35] [PASSED] 35.03 Xe3p_HPM
[15:52:35] ================= [PASSED] check_media_ip ==================
[15:52:35] =================== check_platform_desc ===================
[15:52:35] [PASSED] 0x9A60 (TIGERLAKE)
[15:52:35] [PASSED] 0x9A68 (TIGERLAKE)
[15:52:35] [PASSED] 0x9A70 (TIGERLAKE)
[15:52:35] [PASSED] 0x9A40 (TIGERLAKE)
[15:52:35] [PASSED] 0x9A49 (TIGERLAKE)
[15:52:35] [PASSED] 0x9A59 (TIGERLAKE)
[15:52:35] [PASSED] 0x9A78 (TIGERLAKE)
[15:52:35] [PASSED] 0x9AC0 (TIGERLAKE)
[15:52:35] [PASSED] 0x9AC9 (TIGERLAKE)
[15:52:35] [PASSED] 0x9AD9 (TIGERLAKE)
[15:52:35] [PASSED] 0x9AF8 (TIGERLAKE)
[15:52:35] [PASSED] 0x4C80 (ROCKETLAKE)
[15:52:35] [PASSED] 0x4C8A (ROCKETLAKE)
[15:52:35] [PASSED] 0x4C8B (ROCKETLAKE)
[15:52:35] [PASSED] 0x4C8C (ROCKETLAKE)
[15:52:35] [PASSED] 0x4C90 (ROCKETLAKE)
[15:52:35] [PASSED] 0x4C9A (ROCKETLAKE)
[15:52:35] [PASSED] 0x4680 (ALDERLAKE_S)
[15:52:35] [PASSED] 0x4682 (ALDERLAKE_S)
[15:52:35] [PASSED] 0x4688 (ALDERLAKE_S)
[15:52:35] [PASSED] 0x468A (ALDERLAKE_S)
[15:52:35] [PASSED] 0x468B (ALDERLAKE_S)
[15:52:35] [PASSED] 0x4690 (ALDERLAKE_S)
[15:52:35] [PASSED] 0x4692 (ALDERLAKE_S)
[15:52:35] [PASSED] 0x4693 (ALDERLAKE_S)
[15:52:35] [PASSED] 0x46A0 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46A1 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46A2 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46A3 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46A6 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46A8 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46AA (ALDERLAKE_P)
[15:52:35] [PASSED] 0x462A (ALDERLAKE_P)
[15:52:35] [PASSED] 0x4626 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x4628 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46B0 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46B1 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46B2 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46B3 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46C0 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46C1 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46C2 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46C3 (ALDERLAKE_P)
[15:52:35] [PASSED] 0x46D0 (ALDERLAKE_N)
[15:52:35] [PASSED] 0x46D1 (ALDERLAKE_N)
[15:52:35] [PASSED] 0x46D2 (ALDERLAKE_N)
[15:52:35] [PASSED] 0x46D3 (ALDERLAKE_N)
[15:52:35] [PASSED] 0x46D4 (ALDERLAKE_N)
[15:52:35] [PASSED] 0xA721 (ALDERLAKE_P)
[15:52:35] [PASSED] 0xA7A1 (ALDERLAKE_P)
[15:52:35] [PASSED] 0xA7A9 (ALDERLAKE_P)
[15:52:35] [PASSED] 0xA7AC (ALDERLAKE_P)
[15:52:35] [PASSED] 0xA7AD (ALDERLAKE_P)
[15:52:35] [PASSED] 0xA720 (ALDERLAKE_P)
[15:52:35] [PASSED] 0xA7A0 (ALDERLAKE_P)
[15:52:35] [PASSED] 0xA7A8 (ALDERLAKE_P)
[15:52:35] [PASSED] 0xA7AA (ALDERLAKE_P)
[15:52:35] [PASSED] 0xA7AB (ALDERLAKE_P)
[15:52:35] [PASSED] 0xA780 (ALDERLAKE_S)
[15:52:35] [PASSED] 0xA781 (ALDERLAKE_S)
[15:52:35] [PASSED] 0xA782 (ALDERLAKE_S)
[15:52:35] [PASSED] 0xA783 (ALDERLAKE_S)
[15:52:35] [PASSED] 0xA788 (ALDERLAKE_S)
[15:52:35] [PASSED] 0xA789 (ALDERLAKE_S)
[15:52:35] [PASSED] 0xA78A (ALDERLAKE_S)
[15:52:35] [PASSED] 0xA78B (ALDERLAKE_S)
[15:52:35] [PASSED] 0x4905 (DG1)
[15:52:35] [PASSED] 0x4906 (DG1)
[15:52:35] [PASSED] 0x4907 (DG1)
[15:52:35] [PASSED] 0x4908 (DG1)
[15:52:35] [PASSED] 0x4909 (DG1)
[15:52:35] [PASSED] 0x56C0 (DG2)
[15:52:35] [PASSED] 0x56C2 (DG2)
[15:52:35] [PASSED] 0x56C1 (DG2)
[15:52:35] [PASSED] 0x7D51 (METEORLAKE)
[15:52:35] [PASSED] 0x7DD1 (METEORLAKE)
[15:52:35] [PASSED] 0x7D41 (METEORLAKE)
[15:52:35] [PASSED] 0x7D67 (METEORLAKE)
[15:52:35] [PASSED] 0xB640 (METEORLAKE)
[15:52:35] [PASSED] 0x56A0 (DG2)
[15:52:35] [PASSED] 0x56A1 (DG2)
[15:52:35] [PASSED] 0x56A2 (DG2)
[15:52:35] [PASSED] 0x56BE (DG2)
[15:52:35] [PASSED] 0x56BF (DG2)
[15:52:35] [PASSED] 0x5690 (DG2)
[15:52:35] [PASSED] 0x5691 (DG2)
[15:52:35] [PASSED] 0x5692 (DG2)
[15:52:35] [PASSED] 0x56A5 (DG2)
[15:52:35] [PASSED] 0x56A6 (DG2)
[15:52:35] [PASSED] 0x56B0 (DG2)
[15:52:35] [PASSED] 0x56B1 (DG2)
[15:52:35] [PASSED] 0x56BA (DG2)
[15:52:35] [PASSED] 0x56BB (DG2)
[15:52:35] [PASSED] 0x56BC (DG2)
[15:52:35] [PASSED] 0x56BD (DG2)
[15:52:35] [PASSED] 0x5693 (DG2)
[15:52:35] [PASSED] 0x5694 (DG2)
[15:52:35] [PASSED] 0x5695 (DG2)
[15:52:35] [PASSED] 0x56A3 (DG2)
[15:52:35] [PASSED] 0x56A4 (DG2)
[15:52:35] [PASSED] 0x56B2 (DG2)
[15:52:35] [PASSED] 0x56B3 (DG2)
[15:52:35] [PASSED] 0x5696 (DG2)
[15:52:35] [PASSED] 0x5697 (DG2)
[15:52:35] [PASSED] 0xB69 (PVC)
[15:52:35] [PASSED] 0xB6E (PVC)
[15:52:35] [PASSED] 0xBD4 (PVC)
[15:52:35] [PASSED] 0xBD5 (PVC)
[15:52:35] [PASSED] 0xBD6 (PVC)
[15:52:35] [PASSED] 0xBD7 (PVC)
[15:52:35] [PASSED] 0xBD8 (PVC)
[15:52:35] [PASSED] 0xBD9 (PVC)
[15:52:35] [PASSED] 0xBDA (PVC)
[15:52:35] [PASSED] 0xBDB (PVC)
[15:52:35] [PASSED] 0xBE0 (PVC)
[15:52:35] [PASSED] 0xBE1 (PVC)
[15:52:35] [PASSED] 0xBE5 (PVC)
[15:52:35] [PASSED] 0x7D40 (METEORLAKE)
[15:52:35] [PASSED] 0x7D45 (METEORLAKE)
[15:52:35] [PASSED] 0x7D55 (METEORLAKE)
[15:52:35] [PASSED] 0x7D60 (METEORLAKE)
[15:52:35] [PASSED] 0x7DD5 (METEORLAKE)
[15:52:35] [PASSED] 0x6420 (LUNARLAKE)
[15:52:35] [PASSED] 0x64A0 (LUNARLAKE)
[15:52:35] [PASSED] 0x64B0 (LUNARLAKE)
[15:52:35] [PASSED] 0xE202 (BATTLEMAGE)
[15:52:35] [PASSED] 0xE209 (BATTLEMAGE)
[15:52:35] [PASSED] 0xE20B (BATTLEMAGE)
[15:52:35] [PASSED] 0xE20C (BATTLEMAGE)
[15:52:35] [PASSED] 0xE20D (BATTLEMAGE)
[15:52:35] [PASSED] 0xE210 (BATTLEMAGE)
[15:52:35] [PASSED] 0xE211 (BATTLEMAGE)
[15:52:35] [PASSED] 0xE212 (BATTLEMAGE)
[15:52:35] [PASSED] 0xE216 (BATTLEMAGE)
[15:52:35] [PASSED] 0xE220 (BATTLEMAGE)
[15:52:35] [PASSED] 0xE221 (BATTLEMAGE)
[15:52:35] [PASSED] 0xE222 (BATTLEMAGE)
[15:52:35] [PASSED] 0xE223 (BATTLEMAGE)
[15:52:35] [PASSED] 0xB080 (PANTHERLAKE)
[15:52:35] [PASSED] 0xB081 (PANTHERLAKE)
[15:52:35] [PASSED] 0xB082 (PANTHERLAKE)
[15:52:35] [PASSED] 0xB083 (PANTHERLAKE)
[15:52:35] [PASSED] 0xB084 (PANTHERLAKE)
[15:52:35] [PASSED] 0xB085 (PANTHERLAKE)
[15:52:35] [PASSED] 0xB086 (PANTHERLAKE)
[15:52:35] [PASSED] 0xB087 (PANTHERLAKE)
[15:52:35] [PASSED] 0xB08F (PANTHERLAKE)
[15:52:35] [PASSED] 0xB090 (PANTHERLAKE)
[15:52:35] [PASSED] 0xB0A0 (PANTHERLAKE)
[15:52:35] [PASSED] 0xB0B0 (PANTHERLAKE)
[15:52:35] [PASSED] 0xFD80 (PANTHERLAKE)
[15:52:35] [PASSED] 0xFD81 (PANTHERLAKE)
[15:52:35] [PASSED] 0xD740 (NOVALAKE_S)
[15:52:35] [PASSED] 0xD741 (NOVALAKE_S)
[15:52:35] [PASSED] 0xD742 (NOVALAKE_S)
[15:52:35] [PASSED] 0xD743 (NOVALAKE_S)
[15:52:35] [PASSED] 0xD744 (NOVALAKE_S)
[15:52:35] [PASSED] 0xD745 (NOVALAKE_S)
[15:52:35] [PASSED] 0x674C (CRESCENTISLAND)
[15:52:35] [PASSED] 0x674D (CRESCENTISLAND)
[15:52:35] [PASSED] 0x674E (CRESCENTISLAND)
[15:52:35] [PASSED] 0x674F (CRESCENTISLAND)
[15:52:35] [PASSED] 0x6750 (CRESCENTISLAND)
[15:52:35] [PASSED] 0xD750 (NOVALAKE_P)
[15:52:35] [PASSED] 0xD751 (NOVALAKE_P)
[15:52:35] [PASSED] 0xD752 (NOVALAKE_P)
[15:52:35] [PASSED] 0xD753 (NOVALAKE_P)
[15:52:35] [PASSED] 0xD754 (NOVALAKE_P)
[15:52:35] [PASSED] 0xD755 (NOVALAKE_P)
[15:52:35] [PASSED] 0xD756 (NOVALAKE_P)
[15:52:35] [PASSED] 0xD757 (NOVALAKE_P)
[15:52:35] [PASSED] 0xD75F (NOVALAKE_P)
[15:52:35] =============== [PASSED] check_platform_desc ===============
[15:52:35] ===================== [PASSED] xe_pci ======================
[15:52:35] =================== xe_rtp (2 subtests) ====================
[15:52:35] =============== xe_rtp_process_to_sr_tests ================
[15:52:35] [PASSED] coalesce-same-reg
[15:52:35] [PASSED] no-match-no-add
[15:52:35] [PASSED] match-or
[15:52:35] [PASSED] match-or-xfail
[15:52:35] [PASSED] no-match-no-add-multiple-rules
[15:52:35] [PASSED] two-regs-two-entries
[15:52:35] [PASSED] clr-one-set-other
[15:52:35] [PASSED] set-field
[15:52:35] [PASSED] conflict-duplicate
[15:52:35] [PASSED] conflict-not-disjoint
[15:52:35] [PASSED] conflict-reg-type
[15:52:35] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:52:35] ================== xe_rtp_process_tests ===================
[15:52:35] [PASSED] active1
[15:52:35] [PASSED] active2
[15:52:35] [PASSED] active-inactive
[15:52:35] [PASSED] inactive-active
[15:52:35] [PASSED] inactive-1st_or_active-inactive
[15:52:35] [PASSED] inactive-2nd_or_active-inactive
[15:52:35] [PASSED] inactive-last_or_active-inactive
[15:52:35] [PASSED] inactive-no_or_active-inactive
[15:52:35] ============== [PASSED] xe_rtp_process_tests ===============
[15:52:35] ===================== [PASSED] xe_rtp ======================
[15:52:35] ==================== xe_wa (1 subtest) =====================
[15:52:35] ======================== xe_wa_gt =========================
[15:52:35] [PASSED] TIGERLAKE B0
[15:52:35] [PASSED] DG1 A0
[15:52:35] [PASSED] DG1 B0
[15:52:35] [PASSED] ALDERLAKE_S A0
[15:52:35] [PASSED] ALDERLAKE_S B0
[15:52:35] [PASSED] ALDERLAKE_S C0
[15:52:35] [PASSED] ALDERLAKE_S D0
[15:52:35] [PASSED] ALDERLAKE_P A0
[15:52:35] [PASSED] ALDERLAKE_P B0
[15:52:35] [PASSED] ALDERLAKE_P C0
[15:52:35] [PASSED] ALDERLAKE_S RPLS D0
[15:52:35] [PASSED] ALDERLAKE_P RPLU E0
[15:52:35] [PASSED] DG2 G10 C0
[15:52:35] [PASSED] DG2 G11 B1
[15:52:35] [PASSED] DG2 G12 A1
[15:52:35] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:52:35] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:52:35] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[15:52:35] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[15:52:35] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[15:52:35] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[15:52:35] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[15:52:35] ==================== [PASSED] xe_wa_gt =====================
[15:52:35] ====================== [PASSED] xe_wa ======================
[15:52:35] ============================================================
[15:52:35] Testing complete. Ran 601 tests: passed: 583, skipped: 18
[15:52:35] Elapsed time: 36.100s total, 4.330s configuring, 31.154s building, 0.606s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[15:52:35] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:52:37] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[15:53:01] Starting KUnit Kernel (1/1)...
[15:53:01] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:53:01] ============ drm_test_pick_cmdline (2 subtests) ============
[15:53:01] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[15:53:01] =============== drm_test_pick_cmdline_named ===============
[15:53:01] [PASSED] NTSC
[15:53:01] [PASSED] NTSC-J
[15:53:01] [PASSED] PAL
[15:53:01] [PASSED] PAL-M
[15:53:01] =========== [PASSED] drm_test_pick_cmdline_named ===========
[15:53:01] ============== [PASSED] drm_test_pick_cmdline ==============
[15:53:01] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[15:53:01] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[15:53:01] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[15:53:01] =========== drm_validate_clone_mode (2 subtests) ===========
[15:53:01] ============== drm_test_check_in_clone_mode ===============
[15:53:01] [PASSED] in_clone_mode
[15:53:01] [PASSED] not_in_clone_mode
[15:53:01] ========== [PASSED] drm_test_check_in_clone_mode ===========
[15:53:01] =============== drm_test_check_valid_clones ===============
[15:53:01] [PASSED] not_in_clone_mode
[15:53:01] [PASSED] valid_clone
[15:53:01] [PASSED] invalid_clone
[15:53:01] =========== [PASSED] drm_test_check_valid_clones ===========
[15:53:01] ============= [PASSED] drm_validate_clone_mode =============
[15:53:01] ============= drm_validate_modeset (1 subtest) =============
[15:53:01] [PASSED] drm_test_check_connector_changed_modeset
[15:53:01] ============== [PASSED] drm_validate_modeset ===============
[15:53:01] ====== drm_test_bridge_get_current_state (2 subtests) ======
[15:53:01] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[15:53:01] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[15:53:01] ======== [PASSED] drm_test_bridge_get_current_state ========
[15:53:01] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[15:53:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[15:53:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[15:53:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[15:53:01] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[15:53:01] ============== drm_bridge_alloc (2 subtests) ===============
[15:53:01] [PASSED] drm_test_drm_bridge_alloc_basic
[15:53:01] [PASSED] drm_test_drm_bridge_alloc_get_put
[15:53:01] ================ [PASSED] drm_bridge_alloc =================
[15:53:01] ============= drm_cmdline_parser (40 subtests) =============
[15:53:01] [PASSED] drm_test_cmdline_force_d_only
[15:53:01] [PASSED] drm_test_cmdline_force_D_only_dvi
[15:53:01] [PASSED] drm_test_cmdline_force_D_only_hdmi
[15:53:01] [PASSED] drm_test_cmdline_force_D_only_not_digital
[15:53:01] [PASSED] drm_test_cmdline_force_e_only
[15:53:01] [PASSED] drm_test_cmdline_res
[15:53:01] [PASSED] drm_test_cmdline_res_vesa
[15:53:01] [PASSED] drm_test_cmdline_res_vesa_rblank
[15:53:01] [PASSED] drm_test_cmdline_res_rblank
[15:53:01] [PASSED] drm_test_cmdline_res_bpp
[15:53:01] [PASSED] drm_test_cmdline_res_refresh
[15:53:01] [PASSED] drm_test_cmdline_res_bpp_refresh
[15:53:01] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[15:53:01] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[15:53:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[15:53:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[15:53:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[15:53:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[15:53:01] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[15:53:01] [PASSED] drm_test_cmdline_res_margins_force_on
[15:53:01] [PASSED] drm_test_cmdline_res_vesa_margins
[15:53:01] [PASSED] drm_test_cmdline_name
[15:53:01] [PASSED] drm_test_cmdline_name_bpp
[15:53:01] [PASSED] drm_test_cmdline_name_option
[15:53:01] [PASSED] drm_test_cmdline_name_bpp_option
[15:53:01] [PASSED] drm_test_cmdline_rotate_0
[15:53:01] [PASSED] drm_test_cmdline_rotate_90
[15:53:01] [PASSED] drm_test_cmdline_rotate_180
[15:53:01] [PASSED] drm_test_cmdline_rotate_270
[15:53:01] [PASSED] drm_test_cmdline_hmirror
[15:53:01] [PASSED] drm_test_cmdline_vmirror
[15:53:01] [PASSED] drm_test_cmdline_margin_options
[15:53:01] [PASSED] drm_test_cmdline_multiple_options
[15:53:01] [PASSED] drm_test_cmdline_bpp_extra_and_option
[15:53:01] [PASSED] drm_test_cmdline_extra_and_option
[15:53:01] [PASSED] drm_test_cmdline_freestanding_options
[15:53:01] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[15:53:01] [PASSED] drm_test_cmdline_panel_orientation
[15:53:01] ================ drm_test_cmdline_invalid =================
[15:53:01] [PASSED] margin_only
[15:53:01] [PASSED] interlace_only
[15:53:01] [PASSED] res_missing_x
[15:53:01] [PASSED] res_missing_y
[15:53:01] [PASSED] res_bad_y
[15:53:01] [PASSED] res_missing_y_bpp
[15:53:01] [PASSED] res_bad_bpp
[15:53:01] [PASSED] res_bad_refresh
[15:53:01] [PASSED] res_bpp_refresh_force_on_off
[15:53:01] [PASSED] res_invalid_mode
[15:53:01] [PASSED] res_bpp_wrong_place_mode
[15:53:01] [PASSED] name_bpp_refresh
[15:53:01] [PASSED] name_refresh
[15:53:01] [PASSED] name_refresh_wrong_mode
[15:53:01] [PASSED] name_refresh_invalid_mode
[15:53:01] [PASSED] rotate_multiple
[15:53:01] [PASSED] rotate_invalid_val
[15:53:01] [PASSED] rotate_truncated
[15:53:01] [PASSED] invalid_option
[15:53:01] [PASSED] invalid_tv_option
[15:53:01] [PASSED] truncated_tv_option
[15:53:01] ============ [PASSED] drm_test_cmdline_invalid =============
[15:53:01] =============== drm_test_cmdline_tv_options ===============
[15:53:01] [PASSED] NTSC
[15:53:01] [PASSED] NTSC_443
[15:53:01] [PASSED] NTSC_J
[15:53:01] [PASSED] PAL
[15:53:01] [PASSED] PAL_M
[15:53:01] [PASSED] PAL_N
[15:53:01] [PASSED] SECAM
[15:53:01] [PASSED] MONO_525
[15:53:01] [PASSED] MONO_625
[15:53:01] =========== [PASSED] drm_test_cmdline_tv_options ===========
[15:53:01] =============== [PASSED] drm_cmdline_parser ================
[15:53:01] ========== drmm_connector_hdmi_init (20 subtests) ==========
[15:53:01] [PASSED] drm_test_connector_hdmi_init_valid
[15:53:01] [PASSED] drm_test_connector_hdmi_init_bpc_8
[15:53:01] [PASSED] drm_test_connector_hdmi_init_bpc_10
[15:53:01] [PASSED] drm_test_connector_hdmi_init_bpc_12
[15:53:01] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[15:53:01] [PASSED] drm_test_connector_hdmi_init_bpc_null
[15:53:01] [PASSED] drm_test_connector_hdmi_init_formats_empty
[15:53:01] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[15:53:01] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:53:01] [PASSED] supported_formats=0x9 yuv420_allowed=1
[15:53:01] [PASSED] supported_formats=0x9 yuv420_allowed=0
[15:53:01] [PASSED] supported_formats=0x5 yuv420_allowed=1
[15:53:01] [PASSED] supported_formats=0x5 yuv420_allowed=0
[15:53:01] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:53:01] [PASSED] drm_test_connector_hdmi_init_null_ddc
[15:53:01] [PASSED] drm_test_connector_hdmi_init_null_product
[15:53:01] [PASSED] drm_test_connector_hdmi_init_null_vendor
[15:53:01] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[15:53:01] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[15:53:01] [PASSED] drm_test_connector_hdmi_init_product_valid
[15:53:01] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[15:53:01] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[15:53:01] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[15:53:01] ========= drm_test_connector_hdmi_init_type_valid =========
[15:53:01] [PASSED] HDMI-A
[15:53:01] [PASSED] HDMI-B
[15:53:01] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[15:53:01] ======== drm_test_connector_hdmi_init_type_invalid ========
[15:53:01] [PASSED] Unknown
[15:53:01] [PASSED] VGA
[15:53:01] [PASSED] DVI-I
[15:53:01] [PASSED] DVI-D
[15:53:01] [PASSED] DVI-A
[15:53:01] [PASSED] Composite
[15:53:01] [PASSED] SVIDEO
[15:53:01] [PASSED] LVDS
[15:53:01] [PASSED] Component
[15:53:01] [PASSED] DIN
[15:53:01] [PASSED] DP
[15:53:01] [PASSED] TV
[15:53:01] [PASSED] eDP
[15:53:01] [PASSED] Virtual
[15:53:01] [PASSED] DSI
[15:53:01] [PASSED] DPI
[15:53:01] [PASSED] Writeback
[15:53:01] [PASSED] SPI
[15:53:01] [PASSED] USB
[15:53:01] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[15:53:01] ============ [PASSED] drmm_connector_hdmi_init =============
[15:53:01] ============= drmm_connector_init (3 subtests) =============
[15:53:01] [PASSED] drm_test_drmm_connector_init
[15:53:01] [PASSED] drm_test_drmm_connector_init_null_ddc
[15:53:01] ========= drm_test_drmm_connector_init_type_valid =========
[15:53:01] [PASSED] Unknown
[15:53:01] [PASSED] VGA
[15:53:01] [PASSED] DVI-I
[15:53:01] [PASSED] DVI-D
[15:53:01] [PASSED] DVI-A
[15:53:01] [PASSED] Composite
[15:53:01] [PASSED] SVIDEO
[15:53:01] [PASSED] LVDS
[15:53:01] [PASSED] Component
[15:53:01] [PASSED] DIN
[15:53:01] [PASSED] DP
[15:53:01] [PASSED] HDMI-A
[15:53:01] [PASSED] HDMI-B
[15:53:01] [PASSED] TV
[15:53:01] [PASSED] eDP
[15:53:01] [PASSED] Virtual
[15:53:01] [PASSED] DSI
[15:53:01] [PASSED] DPI
[15:53:01] [PASSED] Writeback
[15:53:01] [PASSED] SPI
[15:53:01] [PASSED] USB
[15:53:01] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[15:53:01] =============== [PASSED] drmm_connector_init ===============
[15:53:01] ========= drm_connector_dynamic_init (6 subtests) ==========
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_init
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_init_properties
[15:53:01] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[15:53:01] [PASSED] Unknown
[15:53:01] [PASSED] VGA
[15:53:01] [PASSED] DVI-I
[15:53:01] [PASSED] DVI-D
[15:53:01] [PASSED] DVI-A
[15:53:01] [PASSED] Composite
[15:53:01] [PASSED] SVIDEO
[15:53:01] [PASSED] LVDS
[15:53:01] [PASSED] Component
[15:53:01] [PASSED] DIN
[15:53:01] [PASSED] DP
[15:53:01] [PASSED] HDMI-A
[15:53:01] [PASSED] HDMI-B
[15:53:01] [PASSED] TV
[15:53:01] [PASSED] eDP
[15:53:01] [PASSED] Virtual
[15:53:01] [PASSED] DSI
[15:53:01] [PASSED] DPI
[15:53:01] [PASSED] Writeback
[15:53:01] [PASSED] SPI
[15:53:01] [PASSED] USB
[15:53:01] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[15:53:01] ======== drm_test_drm_connector_dynamic_init_name =========
[15:53:01] [PASSED] Unknown
[15:53:01] [PASSED] VGA
[15:53:01] [PASSED] DVI-I
[15:53:01] [PASSED] DVI-D
[15:53:01] [PASSED] DVI-A
[15:53:01] [PASSED] Composite
[15:53:01] [PASSED] SVIDEO
[15:53:01] [PASSED] LVDS
[15:53:01] [PASSED] Component
[15:53:01] [PASSED] DIN
[15:53:01] [PASSED] DP
[15:53:01] [PASSED] HDMI-A
[15:53:01] [PASSED] HDMI-B
[15:53:01] [PASSED] TV
[15:53:01] [PASSED] eDP
[15:53:01] [PASSED] Virtual
[15:53:01] [PASSED] DSI
[15:53:01] [PASSED] DPI
[15:53:01] [PASSED] Writeback
[15:53:01] [PASSED] SPI
[15:53:01] [PASSED] USB
[15:53:01] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[15:53:01] =========== [PASSED] drm_connector_dynamic_init ============
[15:53:01] ==== drm_connector_dynamic_register_early (4 subtests) =====
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[15:53:01] ====== [PASSED] drm_connector_dynamic_register_early =======
[15:53:01] ======= drm_connector_dynamic_register (7 subtests) ========
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[15:53:01] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[15:53:01] ========= [PASSED] drm_connector_dynamic_register ==========
[15:53:01] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[15:53:01] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[15:53:01] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[15:53:01] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[15:53:01] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[15:53:01] ========== drm_test_get_tv_mode_from_name_valid ===========
[15:53:01] [PASSED] NTSC
[15:53:01] [PASSED] NTSC-443
[15:53:01] [PASSED] NTSC-J
[15:53:01] [PASSED] PAL
[15:53:01] [PASSED] PAL-M
[15:53:01] [PASSED] PAL-N
[15:53:01] [PASSED] SECAM
[15:53:01] [PASSED] Mono
[15:53:01] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[15:53:01] [PASSED] drm_test_get_tv_mode_from_name_truncated
[15:53:01] ============ [PASSED] drm_get_tv_mode_from_name ============
[15:53:01] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[15:53:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[15:53:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[15:53:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[15:53:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[15:53:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[15:53:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[15:53:01] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[15:53:01] [PASSED] VIC 96
[15:53:01] [PASSED] VIC 97
[15:53:01] [PASSED] VIC 101
[15:53:01] [PASSED] VIC 102
[15:53:01] [PASSED] VIC 106
[15:53:01] [PASSED] VIC 107
[15:53:01] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[15:53:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[15:53:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[15:53:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[15:53:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[15:53:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[15:53:01] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[15:53:01] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[15:53:01] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[15:53:01] [PASSED] Automatic
[15:53:01] [PASSED] Full
[15:53:01] [PASSED] Limited 16:235
[15:53:01] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[15:53:01] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[15:53:01] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[15:53:01] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[15:53:01] === drm_test_drm_hdmi_connector_get_output_format_name ====
[15:53:01] [PASSED] RGB
[15:53:01] [PASSED] YUV 4:2:0
[15:53:01] [PASSED] YUV 4:2:2
[15:53:01] [PASSED] YUV 4:4:4
[15:53:01] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[15:53:01] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[15:53:01] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[15:53:01] ============= drm_damage_helper (21 subtests) ==============
[15:53:01] [PASSED] drm_test_damage_iter_no_damage
[15:53:01] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[15:53:01] [PASSED] drm_test_damage_iter_no_damage_src_moved
[15:53:01] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[15:53:01] [PASSED] drm_test_damage_iter_no_damage_not_visible
[15:53:01] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[15:53:01] [PASSED] drm_test_damage_iter_no_damage_no_fb
[15:53:01] [PASSED] drm_test_damage_iter_simple_damage
[15:53:01] [PASSED] drm_test_damage_iter_single_damage
[15:53:01] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[15:53:01] [PASSED] drm_test_damage_iter_single_damage_outside_src
[15:53:01] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[15:53:01] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[15:53:01] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[15:53:01] [PASSED] drm_test_damage_iter_single_damage_src_moved
[15:53:01] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[15:53:01] [PASSED] drm_test_damage_iter_damage
[15:53:01] [PASSED] drm_test_damage_iter_damage_one_intersect
[15:53:01] [PASSED] drm_test_damage_iter_damage_one_outside
[15:53:01] [PASSED] drm_test_damage_iter_damage_src_moved
[15:53:01] [PASSED] drm_test_damage_iter_damage_not_visible
[15:53:01] ================ [PASSED] drm_damage_helper ================
[15:53:01] ============== drm_dp_mst_helper (3 subtests) ==============
[15:53:01] ============== drm_test_dp_mst_calc_pbn_mode ==============
[15:53:01] [PASSED] Clock 154000 BPP 30 DSC disabled
[15:53:01] [PASSED] Clock 234000 BPP 30 DSC disabled
[15:53:01] [PASSED] Clock 297000 BPP 24 DSC disabled
[15:53:01] [PASSED] Clock 332880 BPP 24 DSC enabled
[15:53:01] [PASSED] Clock 324540 BPP 24 DSC enabled
[15:53:01] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[15:53:01] ============== drm_test_dp_mst_calc_pbn_div ===============
[15:53:01] [PASSED] Link rate 2000000 lane count 4
[15:53:01] [PASSED] Link rate 2000000 lane count 2
[15:53:01] [PASSED] Link rate 2000000 lane count 1
[15:53:01] [PASSED] Link rate 1350000 lane count 4
[15:53:01] [PASSED] Link rate 1350000 lane count 2
[15:53:01] [PASSED] Link rate 1350000 lane count 1
[15:53:01] [PASSED] Link rate 1000000 lane count 4
[15:53:01] [PASSED] Link rate 1000000 lane count 2
[15:53:01] [PASSED] Link rate 1000000 lane count 1
[15:53:01] [PASSED] Link rate 810000 lane count 4
[15:53:01] [PASSED] Link rate 810000 lane count 2
[15:53:01] [PASSED] Link rate 810000 lane count 1
[15:53:01] [PASSED] Link rate 540000 lane count 4
[15:53:01] [PASSED] Link rate 540000 lane count 2
[15:53:01] [PASSED] Link rate 540000 lane count 1
[15:53:01] [PASSED] Link rate 270000 lane count 4
[15:53:01] [PASSED] Link rate 270000 lane count 2
[15:53:01] [PASSED] Link rate 270000 lane count 1
[15:53:01] [PASSED] Link rate 162000 lane count 4
[15:53:01] [PASSED] Link rate 162000 lane count 2
[15:53:01] [PASSED] Link rate 162000 lane count 1
[15:53:01] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[15:53:01] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[15:53:01] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[15:53:01] [PASSED] DP_POWER_UP_PHY with port number
[15:53:01] [PASSED] DP_POWER_DOWN_PHY with port number
[15:53:01] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[15:53:01] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[15:53:01] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[15:53:01] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[15:53:01] [PASSED] DP_QUERY_PAYLOAD with port number
[15:53:01] [PASSED] DP_QUERY_PAYLOAD with VCPI
[15:53:01] [PASSED] DP_REMOTE_DPCD_READ with port number
[15:53:01] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[15:53:01] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[15:53:01] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[15:53:01] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[15:53:01] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[15:53:01] [PASSED] DP_REMOTE_I2C_READ with port number
[15:53:01] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[15:53:01] [PASSED] DP_REMOTE_I2C_READ with transactions array
[15:53:01] [PASSED] DP_REMOTE_I2C_WRITE with port number
[15:53:01] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[15:53:01] [PASSED] DP_REMOTE_I2C_WRITE with data array
[15:53:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[15:53:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[15:53:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[15:53:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[15:53:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[15:53:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[15:53:01] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[15:53:01] ================ [PASSED] drm_dp_mst_helper ================
[15:53:01] ================== drm_exec (7 subtests) ===================
[15:53:01] [PASSED] sanitycheck
[15:53:01] [PASSED] test_lock
[15:53:01] [PASSED] test_lock_unlock
[15:53:01] [PASSED] test_duplicates
[15:53:01] [PASSED] test_prepare
[15:53:01] [PASSED] test_prepare_array
[15:53:01] [PASSED] test_multiple_loops
[15:53:01] ==================== [PASSED] drm_exec =====================
[15:53:01] =========== drm_format_helper_test (17 subtests) ===========
[15:53:01] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[15:53:01] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[15:53:01] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[15:53:01] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[15:53:01] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[15:53:01] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[15:53:01] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[15:53:01] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[15:53:01] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[15:53:01] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[15:53:01] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[15:53:01] ============== drm_test_fb_xrgb8888_to_mono ===============
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[15:53:01] ==================== drm_test_fb_swab =====================
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ================ [PASSED] drm_test_fb_swab =================
[15:53:01] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[15:53:01] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[15:53:01] [PASSED] single_pixel_source_buffer
[15:53:01] [PASSED] single_pixel_clip_rectangle
[15:53:01] [PASSED] well_known_colors
[15:53:01] [PASSED] destination_pitch
[15:53:01] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[15:53:01] ================= drm_test_fb_clip_offset =================
[15:53:01] [PASSED] pass through
[15:53:01] [PASSED] horizontal offset
[15:53:01] [PASSED] vertical offset
[15:53:01] [PASSED] horizontal and vertical offset
[15:53:01] [PASSED] horizontal offset (custom pitch)
[15:53:01] [PASSED] vertical offset (custom pitch)
[15:53:01] [PASSED] horizontal and vertical offset (custom pitch)
[15:53:01] ============= [PASSED] drm_test_fb_clip_offset =============
[15:53:01] =================== drm_test_fb_memcpy ====================
[15:53:01] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[15:53:01] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[15:53:01] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[15:53:01] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[15:53:01] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[15:53:01] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[15:53:01] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[15:53:01] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[15:53:01] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[15:53:01] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[15:53:01] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[15:53:01] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[15:53:01] =============== [PASSED] drm_test_fb_memcpy ================
[15:53:01] ============= [PASSED] drm_format_helper_test ==============
[15:53:01] ================= drm_format (18 subtests) =================
[15:53:01] [PASSED] drm_test_format_block_width_invalid
[15:53:01] [PASSED] drm_test_format_block_width_one_plane
[15:53:01] [PASSED] drm_test_format_block_width_two_plane
[15:53:01] [PASSED] drm_test_format_block_width_three_plane
[15:53:01] [PASSED] drm_test_format_block_width_tiled
[15:53:01] [PASSED] drm_test_format_block_height_invalid
[15:53:01] [PASSED] drm_test_format_block_height_one_plane
[15:53:01] [PASSED] drm_test_format_block_height_two_plane
[15:53:01] [PASSED] drm_test_format_block_height_three_plane
[15:53:01] [PASSED] drm_test_format_block_height_tiled
[15:53:01] [PASSED] drm_test_format_min_pitch_invalid
[15:53:01] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[15:53:01] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[15:53:01] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[15:53:01] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[15:53:01] [PASSED] drm_test_format_min_pitch_two_plane
[15:53:01] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[15:53:01] [PASSED] drm_test_format_min_pitch_tiled
[15:53:01] =================== [PASSED] drm_format ====================
[15:53:01] ============== drm_framebuffer (10 subtests) ===============
[15:53:01] ========== drm_test_framebuffer_check_src_coords ==========
[15:53:01] [PASSED] Success: source fits into fb
[15:53:01] [PASSED] Fail: overflowing fb with x-axis coordinate
[15:53:01] [PASSED] Fail: overflowing fb with y-axis coordinate
[15:53:01] [PASSED] Fail: overflowing fb with source width
[15:53:01] [PASSED] Fail: overflowing fb with source height
[15:53:01] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[15:53:01] [PASSED] drm_test_framebuffer_cleanup
[15:53:01] =============== drm_test_framebuffer_create ===============
[15:53:01] [PASSED] ABGR8888 normal sizes
[15:53:01] [PASSED] ABGR8888 max sizes
[15:53:01] [PASSED] ABGR8888 pitch greater than min required
[15:53:01] [PASSED] ABGR8888 pitch less than min required
[15:53:01] [PASSED] ABGR8888 Invalid width
[15:53:01] [PASSED] ABGR8888 Invalid buffer handle
[15:53:01] [PASSED] No pixel format
[15:53:01] [PASSED] ABGR8888 Width 0
[15:53:01] [PASSED] ABGR8888 Height 0
[15:53:01] [PASSED] ABGR8888 Out of bound height * pitch combination
[15:53:01] [PASSED] ABGR8888 Large buffer offset
[15:53:01] [PASSED] ABGR8888 Buffer offset for inexistent plane
[15:53:01] [PASSED] ABGR8888 Invalid flag
[15:53:01] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[15:53:01] [PASSED] ABGR8888 Valid buffer modifier
[15:53:01] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[15:53:01] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[15:53:01] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[15:53:01] [PASSED] NV12 Normal sizes
[15:53:01] [PASSED] NV12 Max sizes
[15:53:01] [PASSED] NV12 Invalid pitch
[15:53:01] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[15:53:01] [PASSED] NV12 different modifier per-plane
[15:53:01] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[15:53:01] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[15:53:01] [PASSED] NV12 Modifier for inexistent plane
[15:53:01] [PASSED] NV12 Handle for inexistent plane
[15:53:01] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[15:53:01] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[15:53:01] [PASSED] YVU420 Normal sizes
[15:53:01] [PASSED] YVU420 Max sizes
[15:53:01] [PASSED] YVU420 Invalid pitch
[15:53:01] [PASSED] YVU420 Different pitches
[15:53:01] [PASSED] YVU420 Different buffer offsets/pitches
[15:53:01] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[15:53:01] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[15:53:01] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[15:53:01] [PASSED] YVU420 Valid modifier
[15:53:01] [PASSED] YVU420 Different modifiers per plane
[15:53:01] [PASSED] YVU420 Modifier for inexistent plane
[15:53:01] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[15:53:01] [PASSED] X0L2 Normal sizes
[15:53:01] [PASSED] X0L2 Max sizes
[15:53:01] [PASSED] X0L2 Invalid pitch
[15:53:01] [PASSED] X0L2 Pitch greater than minimum required
[15:53:01] [PASSED] X0L2 Handle for inexistent plane
[15:53:01] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[15:53:01] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[15:53:01] [PASSED] X0L2 Valid modifier
[15:53:01] [PASSED] X0L2 Modifier for inexistent plane
[15:53:01] =========== [PASSED] drm_test_framebuffer_create ===========
[15:53:01] [PASSED] drm_test_framebuffer_free
[15:53:01] [PASSED] drm_test_framebuffer_init
[15:53:01] [PASSED] drm_test_framebuffer_init_bad_format
[15:53:01] [PASSED] drm_test_framebuffer_init_dev_mismatch
[15:53:01] [PASSED] drm_test_framebuffer_lookup
[15:53:01] [PASSED] drm_test_framebuffer_lookup_inexistent
[15:53:01] [PASSED] drm_test_framebuffer_modifiers_not_supported
[15:53:01] ================= [PASSED] drm_framebuffer =================
[15:53:01] ================ drm_gem_shmem (8 subtests) ================
[15:53:01] [PASSED] drm_gem_shmem_test_obj_create
[15:53:01] [PASSED] drm_gem_shmem_test_obj_create_private
[15:53:01] [PASSED] drm_gem_shmem_test_pin_pages
[15:53:01] [PASSED] drm_gem_shmem_test_vmap
[15:53:01] [PASSED] drm_gem_shmem_test_get_sg_table
[15:53:01] [PASSED] drm_gem_shmem_test_get_pages_sgt
[15:53:01] [PASSED] drm_gem_shmem_test_madvise
[15:53:01] [PASSED] drm_gem_shmem_test_purge
[15:53:01] ================== [PASSED] drm_gem_shmem ==================
[15:53:01] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[15:53:01] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[15:53:01] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[15:53:01] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[15:53:01] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[15:53:01] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[15:53:01] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[15:53:01] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[15:53:01] [PASSED] Automatic
[15:53:01] [PASSED] Full
[15:53:01] [PASSED] Limited 16:235
[15:53:01] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[15:53:01] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[15:53:01] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[15:53:01] [PASSED] drm_test_check_disable_connector
[15:53:01] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[15:53:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[15:53:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[15:53:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[15:53:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[15:53:01] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[15:53:01] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[15:53:01] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[15:53:01] [PASSED] drm_test_check_output_bpc_dvi
[15:53:01] [PASSED] drm_test_check_output_bpc_format_vic_1
[15:53:01] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[15:53:01] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[15:53:01] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[15:53:01] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[15:53:01] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[15:53:01] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[15:53:01] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[15:53:01] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[15:53:01] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[15:53:01] [PASSED] drm_test_check_broadcast_rgb_value
[15:53:01] [PASSED] drm_test_check_bpc_8_value
[15:53:01] [PASSED] drm_test_check_bpc_10_value
[15:53:01] [PASSED] drm_test_check_bpc_12_value
[15:53:01] [PASSED] drm_test_check_format_value
[15:53:01] [PASSED] drm_test_check_tmds_char_value
[15:53:01] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[15:53:01] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[15:53:01] [PASSED] drm_test_check_mode_valid
[15:53:01] [PASSED] drm_test_check_mode_valid_reject
[15:53:01] [PASSED] drm_test_check_mode_valid_reject_rate
[15:53:01] [PASSED] drm_test_check_mode_valid_reject_max_clock
[15:53:01] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[15:53:01] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[15:53:01] [PASSED] drm_test_check_infoframes
[15:53:01] [PASSED] drm_test_check_reject_avi_infoframe
[15:53:01] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[15:53:01] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[15:53:01] [PASSED] drm_test_check_reject_audio_infoframe
[15:53:01] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[15:53:01] ================= drm_managed (2 subtests) =================
[15:53:01] [PASSED] drm_test_managed_release_action
[15:53:01] [PASSED] drm_test_managed_run_action
[15:53:01] =================== [PASSED] drm_managed ===================
[15:53:01] =================== drm_mm (6 subtests) ====================
[15:53:01] [PASSED] drm_test_mm_init
[15:53:01] [PASSED] drm_test_mm_debug
[15:53:01] [PASSED] drm_test_mm_align32
[15:53:01] [PASSED] drm_test_mm_align64
[15:53:01] [PASSED] drm_test_mm_lowest
[15:53:01] [PASSED] drm_test_mm_highest
[15:53:01] ===================== [PASSED] drm_mm ======================
[15:53:01] ============= drm_modes_analog_tv (5 subtests) =============
[15:53:01] [PASSED] drm_test_modes_analog_tv_mono_576i
[15:53:01] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[15:53:01] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[15:53:01] [PASSED] drm_test_modes_analog_tv_pal_576i
[15:53:01] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[15:53:01] =============== [PASSED] drm_modes_analog_tv ===============
[15:53:01] ============== drm_plane_helper (2 subtests) ===============
[15:53:01] =============== drm_test_check_plane_state ================
[15:53:01] [PASSED] clipping_simple
[15:53:01] [PASSED] clipping_rotate_reflect
[15:53:01] [PASSED] positioning_simple
[15:53:01] [PASSED] upscaling
[15:53:01] [PASSED] downscaling
[15:53:01] [PASSED] rounding1
[15:53:01] [PASSED] rounding2
[15:53:01] [PASSED] rounding3
[15:53:01] [PASSED] rounding4
[15:53:01] =========== [PASSED] drm_test_check_plane_state ============
[15:53:01] =========== drm_test_check_invalid_plane_state ============
[15:53:01] [PASSED] positioning_invalid
[15:53:01] [PASSED] upscaling_invalid
[15:53:01] [PASSED] downscaling_invalid
[15:53:01] ======= [PASSED] drm_test_check_invalid_plane_state ========
[15:53:01] ================ [PASSED] drm_plane_helper =================
[15:53:01] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[15:53:01] ====== drm_test_connector_helper_tv_get_modes_check =======
[15:53:01] [PASSED] None
[15:53:01] [PASSED] PAL
[15:53:01] [PASSED] NTSC
[15:53:01] [PASSED] Both, NTSC Default
[15:53:01] [PASSED] Both, PAL Default
[15:53:01] [PASSED] Both, NTSC Default, with PAL on command-line
[15:53:01] [PASSED] Both, PAL Default, with NTSC on command-line
[15:53:01] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[15:53:01] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[15:53:01] ================== drm_rect (9 subtests) ===================
[15:53:01] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[15:53:01] [PASSED] drm_test_rect_clip_scaled_not_clipped
[15:53:01] [PASSED] drm_test_rect_clip_scaled_clipped
[15:53:01] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[15:53:01] ================= drm_test_rect_intersect =================
[15:53:01] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[15:53:01] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[15:53:01] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[15:53:01] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[15:53:01] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[15:53:01] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[15:53:01] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[15:53:01] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[15:53:01] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[15:53:01] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[15:53:01] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[15:53:01] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[15:53:01] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[15:53:01] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[15:53:01] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[15:53:01] ============= [PASSED] drm_test_rect_intersect =============
[15:53:01] ================ drm_test_rect_calc_hscale ================
[15:53:01] [PASSED] normal use
[15:53:01] [PASSED] out of max range
[15:53:01] [PASSED] out of min range
[15:53:01] [PASSED] zero dst
[15:53:01] [PASSED] negative src
[15:53:01] [PASSED] negative dst
[15:53:01] ============ [PASSED] drm_test_rect_calc_hscale ============
[15:53:01] ================ drm_test_rect_calc_vscale ================
[15:53:01] [PASSED] normal use
[15:53:01] [PASSED] out of max range
[15:53:01] [PASSED] out of min range
[15:53:01] [PASSED] zero dst
[15:53:01] [PASSED] negative src
[15:53:01] [PASSED] negative dst
[15:53:01] ============ [PASSED] drm_test_rect_calc_vscale ============
[15:53:01] ================== drm_test_rect_rotate ===================
[15:53:01] [PASSED] reflect-x
[15:53:01] [PASSED] reflect-y
[15:53:01] [PASSED] rotate-0
[15:53:01] [PASSED] rotate-90
[15:53:01] [PASSED] rotate-180
[15:53:01] [PASSED] rotate-270
[15:53:01] ============== [PASSED] drm_test_rect_rotate ===============
[15:53:01] ================ drm_test_rect_rotate_inv =================
[15:53:01] [PASSED] reflect-x
[15:53:01] [PASSED] reflect-y
[15:53:01] [PASSED] rotate-0
[15:53:01] [PASSED] rotate-90
[15:53:01] [PASSED] rotate-180
[15:53:01] [PASSED] rotate-270
[15:53:01] ============ [PASSED] drm_test_rect_rotate_inv =============
[15:53:01] ==================== [PASSED] drm_rect =====================
[15:53:01] ============ drm_sysfb_modeset_test (1 subtest) ============
[15:53:01] ============ drm_test_sysfb_build_fourcc_list =============
[15:53:01] [PASSED] no native formats
[15:53:01] [PASSED] XRGB8888 as native format
[15:53:01] [PASSED] remove duplicates
[15:53:01] [PASSED] convert alpha formats
[15:53:01] [PASSED] random formats
[15:53:01] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[15:53:01] ============= [PASSED] drm_sysfb_modeset_test ==============
[15:53:01] ================== drm_fixp (2 subtests) ===================
[15:53:01] [PASSED] drm_test_int2fixp
[15:53:01] [PASSED] drm_test_sm2fixp
[15:53:01] ==================== [PASSED] drm_fixp =====================
[15:53:01] ============================================================
[15:53:01] Testing complete. Ran 621 tests: passed: 621
[15:53:01] Elapsed time: 25.898s total, 1.778s configuring, 23.952s building, 0.133s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[15:53:01] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:53:03] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[15:53:12] Starting KUnit Kernel (1/1)...
[15:53:12] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:53:12] ================= ttm_device (5 subtests) ==================
[15:53:12] [PASSED] ttm_device_init_basic
[15:53:12] [PASSED] ttm_device_init_multiple
[15:53:12] [PASSED] ttm_device_fini_basic
[15:53:12] [PASSED] ttm_device_init_no_vma_man
[15:53:12] ================== ttm_device_init_pools ==================
[15:53:12] [PASSED] No DMA allocations, no DMA32 required
[15:53:12] [PASSED] DMA allocations, DMA32 required
[15:53:12] [PASSED] No DMA allocations, DMA32 required
[15:53:12] [PASSED] DMA allocations, no DMA32 required
[15:53:12] ============== [PASSED] ttm_device_init_pools ==============
[15:53:12] =================== [PASSED] ttm_device ====================
[15:53:12] ================== ttm_pool (8 subtests) ===================
[15:53:12] ================== ttm_pool_alloc_basic ===================
[15:53:12] [PASSED] One page
[15:53:12] [PASSED] More than one page
[15:53:12] [PASSED] Above the allocation limit
[15:53:12] [PASSED] One page, with coherent DMA mappings enabled
[15:53:12] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:53:12] ============== [PASSED] ttm_pool_alloc_basic ===============
[15:53:12] ============== ttm_pool_alloc_basic_dma_addr ==============
[15:53:12] [PASSED] One page
[15:53:12] [PASSED] More than one page
[15:53:12] [PASSED] Above the allocation limit
[15:53:12] [PASSED] One page, with coherent DMA mappings enabled
[15:53:12] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:53:12] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[15:53:12] [PASSED] ttm_pool_alloc_order_caching_match
[15:53:12] [PASSED] ttm_pool_alloc_caching_mismatch
[15:53:12] [PASSED] ttm_pool_alloc_order_mismatch
[15:53:12] [PASSED] ttm_pool_free_dma_alloc
[15:53:12] [PASSED] ttm_pool_free_no_dma_alloc
[15:53:12] [PASSED] ttm_pool_fini_basic
[15:53:12] ==================== [PASSED] ttm_pool =====================
[15:53:12] ================ ttm_resource (8 subtests) =================
[15:53:12] ================= ttm_resource_init_basic =================
[15:53:12] [PASSED] Init resource in TTM_PL_SYSTEM
[15:53:12] [PASSED] Init resource in TTM_PL_VRAM
[15:53:12] [PASSED] Init resource in a private placement
[15:53:12] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[15:53:12] ============= [PASSED] ttm_resource_init_basic =============
[15:53:12] [PASSED] ttm_resource_init_pinned
[15:53:12] [PASSED] ttm_resource_fini_basic
[15:53:12] [PASSED] ttm_resource_manager_init_basic
[15:53:12] [PASSED] ttm_resource_manager_usage_basic
[15:53:12] [PASSED] ttm_resource_manager_set_used_basic
[15:53:12] [PASSED] ttm_sys_man_alloc_basic
[15:53:12] [PASSED] ttm_sys_man_free_basic
[15:53:12] ================== [PASSED] ttm_resource ===================
[15:53:12] =================== ttm_tt (15 subtests) ===================
[15:53:12] ==================== ttm_tt_init_basic ====================
[15:53:12] [PASSED] Page-aligned size
[15:53:12] [PASSED] Extra pages requested
[15:53:12] ================ [PASSED] ttm_tt_init_basic ================
[15:53:12] [PASSED] ttm_tt_init_misaligned
[15:53:12] [PASSED] ttm_tt_fini_basic
[15:53:12] [PASSED] ttm_tt_fini_sg
[15:53:12] [PASSED] ttm_tt_fini_shmem
[15:53:12] [PASSED] ttm_tt_create_basic
[15:53:12] [PASSED] ttm_tt_create_invalid_bo_type
[15:53:12] [PASSED] ttm_tt_create_ttm_exists
[15:53:12] [PASSED] ttm_tt_create_failed
[15:53:12] [PASSED] ttm_tt_destroy_basic
[15:53:12] [PASSED] ttm_tt_populate_null_ttm
[15:53:12] [PASSED] ttm_tt_populate_populated_ttm
[15:53:12] [PASSED] ttm_tt_unpopulate_basic
[15:53:12] [PASSED] ttm_tt_unpopulate_empty_ttm
[15:53:12] [PASSED] ttm_tt_swapin_basic
[15:53:12] ===================== [PASSED] ttm_tt ======================
[15:53:12] =================== ttm_bo (14 subtests) ===================
[15:53:12] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[15:53:12] [PASSED] Cannot be interrupted and sleeps
[15:53:12] [PASSED] Cannot be interrupted, locks straight away
[15:53:12] [PASSED] Can be interrupted, sleeps
[15:53:12] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[15:53:12] [PASSED] ttm_bo_reserve_locked_no_sleep
[15:53:12] [PASSED] ttm_bo_reserve_no_wait_ticket
[15:53:12] [PASSED] ttm_bo_reserve_double_resv
[15:53:12] [PASSED] ttm_bo_reserve_interrupted
[15:53:12] [PASSED] ttm_bo_reserve_deadlock
[15:53:12] [PASSED] ttm_bo_unreserve_basic
[15:53:12] [PASSED] ttm_bo_unreserve_pinned
[15:53:12] [PASSED] ttm_bo_unreserve_bulk
[15:53:12] [PASSED] ttm_bo_fini_basic
[15:53:12] [PASSED] ttm_bo_fini_shared_resv
[15:53:12] [PASSED] ttm_bo_pin_basic
[15:53:12] [PASSED] ttm_bo_pin_unpin_resource
[15:53:12] [PASSED] ttm_bo_multiple_pin_one_unpin
[15:53:12] ===================== [PASSED] ttm_bo ======================
[15:53:12] ============== ttm_bo_validate (22 subtests) ===============
[15:53:12] ============== ttm_bo_init_reserved_sys_man ===============
[15:53:12] [PASSED] Buffer object for userspace
[15:53:12] [PASSED] Kernel buffer object
[15:53:12] [PASSED] Shared buffer object
[15:53:12] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[15:53:12] ============== ttm_bo_init_reserved_mock_man ==============
[15:53:12] [PASSED] Buffer object for userspace
[15:53:12] [PASSED] Kernel buffer object
[15:53:12] [PASSED] Shared buffer object
[15:53:12] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[15:53:12] [PASSED] ttm_bo_init_reserved_resv
[15:53:12] ================== ttm_bo_validate_basic ==================
[15:53:12] [PASSED] Buffer object for userspace
[15:53:12] [PASSED] Kernel buffer object
[15:53:12] [PASSED] Shared buffer object
[15:53:12] ============== [PASSED] ttm_bo_validate_basic ==============
[15:53:12] [PASSED] ttm_bo_validate_invalid_placement
[15:53:12] ============= ttm_bo_validate_same_placement ==============
[15:53:12] [PASSED] System manager
[15:53:12] [PASSED] VRAM manager
[15:53:12] ========= [PASSED] ttm_bo_validate_same_placement ==========
[15:53:12] [PASSED] ttm_bo_validate_failed_alloc
[15:53:12] [PASSED] ttm_bo_validate_pinned
[15:53:12] [PASSED] ttm_bo_validate_busy_placement
[15:53:12] ================ ttm_bo_validate_multihop =================
[15:53:12] [PASSED] Buffer object for userspace
[15:53:12] [PASSED] Kernel buffer object
[15:53:12] [PASSED] Shared buffer object
[15:53:12] ============ [PASSED] ttm_bo_validate_multihop =============
[15:53:12] ========== ttm_bo_validate_no_placement_signaled ==========
[15:53:12] [PASSED] Buffer object in system domain, no page vector
[15:53:12] [PASSED] Buffer object in system domain with an existing page vector
[15:53:12] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[15:53:12] ======== ttm_bo_validate_no_placement_not_signaled ========
[15:53:12] [PASSED] Buffer object for userspace
[15:53:12] [PASSED] Kernel buffer object
[15:53:12] [PASSED] Shared buffer object
[15:53:12] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[15:53:12] [PASSED] ttm_bo_validate_move_fence_signaled
[15:53:12] ========= ttm_bo_validate_move_fence_not_signaled =========
[15:53:12] [PASSED] Waits for GPU
[15:53:12] [PASSED] Tries to lock straight away
[15:53:12] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[15:53:12] [PASSED] ttm_bo_validate_swapout
[15:53:12] [PASSED] ttm_bo_validate_happy_evict
[15:53:12] [PASSED] ttm_bo_validate_all_pinned_evict
[15:53:12] [PASSED] ttm_bo_validate_allowed_only_evict
[15:53:12] [PASSED] ttm_bo_validate_deleted_evict
[15:53:12] [PASSED] ttm_bo_validate_busy_domain_evict
[15:53:12] [PASSED] ttm_bo_validate_evict_gutting
[15:53:12] [PASSED] ttm_bo_validate_recrusive_evict
[15:53:12] ================= [PASSED] ttm_bo_validate =================
[15:53:12] ============================================================
[15:53:12] Testing complete. Ran 102 tests: passed: 102
[15:53:12] Elapsed time: 11.418s total, 1.740s configuring, 9.462s building, 0.177s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for Add reclaim to the dmem cgroup controller (rev4)
2026-05-12 8:24 [PATCH v4 0/5] Add reclaim to the dmem cgroup controller Thomas Hellström
` (6 preceding siblings ...)
2026-05-12 15:53 ` ✓ CI.KUnit: success " Patchwork
@ 2026-05-12 16:48 ` Patchwork
2026-05-13 4:27 ` ✗ Xe.CI.FULL: failure " Patchwork
8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-05-12 16:48 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1100 bytes --]
== Series Details ==
Series: Add reclaim to the dmem cgroup controller (rev4)
URL : https://patchwork.freedesktop.org/series/163970/
State : success
== Summary ==
CI Bug Log - changes from xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4_BAT -> xe-pw-163970v4_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8903 -> IGT_8905
* Linux: xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4 -> xe-pw-163970v4
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8905: b04ca530eb2959c8edbf9d90f6bb98a9fdee2296 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4: b83102e9c06357b09f2cfbe944269786cb6985c4
xe-pw-163970v4: 163970v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/index.html
[-- Attachment #2: Type: text/html, Size: 1662 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.FULL: failure for Add reclaim to the dmem cgroup controller (rev4)
2026-05-12 8:24 [PATCH v4 0/5] Add reclaim to the dmem cgroup controller Thomas Hellström
` (7 preceding siblings ...)
2026-05-12 16:48 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-05-13 4:27 ` Patchwork
8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-05-13 4:27 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 32689 bytes --]
== Series Details ==
Series: Add reclaim to the dmem cgroup controller (rev4)
URL : https://patchwork.freedesktop.org/series/163970/
State : failure
== Summary ==
CI Bug Log - changes from xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4_FULL -> xe-pw-163970v4_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-163970v4_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-163970v4_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-163970v4_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_system_allocator@process-many-mmap-remap-ro-eocheck:
- shard-lnl: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-lnl-4/igt@xe_exec_system_allocator@process-many-mmap-remap-ro-eocheck.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-7/igt@xe_exec_system_allocator@process-many-mmap-remap-ro-eocheck.html
Known issues
------------
Here are the changes found in xe-pw-163970v4_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1407])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-1/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_bw@linear-tiling-1-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#367]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +8 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-5/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#3432])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2652]) +8 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2252]) +5 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-9/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#373])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#7642]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@kms_content_protection@content-type-change.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2320]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#4354] / [Intel XE#5882])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2244]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#4422] / [Intel XE#7442])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#6126] / [Intel XE#776])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [PASS][20] -> [FAIL][21] ([Intel XE#301] / [Intel XE#3149])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: NOTRUN -> [FAIL][22] ([Intel XE#301]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2311]) +30 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#656] / [Intel XE#7905]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-spr-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#6312]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-7/igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7061]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-6/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#4141]) +10 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#7905]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2313]) +30 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7061] / [Intel XE#7356])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#7865])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#7915]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-9/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6901])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#6911] / [Intel XE#7466])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-9/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7283])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#7283])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#5021] / [Intel XE#7377])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#3309] / [Intel XE#7368])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-9/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [PASS][42] -> [FAIL][43] ([Intel XE#2029] / [Intel XE#7395])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-2/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2499])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-9/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-9/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#1489]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-suspend:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-1/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2234])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-3/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7795])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2330] / [Intel XE#5813])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#6503])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#1499]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-2/igt@kms_vrr@max-min.html
* igt@xe_compute@eu-busy-10s:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6599])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-1/igt@xe_compute@eu-busy-10s.html
* igt@xe_eudebug_online@resume-one:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7636]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#6540] / [Intel XE#688])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-3/igt@xe_evict@evict-mixed-threads-small-multi-vm.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7140])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_exec_balancer@many-virtual-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7482]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-7/igt@xe_exec_balancer@many-virtual-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2322] / [Intel XE#7372]) +5 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_fault_mode@many-multi-queue-imm:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#7136]) +7 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-5/igt@xe_exec_fault_mode@many-multi-queue-imm.html
* igt@xe_exec_multi_queue@two-queues-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#6874]) +13 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-10/igt@xe_exec_multi_queue@two-queues-basic-smem.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7138]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-latency-copy-basic:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6964]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-5/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
* igt@xe_pat@l2-flush-opt-svm-pat-restrict:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7590])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-1/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2245] / [Intel XE#7590])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-9/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#5694] / [Intel XE#7370])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-9/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2284] / [Intel XE#7370]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-4/igt@xe_pm@d3cold-mmap-system.html
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-2/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#4733] / [Intel XE#7417])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-9/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#944])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-10/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_sriov_vfio@bind-unbind-vfs@numvfs-16:
- shard-bmg: [PASS][70] -> [FAIL][71] ([Intel XE#5937]) +24 other tests fail
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-3/igt@xe_sriov_vfio@bind-unbind-vfs@numvfs-16.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-10/igt@xe_sriov_vfio@bind-unbind-vfs@numvfs-16.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: NOTRUN -> [ABORT][72] ([Intel XE#7914])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-5/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][73] ([Intel XE#7445]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-3/igt@intel_hwmon@hwmon-write.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_color@ctm-0-75:
- shard-bmg: [INCOMPLETE][75] -> [PASS][76] +1 other test pass
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-2/igt@kms_color@ctm-0-75.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-9/igt@kms_color@ctm-0-75.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][77] ([Intel XE#7571]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [SKIP][79] ([Intel XE#4692] / [Intel XE#7508]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_vrr@max-min:
- shard-lnl: [FAIL][81] ([Intel XE#4227]) -> [PASS][82] +1 other test pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-lnl-5/igt@kms_vrr@max-min.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-4/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][83] ([Intel XE#2142]) -> [PASS][84] +1 other test pass
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-free-nomemset:
- shard-bmg: [INCOMPLETE][85] ([Intel XE#2594]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-free-nomemset.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-free-nomemset.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-bmg: [FAIL][87] ([Intel XE#5937]) -> [PASS][88] +1 other test pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [FAIL][89] ([Intel XE#6569]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-4/igt@xe_sriov_flr@flr-each-isolation.html
#### Warnings ####
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][91] ([Intel XE#301]) -> [FAIL][92] ([Intel XE#301] / [Intel XE#3149])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][93] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][94] ([Intel XE#2426] / [Intel XE#5848])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][95] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][96] ([Intel XE#2426] / [Intel XE#5848])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7914
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8903 -> IGT_8905
* Linux: xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4 -> xe-pw-163970v4
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8905: b04ca530eb2959c8edbf9d90f6bb98a9fdee2296 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4: b83102e9c06357b09f2cfbe944269786cb6985c4
xe-pw-163970v4: 163970v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163970v4/index.html
[-- Attachment #2: Type: text/html, Size: 35931 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-05-13 4:27 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-12 8:24 [PATCH v4 0/5] Add reclaim to the dmem cgroup controller Thomas Hellström
2026-05-12 8:24 ` [PATCH v4 1/5] drm/amdgpu: Fix init ordering in amdgpu_vram_mgr_init() Thomas Hellström
2026-05-12 8:24 ` [PATCH v4 2/5] cgroup/dmem: Add reclaim callback for lowering max below current usage Thomas Hellström
2026-05-12 8:24 ` [PATCH v4 3/5] drm/ttm: Hook up a cgroup-aware reclaim callback for the dmem controller Thomas Hellström
2026-05-12 8:24 ` [PATCH v4 4/5] drm/xe: Wire up dmem cgroup reclaim for VRAM manager Thomas Hellström
2026-05-12 8:24 ` [PATCH v4 5/5] drm/amdgpu: " Thomas Hellström
2026-05-12 15:51 ` ✗ CI.checkpatch: warning for Add reclaim to the dmem cgroup controller (rev4) Patchwork
2026-05-12 15:53 ` ✓ CI.KUnit: success " Patchwork
2026-05-12 16:48 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-13 4:27 ` ✗ Xe.CI.FULL: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox