* [PATCH v2 1/3] drm/ttm: Use a struct for the common part of struct ttm_lru_walk and struct ttm_bo_lru_cursor
2025-06-23 15:53 [PATCH v2 0/3] drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks Thomas Hellström
@ 2025-06-23 15:53 ` Thomas Hellström
2025-06-23 15:53 ` [PATCH v2 2/3] drm/ttm, drm/xe: Modify the struct ttm_bo_lru_walk_cursor initialization Thomas Hellström
` (7 subsequent siblings)
8 siblings, 0 replies; 13+ messages in thread
From: Thomas Hellström @ 2025-06-23 15:53 UTC (permalink / raw)
To: intel-xe
Cc: Thomas Hellström, Christian König, dri-devel, airlied,
Matthew Brost, Matthew Auld
Let the locking functions take the new struct ttm_lru_walk_arg
as argument in order for them to be easily used from both
types of walk.
v2:
- Whitespace fix
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
---
drivers/gpu/drm/ttm/ttm_bo.c | 24 ++++++++++++++----------
drivers/gpu/drm/ttm/ttm_bo_util.c | 26 ++++++++++++++------------
include/drm/ttm/ttm_bo.h | 23 ++++++++++++++---------
3 files changed, 42 insertions(+), 31 deletions(-)
diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
index bb9c5c8e16b5..f4d9e68b21e7 100644
--- a/drivers/gpu/drm/ttm/ttm_bo.c
+++ b/drivers/gpu/drm/ttm/ttm_bo.c
@@ -526,11 +526,11 @@ static s64 ttm_bo_evict_cb(struct ttm_lru_walk *walk, struct ttm_buffer_object *
return 0;
if (bo->deleted) {
- lret = ttm_bo_wait_ctx(bo, walk->ctx);
+ lret = ttm_bo_wait_ctx(bo, walk->arg.ctx);
if (!lret)
ttm_bo_cleanup_memtype_use(bo);
} else {
- lret = ttm_bo_evict(bo, walk->ctx);
+ lret = ttm_bo_evict(bo, walk->arg.ctx);
}
if (lret)
@@ -566,8 +566,10 @@ static int ttm_bo_evict_alloc(struct ttm_device *bdev,
struct ttm_bo_evict_walk evict_walk = {
.walk = {
.ops = &ttm_evict_walk_ops,
- .ctx = ctx,
- .ticket = ticket,
+ .arg = {
+ .ctx = ctx,
+ .ticket = ticket,
+ }
},
.place = place,
.evictor = evictor,
@@ -576,7 +578,7 @@ static int ttm_bo_evict_alloc(struct ttm_device *bdev,
};
s64 lret;
- evict_walk.walk.trylock_only = true;
+ evict_walk.walk.arg.trylock_only = true;
lret = ttm_lru_walk_for_evict(&evict_walk.walk, bdev, man, 1);
/* One more attempt if we hit low limit? */
@@ -590,12 +592,12 @@ static int ttm_bo_evict_alloc(struct ttm_device *bdev,
/* Reset low limit */
evict_walk.try_low = evict_walk.hit_low = false;
/* If ticket-locking, repeat while making progress. */
- evict_walk.walk.trylock_only = false;
+ evict_walk.walk.arg.trylock_only = false;
retry:
do {
/* The walk may clear the evict_walk.walk.ticket field */
- evict_walk.walk.ticket = ticket;
+ evict_walk.walk.arg.ticket = ticket;
evict_walk.evicted = 0;
lret = ttm_lru_walk_for_evict(&evict_walk.walk, bdev, man, 1);
} while (!lret && evict_walk.evicted);
@@ -1106,7 +1108,7 @@ ttm_bo_swapout_cb(struct ttm_lru_walk *walk, struct ttm_buffer_object *bo)
struct ttm_place place = {.mem_type = bo->resource->mem_type};
struct ttm_bo_swapout_walk *swapout_walk =
container_of(walk, typeof(*swapout_walk), walk);
- struct ttm_operation_ctx *ctx = walk->ctx;
+ struct ttm_operation_ctx *ctx = walk->arg.ctx;
s64 ret;
/*
@@ -1217,8 +1219,10 @@ s64 ttm_bo_swapout(struct ttm_device *bdev, struct ttm_operation_ctx *ctx,
struct ttm_bo_swapout_walk swapout_walk = {
.walk = {
.ops = &ttm_swap_ops,
- .ctx = ctx,
- .trylock_only = true,
+ .arg = {
+ .ctx = ctx,
+ .trylock_only = true,
+ },
},
.gfp_flags = gfp_flags,
};
diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
index b9a772b26fa1..5433eb87593d 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_util.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
@@ -773,10 +773,12 @@ int ttm_bo_pipeline_gutting(struct ttm_buffer_object *bo)
return ret;
}
-static bool ttm_lru_walk_trylock(struct ttm_operation_ctx *ctx,
+static bool ttm_lru_walk_trylock(struct ttm_lru_walk_arg *arg,
struct ttm_buffer_object *bo,
bool *needs_unlock)
{
+ struct ttm_operation_ctx *ctx = arg->ctx;
+
*needs_unlock = false;
if (dma_resv_trylock(bo->base.resv)) {
@@ -792,17 +794,17 @@ static bool ttm_lru_walk_trylock(struct ttm_operation_ctx *ctx,
return false;
}
-static int ttm_lru_walk_ticketlock(struct ttm_lru_walk *walk,
+static int ttm_lru_walk_ticketlock(struct ttm_lru_walk_arg *arg,
struct ttm_buffer_object *bo,
bool *needs_unlock)
{
struct dma_resv *resv = bo->base.resv;
int ret;
- if (walk->ctx->interruptible)
- ret = dma_resv_lock_interruptible(resv, walk->ticket);
+ if (arg->ctx->interruptible)
+ ret = dma_resv_lock_interruptible(resv, arg->ticket);
else
- ret = dma_resv_lock(resv, walk->ticket);
+ ret = dma_resv_lock(resv, arg->ticket);
if (!ret) {
*needs_unlock = true;
@@ -812,7 +814,7 @@ static int ttm_lru_walk_ticketlock(struct ttm_lru_walk *walk,
* after waiting for the ticketlock, revert back to
* trylocking for this walk.
*/
- walk->ticket = NULL;
+ arg->ticket = NULL;
} else if (ret == -EDEADLK) {
/* Caller needs to exit the ww transaction. */
ret = -ENOSPC;
@@ -879,10 +881,10 @@ s64 ttm_lru_walk_for_evict(struct ttm_lru_walk *walk, struct ttm_device *bdev,
* since if we do it the other way around, and the trylock fails,
* we need to drop the lru lock to put the bo.
*/
- if (ttm_lru_walk_trylock(walk->ctx, bo, &bo_needs_unlock))
+ if (ttm_lru_walk_trylock(&walk->arg, bo, &bo_needs_unlock))
bo_locked = true;
- else if (!walk->ticket || walk->ctx->no_wait_gpu ||
- walk->trylock_only)
+ else if (!walk->arg.ticket || walk->arg.ctx->no_wait_gpu ||
+ walk->arg.trylock_only)
continue;
if (!ttm_bo_get_unless_zero(bo)) {
@@ -895,7 +897,7 @@ s64 ttm_lru_walk_for_evict(struct ttm_lru_walk *walk, struct ttm_device *bdev,
lret = 0;
if (!bo_locked)
- lret = ttm_lru_walk_ticketlock(walk, bo, &bo_needs_unlock);
+ lret = ttm_lru_walk_ticketlock(&walk->arg, bo, &bo_needs_unlock);
/*
* Note that in between the release of the lru lock and the
@@ -972,7 +974,7 @@ ttm_bo_lru_cursor_init(struct ttm_bo_lru_cursor *curs,
{
memset(curs, 0, sizeof(*curs));
ttm_resource_cursor_init(&curs->res_curs, man);
- curs->ctx = ctx;
+ curs->arg.ctx = ctx;
return curs;
}
@@ -983,7 +985,7 @@ ttm_bo_from_res_reserved(struct ttm_resource *res, struct ttm_bo_lru_cursor *cur
{
struct ttm_buffer_object *bo = res->bo;
- if (!ttm_lru_walk_trylock(curs->ctx, bo, &curs->needs_unlock))
+ if (!ttm_lru_walk_trylock(&curs->arg, bo, &curs->needs_unlock))
return NULL;
if (!ttm_bo_get_unless_zero(bo)) {
diff --git a/include/drm/ttm/ttm_bo.h b/include/drm/ttm/ttm_bo.h
index 8ad6e2713625..c19ac92c33a9 100644
--- a/include/drm/ttm/ttm_bo.h
+++ b/include/drm/ttm/ttm_bo.h
@@ -207,11 +207,9 @@ struct ttm_lru_walk_ops {
};
/**
- * struct ttm_lru_walk - Structure describing a LRU walk.
+ * struct ttm_lru_walk_arg - Common part for the variants of BO LRU walk.
*/
-struct ttm_lru_walk {
- /** @ops: Pointer to the ops structure. */
- const struct ttm_lru_walk_ops *ops;
+struct ttm_lru_walk_arg {
/** @ctx: Pointer to the struct ttm_operation_ctx. */
struct ttm_operation_ctx *ctx;
/** @ticket: The struct ww_acquire_ctx if any. */
@@ -220,6 +218,16 @@ struct ttm_lru_walk {
bool trylock_only;
};
+/**
+ * struct ttm_lru_walk - Structure describing a LRU walk.
+ */
+struct ttm_lru_walk {
+ /** @ops: Pointer to the ops structure. */
+ const struct ttm_lru_walk_ops *ops;
+ /** @arg: Common bo LRU walk arguments. */
+ struct ttm_lru_walk_arg arg;
+};
+
s64 ttm_lru_walk_for_evict(struct ttm_lru_walk *walk, struct ttm_device *bdev,
struct ttm_resource_manager *man, s64 target);
@@ -466,11 +474,6 @@ int ttm_bo_populate(struct ttm_buffer_object *bo,
struct ttm_bo_lru_cursor {
/** @res_curs: Embedded struct ttm_resource_cursor. */
struct ttm_resource_cursor res_curs;
- /**
- * @ctx: The struct ttm_operation_ctx used while looping.
- * governs the locking mode.
- */
- struct ttm_operation_ctx *ctx;
/**
* @bo: Buffer object pointer if a buffer object is refcounted,
* NULL otherwise.
@@ -481,6 +484,8 @@ struct ttm_bo_lru_cursor {
* unlock before the next iteration or after loop exit.
*/
bool needs_unlock;
+ /** @arg: Common BO LRU walk arguments. */
+ struct ttm_lru_walk_arg arg;
};
void ttm_bo_lru_cursor_fini(struct ttm_bo_lru_cursor *curs);
--
2.49.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v2 2/3] drm/ttm, drm/xe: Modify the struct ttm_bo_lru_walk_cursor initialization
2025-06-23 15:53 [PATCH v2 0/3] drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks Thomas Hellström
2025-06-23 15:53 ` [PATCH v2 1/3] drm/ttm: Use a struct for the common part of struct ttm_lru_walk and struct ttm_bo_lru_cursor Thomas Hellström
@ 2025-06-23 15:53 ` Thomas Hellström
2025-06-23 15:53 ` [PATCH v2 3/3] drm/ttm, drm_xe, Implement ttm_lru_walk_for_evict() using the guarded LRU iteration Thomas Hellström
` (6 subsequent siblings)
8 siblings, 0 replies; 13+ messages in thread
From: Thomas Hellström @ 2025-06-23 15:53 UTC (permalink / raw)
To: intel-xe
Cc: Thomas Hellström, Christian König, dri-devel, airlied,
Matthew Brost, Matthew Auld
Instead of the struct ttm_operation_ctx, Pass a struct ttm_lru_walk_arg
to enable us to easily extend the walk functionality, and to
implement ttm_lru_walk_for_evict() using the guarded LRU iteration.
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
---
drivers/gpu/drm/ttm/ttm_bo_util.c | 10 +++++-----
drivers/gpu/drm/xe/xe_shrinker.c | 3 ++-
include/drm/ttm/ttm_bo.h | 16 ++++++++--------
3 files changed, 15 insertions(+), 14 deletions(-)
diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
index 5433eb87593d..6de1f0c432c2 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_util.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
@@ -958,11 +958,11 @@ EXPORT_SYMBOL(ttm_bo_lru_cursor_fini);
* ttm_bo_lru_cursor_init() - Initialize a struct ttm_bo_lru_cursor
* @curs: The ttm_bo_lru_cursor to initialize.
* @man: The ttm resource_manager whose LRU lists to iterate over.
- * @ctx: The ttm_operation_ctx to govern the locking.
+ * @arg: The ttm_lru_walk_arg to govern the walk.
*
* Initialize a struct ttm_bo_lru_cursor. Currently only trylocking
* or prelocked buffer objects are available as detailed by
- * @ctx::resv and @ctx::allow_res_evict. Ticketlocking is not
+ * @arg->ctx.resv and @arg->ctx.allow_res_evict. Ticketlocking is not
* supported.
*
* Return: Pointer to @curs. The function does not fail.
@@ -970,11 +970,11 @@ EXPORT_SYMBOL(ttm_bo_lru_cursor_fini);
struct ttm_bo_lru_cursor *
ttm_bo_lru_cursor_init(struct ttm_bo_lru_cursor *curs,
struct ttm_resource_manager *man,
- struct ttm_operation_ctx *ctx)
+ struct ttm_lru_walk_arg *arg)
{
memset(curs, 0, sizeof(*curs));
ttm_resource_cursor_init(&curs->res_curs, man);
- curs->arg.ctx = ctx;
+ curs->arg = arg;
return curs;
}
@@ -985,7 +985,7 @@ ttm_bo_from_res_reserved(struct ttm_resource *res, struct ttm_bo_lru_cursor *cur
{
struct ttm_buffer_object *bo = res->bo;
- if (!ttm_lru_walk_trylock(&curs->arg, bo, &curs->needs_unlock))
+ if (!ttm_lru_walk_trylock(curs->arg, bo, &curs->needs_unlock))
return NULL;
if (!ttm_bo_get_unless_zero(bo)) {
diff --git a/drivers/gpu/drm/xe/xe_shrinker.c b/drivers/gpu/drm/xe/xe_shrinker.c
index 125c836e0ee4..f8a1129da2c3 100644
--- a/drivers/gpu/drm/xe/xe_shrinker.c
+++ b/drivers/gpu/drm/xe/xe_shrinker.c
@@ -66,11 +66,12 @@ static s64 xe_shrinker_walk(struct xe_device *xe,
struct ttm_resource_manager *man = ttm_manager_type(&xe->ttm, mem_type);
struct ttm_bo_lru_cursor curs;
struct ttm_buffer_object *ttm_bo;
+ struct ttm_lru_walk_arg arg = {.ctx = ctx};
if (!man || !man->use_tt)
continue;
- ttm_bo_lru_for_each_reserved_guarded(&curs, man, ctx, ttm_bo) {
+ ttm_bo_lru_for_each_reserved_guarded(&curs, man, &arg, ttm_bo) {
if (!ttm_bo_shrink_suitable(ttm_bo, ctx))
continue;
diff --git a/include/drm/ttm/ttm_bo.h b/include/drm/ttm/ttm_bo.h
index c19ac92c33a9..ab9a6b343a53 100644
--- a/include/drm/ttm/ttm_bo.h
+++ b/include/drm/ttm/ttm_bo.h
@@ -484,8 +484,8 @@ struct ttm_bo_lru_cursor {
* unlock before the next iteration or after loop exit.
*/
bool needs_unlock;
- /** @arg: Common BO LRU walk arguments. */
- struct ttm_lru_walk_arg arg;
+ /** @arg: Pointer to common BO LRU walk arguments. */
+ struct ttm_lru_walk_arg *arg;
};
void ttm_bo_lru_cursor_fini(struct ttm_bo_lru_cursor *curs);
@@ -493,7 +493,7 @@ void ttm_bo_lru_cursor_fini(struct ttm_bo_lru_cursor *curs);
struct ttm_bo_lru_cursor *
ttm_bo_lru_cursor_init(struct ttm_bo_lru_cursor *curs,
struct ttm_resource_manager *man,
- struct ttm_operation_ctx *ctx);
+ struct ttm_lru_walk_arg *arg);
struct ttm_buffer_object *ttm_bo_lru_cursor_first(struct ttm_bo_lru_cursor *curs);
@@ -504,9 +504,9 @@ struct ttm_buffer_object *ttm_bo_lru_cursor_next(struct ttm_bo_lru_cursor *curs)
*/
DEFINE_CLASS(ttm_bo_lru_cursor, struct ttm_bo_lru_cursor *,
if (_T) {ttm_bo_lru_cursor_fini(_T); },
- ttm_bo_lru_cursor_init(curs, man, ctx),
+ ttm_bo_lru_cursor_init(curs, man, arg),
struct ttm_bo_lru_cursor *curs, struct ttm_resource_manager *man,
- struct ttm_operation_ctx *ctx);
+ struct ttm_lru_walk_arg *arg);
static inline void *
class_ttm_bo_lru_cursor_lock_ptr(class_ttm_bo_lru_cursor_t *_T)
{ return *_T; }
@@ -517,7 +517,7 @@ class_ttm_bo_lru_cursor_lock_ptr(class_ttm_bo_lru_cursor_t *_T)
* resources on LRU lists.
* @_cursor: struct ttm_bo_lru_cursor to use for the iteration.
* @_man: The resource manager whose LRU lists to iterate over.
- * @_ctx: The struct ttm_operation_context to govern the @_bo locking.
+ * @_arg: The struct ttm_lru_walk_arg to govern the LRU walk.
* @_bo: The struct ttm_buffer_object pointer pointing to the buffer object
* for the current iteration.
*
@@ -530,8 +530,8 @@ class_ttm_bo_lru_cursor_lock_ptr(class_ttm_bo_lru_cursor_t *_T)
* example a return or break statement. Exiting the loop will also unlock
* (if needed) and unreference @_bo.
*/
-#define ttm_bo_lru_for_each_reserved_guarded(_cursor, _man, _ctx, _bo) \
- scoped_guard(ttm_bo_lru_cursor, _cursor, _man, _ctx) \
+#define ttm_bo_lru_for_each_reserved_guarded(_cursor, _man, _arg, _bo) \
+ scoped_guard(ttm_bo_lru_cursor, _cursor, _man, _arg) \
for ((_bo) = ttm_bo_lru_cursor_first(_cursor); (_bo); \
(_bo) = ttm_bo_lru_cursor_next(_cursor))
--
2.49.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v2 3/3] drm/ttm, drm_xe, Implement ttm_lru_walk_for_evict() using the guarded LRU iteration
2025-06-23 15:53 [PATCH v2 0/3] drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks Thomas Hellström
2025-06-23 15:53 ` [PATCH v2 1/3] drm/ttm: Use a struct for the common part of struct ttm_lru_walk and struct ttm_bo_lru_cursor Thomas Hellström
2025-06-23 15:53 ` [PATCH v2 2/3] drm/ttm, drm/xe: Modify the struct ttm_bo_lru_walk_cursor initialization Thomas Hellström
@ 2025-06-23 15:53 ` Thomas Hellström
2025-06-26 11:06 ` Christian König
2025-06-23 16:00 ` ✗ CI.checkpatch: warning for drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev2) Patchwork
` (5 subsequent siblings)
8 siblings, 1 reply; 13+ messages in thread
From: Thomas Hellström @ 2025-06-23 15:53 UTC (permalink / raw)
To: intel-xe
Cc: Thomas Hellström, dri-devel, airlied, Matthew Brost,
Matthew Auld, Christian König
To avoid duplicating the tricky bo locking implementation,
Implement ttm_lru_walk_for_evict() using the guarded bo LRU iteration.
To facilitate this, support ticketlocking from the guarded bo LRU
iteration.
v2:
- Clean up some static function interfaces (Christian König)
- Fix Handling -EALREADY from ticketlocking in the loop by
skipping to the next item. (Intel CI)
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
drivers/gpu/drm/ttm/ttm_bo_util.c | 188 ++++++++++++------------------
drivers/gpu/drm/xe/xe_shrinker.c | 7 +-
include/drm/ttm/ttm_bo.h | 9 +-
3 files changed, 88 insertions(+), 116 deletions(-)
diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
index 6de1f0c432c2..250675d56b1c 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_util.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
@@ -773,16 +773,15 @@ int ttm_bo_pipeline_gutting(struct ttm_buffer_object *bo)
return ret;
}
-static bool ttm_lru_walk_trylock(struct ttm_lru_walk_arg *arg,
- struct ttm_buffer_object *bo,
- bool *needs_unlock)
+static bool ttm_lru_walk_trylock(struct ttm_bo_lru_cursor *curs,
+ struct ttm_buffer_object *bo)
{
- struct ttm_operation_ctx *ctx = arg->ctx;
+ struct ttm_operation_ctx *ctx = curs->arg->ctx;
- *needs_unlock = false;
+ curs->needs_unlock = false;
if (dma_resv_trylock(bo->base.resv)) {
- *needs_unlock = true;
+ curs->needs_unlock = true;
return true;
}
@@ -794,10 +793,10 @@ static bool ttm_lru_walk_trylock(struct ttm_lru_walk_arg *arg,
return false;
}
-static int ttm_lru_walk_ticketlock(struct ttm_lru_walk_arg *arg,
- struct ttm_buffer_object *bo,
- bool *needs_unlock)
+static int ttm_lru_walk_ticketlock(struct ttm_bo_lru_cursor *curs,
+ struct ttm_buffer_object *bo)
{
+ struct ttm_lru_walk_arg *arg = curs->arg;
struct dma_resv *resv = bo->base.resv;
int ret;
@@ -807,7 +806,7 @@ static int ttm_lru_walk_ticketlock(struct ttm_lru_walk_arg *arg,
ret = dma_resv_lock(resv, arg->ticket);
if (!ret) {
- *needs_unlock = true;
+ curs->needs_unlock = true;
/*
* Only a single ticketlock per loop. Ticketlocks are prone
* to return -EDEADLK causing the eviction to fail, so
@@ -823,12 +822,6 @@ static int ttm_lru_walk_ticketlock(struct ttm_lru_walk_arg *arg,
return ret;
}
-static void ttm_lru_walk_unlock(struct ttm_buffer_object *bo, bool locked)
-{
- if (locked)
- dma_resv_unlock(bo->base.resv);
-}
-
/**
* ttm_lru_walk_for_evict() - Perform a LRU list walk, with actions taken on
* valid items.
@@ -863,64 +856,21 @@ static void ttm_lru_walk_unlock(struct ttm_buffer_object *bo, bool locked)
s64 ttm_lru_walk_for_evict(struct ttm_lru_walk *walk, struct ttm_device *bdev,
struct ttm_resource_manager *man, s64 target)
{
- struct ttm_resource_cursor cursor;
- struct ttm_resource *res;
+ struct ttm_bo_lru_cursor cursor;
+ struct ttm_buffer_object *bo;
s64 progress = 0;
s64 lret;
- spin_lock(&bdev->lru_lock);
- ttm_resource_cursor_init(&cursor, man);
- ttm_resource_manager_for_each_res(&cursor, res) {
- struct ttm_buffer_object *bo = res->bo;
- bool bo_needs_unlock = false;
- bool bo_locked = false;
- int mem_type;
-
- /*
- * Attempt a trylock before taking a reference on the bo,
- * since if we do it the other way around, and the trylock fails,
- * we need to drop the lru lock to put the bo.
- */
- if (ttm_lru_walk_trylock(&walk->arg, bo, &bo_needs_unlock))
- bo_locked = true;
- else if (!walk->arg.ticket || walk->arg.ctx->no_wait_gpu ||
- walk->arg.trylock_only)
- continue;
-
- if (!ttm_bo_get_unless_zero(bo)) {
- ttm_lru_walk_unlock(bo, bo_needs_unlock);
- continue;
- }
-
- mem_type = res->mem_type;
- spin_unlock(&bdev->lru_lock);
-
- lret = 0;
- if (!bo_locked)
- lret = ttm_lru_walk_ticketlock(&walk->arg, bo, &bo_needs_unlock);
-
- /*
- * Note that in between the release of the lru lock and the
- * ticketlock, the bo may have switched resource,
- * and also memory type, since the resource may have been
- * freed and allocated again with a different memory type.
- * In that case, just skip it.
- */
- if (!lret && bo->resource && bo->resource->mem_type == mem_type)
- lret = walk->ops->process_bo(walk, bo);
-
- ttm_lru_walk_unlock(bo, bo_needs_unlock);
- ttm_bo_put(bo);
+ ttm_bo_lru_for_each_reserved_guarded(&cursor, man, &walk->arg, bo) {
+ lret = walk->ops->process_bo(walk, bo);
if (lret == -EBUSY || lret == -EALREADY)
lret = 0;
progress = (lret < 0) ? lret : progress + lret;
-
- spin_lock(&bdev->lru_lock);
if (progress < 0 || progress >= target)
break;
}
- ttm_resource_cursor_fini(&cursor);
- spin_unlock(&bdev->lru_lock);
+ if (IS_ERR(bo))
+ return PTR_ERR(bo);
return progress;
}
@@ -960,10 +910,7 @@ EXPORT_SYMBOL(ttm_bo_lru_cursor_fini);
* @man: The ttm resource_manager whose LRU lists to iterate over.
* @arg: The ttm_lru_walk_arg to govern the walk.
*
- * Initialize a struct ttm_bo_lru_cursor. Currently only trylocking
- * or prelocked buffer objects are available as detailed by
- * @arg->ctx.resv and @arg->ctx.allow_res_evict. Ticketlocking is not
- * supported.
+ * Initialize a struct ttm_bo_lru_cursor.
*
* Return: Pointer to @curs. The function does not fail.
*/
@@ -981,21 +928,67 @@ ttm_bo_lru_cursor_init(struct ttm_bo_lru_cursor *curs,
EXPORT_SYMBOL(ttm_bo_lru_cursor_init);
static struct ttm_buffer_object *
-ttm_bo_from_res_reserved(struct ttm_resource *res, struct ttm_bo_lru_cursor *curs)
+__ttm_bo_lru_cursor_next(struct ttm_bo_lru_cursor *curs)
{
- struct ttm_buffer_object *bo = res->bo;
+ spinlock_t *lru_lock = &curs->res_curs.man->bdev->lru_lock;
+ struct ttm_resource *res = NULL;
+ struct ttm_buffer_object *bo;
+ struct ttm_lru_walk_arg *arg = curs->arg;
+ bool first = !curs->bo;
- if (!ttm_lru_walk_trylock(curs->arg, bo, &curs->needs_unlock))
- return NULL;
+ ttm_bo_lru_cursor_cleanup_bo(curs);
- if (!ttm_bo_get_unless_zero(bo)) {
- if (curs->needs_unlock)
- dma_resv_unlock(bo->base.resv);
- return NULL;
+ spin_lock(lru_lock);
+ for (;;) {
+ int mem_type, ret = 0;
+ bool bo_locked = false;
+
+ if (first) {
+ res = ttm_resource_manager_first(&curs->res_curs);
+ first = false;
+ } else {
+ res = ttm_resource_manager_next(&curs->res_curs);
+ }
+ if (!res)
+ break;
+
+ 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)
+ continue;
+
+ if (!ttm_bo_get_unless_zero(bo)) {
+ if (curs->needs_unlock)
+ dma_resv_unlock(bo->base.resv);
+ continue;
+ }
+
+ mem_type = res->mem_type;
+ spin_unlock(lru_lock);
+ if (!bo_locked)
+ ret = ttm_lru_walk_ticketlock(curs, bo);
+
+ /*
+ * Note that in between the release of the lru lock and the
+ * ticketlock, the bo may have switched resource,
+ * and also memory type, since the resource may have been
+ * freed and allocated again with a different memory type.
+ * In that case, just skip it.
+ */
+ curs->bo = bo;
+ if (!ret && bo->resource && bo->resource->mem_type == mem_type)
+ return bo;
+
+ ttm_bo_lru_cursor_cleanup_bo(curs);
+ if (ret && ret != -EALREADY)
+ return ERR_PTR(ret);
+
+ spin_lock(lru_lock);
}
- curs->bo = bo;
- return bo;
+ spin_unlock(lru_lock);
+ return res ? bo : NULL;
}
/**
@@ -1009,25 +1002,7 @@ ttm_bo_from_res_reserved(struct ttm_resource *res, struct ttm_bo_lru_cursor *cur
*/
struct ttm_buffer_object *ttm_bo_lru_cursor_next(struct ttm_bo_lru_cursor *curs)
{
- spinlock_t *lru_lock = &curs->res_curs.man->bdev->lru_lock;
- struct ttm_resource *res = NULL;
- struct ttm_buffer_object *bo;
-
- ttm_bo_lru_cursor_cleanup_bo(curs);
-
- spin_lock(lru_lock);
- for (;;) {
- res = ttm_resource_manager_next(&curs->res_curs);
- if (!res)
- break;
-
- bo = ttm_bo_from_res_reserved(res, curs);
- if (bo)
- break;
- }
-
- spin_unlock(lru_lock);
- return res ? bo : NULL;
+ return __ttm_bo_lru_cursor_next(curs);
}
EXPORT_SYMBOL(ttm_bo_lru_cursor_next);
@@ -1041,21 +1016,8 @@ EXPORT_SYMBOL(ttm_bo_lru_cursor_next);
*/
struct ttm_buffer_object *ttm_bo_lru_cursor_first(struct ttm_bo_lru_cursor *curs)
{
- spinlock_t *lru_lock = &curs->res_curs.man->bdev->lru_lock;
- struct ttm_buffer_object *bo;
- struct ttm_resource *res;
-
- spin_lock(lru_lock);
- res = ttm_resource_manager_first(&curs->res_curs);
- if (!res) {
- spin_unlock(lru_lock);
- return NULL;
- }
-
- bo = ttm_bo_from_res_reserved(res, curs);
- spin_unlock(lru_lock);
-
- return bo ? bo : ttm_bo_lru_cursor_next(curs);
+ ttm_bo_lru_cursor_cleanup_bo(curs);
+ return __ttm_bo_lru_cursor_next(curs);
}
EXPORT_SYMBOL(ttm_bo_lru_cursor_first);
diff --git a/drivers/gpu/drm/xe/xe_shrinker.c b/drivers/gpu/drm/xe/xe_shrinker.c
index f8a1129da2c3..1c3c04d52f55 100644
--- a/drivers/gpu/drm/xe/xe_shrinker.c
+++ b/drivers/gpu/drm/xe/xe_shrinker.c
@@ -66,7 +66,10 @@ static s64 xe_shrinker_walk(struct xe_device *xe,
struct ttm_resource_manager *man = ttm_manager_type(&xe->ttm, mem_type);
struct ttm_bo_lru_cursor curs;
struct ttm_buffer_object *ttm_bo;
- struct ttm_lru_walk_arg arg = {.ctx = ctx};
+ struct ttm_lru_walk_arg arg = {
+ .ctx = ctx,
+ .trylock_only = true,
+ };
if (!man || !man->use_tt)
continue;
@@ -83,6 +86,8 @@ static s64 xe_shrinker_walk(struct xe_device *xe,
if (*scanned >= to_scan)
break;
}
+ /* Trylocks should never error, just fail. */
+ xe_assert(xe, !IS_ERR(ttm_bo));
}
return freed;
diff --git a/include/drm/ttm/ttm_bo.h b/include/drm/ttm/ttm_bo.h
index ab9a6b343a53..894ff7ccd68e 100644
--- a/include/drm/ttm/ttm_bo.h
+++ b/include/drm/ttm/ttm_bo.h
@@ -529,10 +529,15 @@ class_ttm_bo_lru_cursor_lock_ptr(class_ttm_bo_lru_cursor_t *_T)
* up at looping termination, even if terminated prematurely by, for
* example a return or break statement. Exiting the loop will also unlock
* (if needed) and unreference @_bo.
+ *
+ * Return: If locking of a bo returns an error, then iteration is terminated
+ * and @_bo is set to a corresponding error pointer. It's illegal to
+ * dereference @_bo after loop exit.
*/
#define ttm_bo_lru_for_each_reserved_guarded(_cursor, _man, _arg, _bo) \
scoped_guard(ttm_bo_lru_cursor, _cursor, _man, _arg) \
- for ((_bo) = ttm_bo_lru_cursor_first(_cursor); (_bo); \
- (_bo) = ttm_bo_lru_cursor_next(_cursor))
+ for ((_bo) = ttm_bo_lru_cursor_first(_cursor); \
+ !IS_ERR_OR_NULL(_bo); \
+ (_bo) = ttm_bo_lru_cursor_next(_cursor))
#endif
--
2.49.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v2 3/3] drm/ttm, drm_xe, Implement ttm_lru_walk_for_evict() using the guarded LRU iteration
2025-06-23 15:53 ` [PATCH v2 3/3] drm/ttm, drm_xe, Implement ttm_lru_walk_for_evict() using the guarded LRU iteration Thomas Hellström
@ 2025-06-26 11:06 ` Christian König
2025-06-26 13:00 ` Thomas Hellström
0 siblings, 1 reply; 13+ messages in thread
From: Christian König @ 2025-06-26 11:06 UTC (permalink / raw)
To: Thomas Hellström, intel-xe
Cc: dri-devel, airlied, Matthew Brost, Matthew Auld
On 23.06.25 17:53, Thomas Hellström wrote:
> To avoid duplicating the tricky bo locking implementation,
> Implement ttm_lru_walk_for_evict() using the guarded bo LRU iteration.
>
> To facilitate this, support ticketlocking from the guarded bo LRU
> iteration.
>
> v2:
> - Clean up some static function interfaces (Christian König)
> - Fix Handling -EALREADY from ticketlocking in the loop by
> skipping to the next item. (Intel CI)
>
> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
I have a cold at the moment so I might have missed something, but still feel free to add Reviewed-by: Christian König <christian.koenig@amd.com>.
> ---
> drivers/gpu/drm/ttm/ttm_bo_util.c | 188 ++++++++++++------------------
> drivers/gpu/drm/xe/xe_shrinker.c | 7 +-
> include/drm/ttm/ttm_bo.h | 9 +-
> 3 files changed, 88 insertions(+), 116 deletions(-)
>
> diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
> index 6de1f0c432c2..250675d56b1c 100644
> --- a/drivers/gpu/drm/ttm/ttm_bo_util.c
> +++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
> @@ -773,16 +773,15 @@ int ttm_bo_pipeline_gutting(struct ttm_buffer_object *bo)
> return ret;
> }
>
> -static bool ttm_lru_walk_trylock(struct ttm_lru_walk_arg *arg,
> - struct ttm_buffer_object *bo,
> - bool *needs_unlock)
> +static bool ttm_lru_walk_trylock(struct ttm_bo_lru_cursor *curs,
> + struct ttm_buffer_object *bo)
> {
> - struct ttm_operation_ctx *ctx = arg->ctx;
> + struct ttm_operation_ctx *ctx = curs->arg->ctx;
>
> - *needs_unlock = false;
> + curs->needs_unlock = false;
>
> if (dma_resv_trylock(bo->base.resv)) {
> - *needs_unlock = true;
> + curs->needs_unlock = true;
> return true;
> }
>
> @@ -794,10 +793,10 @@ static bool ttm_lru_walk_trylock(struct ttm_lru_walk_arg *arg,
> return false;
> }
>
> -static int ttm_lru_walk_ticketlock(struct ttm_lru_walk_arg *arg,
> - struct ttm_buffer_object *bo,
> - bool *needs_unlock)
> +static int ttm_lru_walk_ticketlock(struct ttm_bo_lru_cursor *curs,
> + struct ttm_buffer_object *bo)
> {
> + struct ttm_lru_walk_arg *arg = curs->arg;
> struct dma_resv *resv = bo->base.resv;
> int ret;
>
> @@ -807,7 +806,7 @@ static int ttm_lru_walk_ticketlock(struct ttm_lru_walk_arg *arg,
> ret = dma_resv_lock(resv, arg->ticket);
>
> if (!ret) {
> - *needs_unlock = true;
> + curs->needs_unlock = true;
> /*
> * Only a single ticketlock per loop. Ticketlocks are prone
> * to return -EDEADLK causing the eviction to fail, so
> @@ -823,12 +822,6 @@ static int ttm_lru_walk_ticketlock(struct ttm_lru_walk_arg *arg,
> return ret;
> }
>
> -static void ttm_lru_walk_unlock(struct ttm_buffer_object *bo, bool locked)
> -{
> - if (locked)
> - dma_resv_unlock(bo->base.resv);
> -}
> -
> /**
> * ttm_lru_walk_for_evict() - Perform a LRU list walk, with actions taken on
> * valid items.
> @@ -863,64 +856,21 @@ static void ttm_lru_walk_unlock(struct ttm_buffer_object *bo, bool locked)
> s64 ttm_lru_walk_for_evict(struct ttm_lru_walk *walk, struct ttm_device *bdev,
> struct ttm_resource_manager *man, s64 target)
> {
> - struct ttm_resource_cursor cursor;
> - struct ttm_resource *res;
> + struct ttm_bo_lru_cursor cursor;
> + struct ttm_buffer_object *bo;
> s64 progress = 0;
> s64 lret;
>
> - spin_lock(&bdev->lru_lock);
> - ttm_resource_cursor_init(&cursor, man);
> - ttm_resource_manager_for_each_res(&cursor, res) {
> - struct ttm_buffer_object *bo = res->bo;
> - bool bo_needs_unlock = false;
> - bool bo_locked = false;
> - int mem_type;
> -
> - /*
> - * Attempt a trylock before taking a reference on the bo,
> - * since if we do it the other way around, and the trylock fails,
> - * we need to drop the lru lock to put the bo.
> - */
> - if (ttm_lru_walk_trylock(&walk->arg, bo, &bo_needs_unlock))
> - bo_locked = true;
> - else if (!walk->arg.ticket || walk->arg.ctx->no_wait_gpu ||
> - walk->arg.trylock_only)
> - continue;
> -
> - if (!ttm_bo_get_unless_zero(bo)) {
> - ttm_lru_walk_unlock(bo, bo_needs_unlock);
> - continue;
> - }
> -
> - mem_type = res->mem_type;
> - spin_unlock(&bdev->lru_lock);
> -
> - lret = 0;
> - if (!bo_locked)
> - lret = ttm_lru_walk_ticketlock(&walk->arg, bo, &bo_needs_unlock);
> -
> - /*
> - * Note that in between the release of the lru lock and the
> - * ticketlock, the bo may have switched resource,
> - * and also memory type, since the resource may have been
> - * freed and allocated again with a different memory type.
> - * In that case, just skip it.
> - */
> - if (!lret && bo->resource && bo->resource->mem_type == mem_type)
> - lret = walk->ops->process_bo(walk, bo);
> -
> - ttm_lru_walk_unlock(bo, bo_needs_unlock);
> - ttm_bo_put(bo);
> + ttm_bo_lru_for_each_reserved_guarded(&cursor, man, &walk->arg, bo) {
> + lret = walk->ops->process_bo(walk, bo);
> if (lret == -EBUSY || lret == -EALREADY)
> lret = 0;
> progress = (lret < 0) ? lret : progress + lret;
> -
> - spin_lock(&bdev->lru_lock);
> if (progress < 0 || progress >= target)
> break;
> }
> - ttm_resource_cursor_fini(&cursor);
> - spin_unlock(&bdev->lru_lock);
> + if (IS_ERR(bo))
> + return PTR_ERR(bo);
>
> return progress;
> }
> @@ -960,10 +910,7 @@ EXPORT_SYMBOL(ttm_bo_lru_cursor_fini);
> * @man: The ttm resource_manager whose LRU lists to iterate over.
> * @arg: The ttm_lru_walk_arg to govern the walk.
> *
> - * Initialize a struct ttm_bo_lru_cursor. Currently only trylocking
> - * or prelocked buffer objects are available as detailed by
> - * @arg->ctx.resv and @arg->ctx.allow_res_evict. Ticketlocking is not
> - * supported.
> + * Initialize a struct ttm_bo_lru_cursor.
> *
> * Return: Pointer to @curs. The function does not fail.
> */
> @@ -981,21 +928,67 @@ ttm_bo_lru_cursor_init(struct ttm_bo_lru_cursor *curs,
> EXPORT_SYMBOL(ttm_bo_lru_cursor_init);
>
> static struct ttm_buffer_object *
> -ttm_bo_from_res_reserved(struct ttm_resource *res, struct ttm_bo_lru_cursor *curs)
> +__ttm_bo_lru_cursor_next(struct ttm_bo_lru_cursor *curs)
> {
> - struct ttm_buffer_object *bo = res->bo;
> + spinlock_t *lru_lock = &curs->res_curs.man->bdev->lru_lock;
> + struct ttm_resource *res = NULL;
> + struct ttm_buffer_object *bo;
> + struct ttm_lru_walk_arg *arg = curs->arg;
> + bool first = !curs->bo;
>
> - if (!ttm_lru_walk_trylock(curs->arg, bo, &curs->needs_unlock))
> - return NULL;
> + ttm_bo_lru_cursor_cleanup_bo(curs);
>
> - if (!ttm_bo_get_unless_zero(bo)) {
> - if (curs->needs_unlock)
> - dma_resv_unlock(bo->base.resv);
> - return NULL;
> + spin_lock(lru_lock);
> + for (;;) {
> + int mem_type, ret = 0;
> + bool bo_locked = false;
> +
> + if (first) {
> + res = ttm_resource_manager_first(&curs->res_curs);
> + first = false;
> + } else {
> + res = ttm_resource_manager_next(&curs->res_curs);
> + }
> + if (!res)
> + break;
> +
> + 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)
> + continue;
> +
> + if (!ttm_bo_get_unless_zero(bo)) {
> + if (curs->needs_unlock)
> + dma_resv_unlock(bo->base.resv);
> + continue;
> + }
> +
> + mem_type = res->mem_type;
> + spin_unlock(lru_lock);
> + if (!bo_locked)
> + ret = ttm_lru_walk_ticketlock(curs, bo);
> +
> + /*
> + * Note that in between the release of the lru lock and the
> + * ticketlock, the bo may have switched resource,
> + * and also memory type, since the resource may have been
> + * freed and allocated again with a different memory type.
> + * In that case, just skip it.
> + */
> + curs->bo = bo;
> + if (!ret && bo->resource && bo->resource->mem_type == mem_type)
> + return bo;
> +
> + ttm_bo_lru_cursor_cleanup_bo(curs);
> + if (ret && ret != -EALREADY)
> + return ERR_PTR(ret);
> +
> + spin_lock(lru_lock);
> }
>
> - curs->bo = bo;
> - return bo;
> + spin_unlock(lru_lock);
> + return res ? bo : NULL;
> }
>
> /**
> @@ -1009,25 +1002,7 @@ ttm_bo_from_res_reserved(struct ttm_resource *res, struct ttm_bo_lru_cursor *cur
> */
> struct ttm_buffer_object *ttm_bo_lru_cursor_next(struct ttm_bo_lru_cursor *curs)
> {
> - spinlock_t *lru_lock = &curs->res_curs.man->bdev->lru_lock;
> - struct ttm_resource *res = NULL;
> - struct ttm_buffer_object *bo;
> -
> - ttm_bo_lru_cursor_cleanup_bo(curs);
> -
> - spin_lock(lru_lock);
> - for (;;) {
> - res = ttm_resource_manager_next(&curs->res_curs);
> - if (!res)
> - break;
> -
> - bo = ttm_bo_from_res_reserved(res, curs);
> - if (bo)
> - break;
> - }
> -
> - spin_unlock(lru_lock);
> - return res ? bo : NULL;
> + return __ttm_bo_lru_cursor_next(curs);
> }
> EXPORT_SYMBOL(ttm_bo_lru_cursor_next);
>
> @@ -1041,21 +1016,8 @@ EXPORT_SYMBOL(ttm_bo_lru_cursor_next);
> */
> struct ttm_buffer_object *ttm_bo_lru_cursor_first(struct ttm_bo_lru_cursor *curs)
> {
> - spinlock_t *lru_lock = &curs->res_curs.man->bdev->lru_lock;
> - struct ttm_buffer_object *bo;
> - struct ttm_resource *res;
> -
> - spin_lock(lru_lock);
> - res = ttm_resource_manager_first(&curs->res_curs);
> - if (!res) {
> - spin_unlock(lru_lock);
> - return NULL;
> - }
> -
> - bo = ttm_bo_from_res_reserved(res, curs);
> - spin_unlock(lru_lock);
> -
> - return bo ? bo : ttm_bo_lru_cursor_next(curs);
> + ttm_bo_lru_cursor_cleanup_bo(curs);
> + return __ttm_bo_lru_cursor_next(curs);
> }
> EXPORT_SYMBOL(ttm_bo_lru_cursor_first);
>
> diff --git a/drivers/gpu/drm/xe/xe_shrinker.c b/drivers/gpu/drm/xe/xe_shrinker.c
> index f8a1129da2c3..1c3c04d52f55 100644
> --- a/drivers/gpu/drm/xe/xe_shrinker.c
> +++ b/drivers/gpu/drm/xe/xe_shrinker.c
> @@ -66,7 +66,10 @@ static s64 xe_shrinker_walk(struct xe_device *xe,
> struct ttm_resource_manager *man = ttm_manager_type(&xe->ttm, mem_type);
> struct ttm_bo_lru_cursor curs;
> struct ttm_buffer_object *ttm_bo;
> - struct ttm_lru_walk_arg arg = {.ctx = ctx};
> + struct ttm_lru_walk_arg arg = {
> + .ctx = ctx,
> + .trylock_only = true,
> + };
>
> if (!man || !man->use_tt)
> continue;
> @@ -83,6 +86,8 @@ static s64 xe_shrinker_walk(struct xe_device *xe,
> if (*scanned >= to_scan)
> break;
> }
> + /* Trylocks should never error, just fail. */
> + xe_assert(xe, !IS_ERR(ttm_bo));
> }
>
> return freed;
> diff --git a/include/drm/ttm/ttm_bo.h b/include/drm/ttm/ttm_bo.h
> index ab9a6b343a53..894ff7ccd68e 100644
> --- a/include/drm/ttm/ttm_bo.h
> +++ b/include/drm/ttm/ttm_bo.h
> @@ -529,10 +529,15 @@ class_ttm_bo_lru_cursor_lock_ptr(class_ttm_bo_lru_cursor_t *_T)
> * up at looping termination, even if terminated prematurely by, for
> * example a return or break statement. Exiting the loop will also unlock
> * (if needed) and unreference @_bo.
> + *
> + * Return: If locking of a bo returns an error, then iteration is terminated
> + * and @_bo is set to a corresponding error pointer. It's illegal to
> + * dereference @_bo after loop exit.
> */
> #define ttm_bo_lru_for_each_reserved_guarded(_cursor, _man, _arg, _bo) \
> scoped_guard(ttm_bo_lru_cursor, _cursor, _man, _arg) \
> - for ((_bo) = ttm_bo_lru_cursor_first(_cursor); (_bo); \
> - (_bo) = ttm_bo_lru_cursor_next(_cursor))
> + for ((_bo) = ttm_bo_lru_cursor_first(_cursor); \
> + !IS_ERR_OR_NULL(_bo); \
> + (_bo) = ttm_bo_lru_cursor_next(_cursor))
>
> #endif
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 3/3] drm/ttm, drm_xe, Implement ttm_lru_walk_for_evict() using the guarded LRU iteration
2025-06-26 11:06 ` Christian König
@ 2025-06-26 13:00 ` Thomas Hellström
0 siblings, 0 replies; 13+ messages in thread
From: Thomas Hellström @ 2025-06-26 13:00 UTC (permalink / raw)
To: Christian König, intel-xe
Cc: dri-devel, airlied, Matthew Brost, Matthew Auld
On Thu, 2025-06-26 at 13:06 +0200, Christian König wrote:
> On 23.06.25 17:53, Thomas Hellström wrote:
> > To avoid duplicating the tricky bo locking implementation,
> > Implement ttm_lru_walk_for_evict() using the guarded bo LRU
> > iteration.
> >
> > To facilitate this, support ticketlocking from the guarded bo LRU
> > iteration.
> >
> > v2:
> > - Clean up some static function interfaces (Christian König)
> > - Fix Handling -EALREADY from ticketlocking in the loop by
> > skipping to the next item. (Intel CI)
> >
> > Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>
> I have a cold at the moment so I might have missed something, but
> still feel free to add Reviewed-by: Christian König
> <christian.koenig@amd.com>.
Thanks, I'll likely be merging this through drm-misc-next.
/Thomas
>
> > ---
> > drivers/gpu/drm/ttm/ttm_bo_util.c | 188 ++++++++++++--------------
> > ----
> > drivers/gpu/drm/xe/xe_shrinker.c | 7 +-
> > include/drm/ttm/ttm_bo.h | 9 +-
> > 3 files changed, 88 insertions(+), 116 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c
> > b/drivers/gpu/drm/ttm/ttm_bo_util.c
> > index 6de1f0c432c2..250675d56b1c 100644
> > --- a/drivers/gpu/drm/ttm/ttm_bo_util.c
> > +++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
> > @@ -773,16 +773,15 @@ int ttm_bo_pipeline_gutting(struct
> > ttm_buffer_object *bo)
> > return ret;
> > }
> >
> > -static bool ttm_lru_walk_trylock(struct ttm_lru_walk_arg *arg,
> > - struct ttm_buffer_object *bo,
> > - bool *needs_unlock)
> > +static bool ttm_lru_walk_trylock(struct ttm_bo_lru_cursor *curs,
> > + struct ttm_buffer_object *bo)
> > {
> > - struct ttm_operation_ctx *ctx = arg->ctx;
> > + struct ttm_operation_ctx *ctx = curs->arg->ctx;
> >
> > - *needs_unlock = false;
> > + curs->needs_unlock = false;
> >
> > if (dma_resv_trylock(bo->base.resv)) {
> > - *needs_unlock = true;
> > + curs->needs_unlock = true;
> > return true;
> > }
> >
> > @@ -794,10 +793,10 @@ static bool ttm_lru_walk_trylock(struct
> > ttm_lru_walk_arg *arg,
> > return false;
> > }
> >
> > -static int ttm_lru_walk_ticketlock(struct ttm_lru_walk_arg *arg,
> > - struct ttm_buffer_object *bo,
> > - bool *needs_unlock)
> > +static int ttm_lru_walk_ticketlock(struct ttm_bo_lru_cursor *curs,
> > + struct ttm_buffer_object *bo)
> > {
> > + struct ttm_lru_walk_arg *arg = curs->arg;
> > struct dma_resv *resv = bo->base.resv;
> > int ret;
> >
> > @@ -807,7 +806,7 @@ static int ttm_lru_walk_ticketlock(struct
> > ttm_lru_walk_arg *arg,
> > ret = dma_resv_lock(resv, arg->ticket);
> >
> > if (!ret) {
> > - *needs_unlock = true;
> > + curs->needs_unlock = true;
> > /*
> > * Only a single ticketlock per loop. Ticketlocks
> > are prone
> > * to return -EDEADLK causing the eviction to
> > fail, so
> > @@ -823,12 +822,6 @@ static int ttm_lru_walk_ticketlock(struct
> > ttm_lru_walk_arg *arg,
> > return ret;
> > }
> >
> > -static void ttm_lru_walk_unlock(struct ttm_buffer_object *bo, bool
> > locked)
> > -{
> > - if (locked)
> > - dma_resv_unlock(bo->base.resv);
> > -}
> > -
> > /**
> > * ttm_lru_walk_for_evict() - Perform a LRU list walk, with
> > actions taken on
> > * valid items.
> > @@ -863,64 +856,21 @@ static void ttm_lru_walk_unlock(struct
> > ttm_buffer_object *bo, bool locked)
> > s64 ttm_lru_walk_for_evict(struct ttm_lru_walk *walk, struct
> > ttm_device *bdev,
> > struct ttm_resource_manager *man, s64
> > target)
> > {
> > - struct ttm_resource_cursor cursor;
> > - struct ttm_resource *res;
> > + struct ttm_bo_lru_cursor cursor;
> > + struct ttm_buffer_object *bo;
> > s64 progress = 0;
> > s64 lret;
> >
> > - spin_lock(&bdev->lru_lock);
> > - ttm_resource_cursor_init(&cursor, man);
> > - ttm_resource_manager_for_each_res(&cursor, res) {
> > - struct ttm_buffer_object *bo = res->bo;
> > - bool bo_needs_unlock = false;
> > - bool bo_locked = false;
> > - int mem_type;
> > -
> > - /*
> > - * Attempt a trylock before taking a reference on
> > the bo,
> > - * since if we do it the other way around, and the
> > trylock fails,
> > - * we need to drop the lru lock to put the bo.
> > - */
> > - if (ttm_lru_walk_trylock(&walk->arg, bo,
> > &bo_needs_unlock))
> > - bo_locked = true;
> > - else if (!walk->arg.ticket || walk->arg.ctx-
> > >no_wait_gpu ||
> > - walk->arg.trylock_only)
> > - continue;
> > -
> > - if (!ttm_bo_get_unless_zero(bo)) {
> > - ttm_lru_walk_unlock(bo, bo_needs_unlock);
> > - continue;
> > - }
> > -
> > - mem_type = res->mem_type;
> > - spin_unlock(&bdev->lru_lock);
> > -
> > - lret = 0;
> > - if (!bo_locked)
> > - lret = ttm_lru_walk_ticketlock(&walk->arg,
> > bo, &bo_needs_unlock);
> > -
> > - /*
> > - * Note that in between the release of the lru
> > lock and the
> > - * ticketlock, the bo may have switched resource,
> > - * and also memory type, since the resource may
> > have been
> > - * freed and allocated again with a different
> > memory type.
> > - * In that case, just skip it.
> > - */
> > - if (!lret && bo->resource && bo->resource-
> > >mem_type == mem_type)
> > - lret = walk->ops->process_bo(walk, bo);
> > -
> > - ttm_lru_walk_unlock(bo, bo_needs_unlock);
> > - ttm_bo_put(bo);
> > + ttm_bo_lru_for_each_reserved_guarded(&cursor, man, &walk-
> > >arg, bo) {
> > + lret = walk->ops->process_bo(walk, bo);
> > if (lret == -EBUSY || lret == -EALREADY)
> > lret = 0;
> > progress = (lret < 0) ? lret : progress + lret;
> > -
> > - spin_lock(&bdev->lru_lock);
> > if (progress < 0 || progress >= target)
> > break;
> > }
> > - ttm_resource_cursor_fini(&cursor);
> > - spin_unlock(&bdev->lru_lock);
> > + if (IS_ERR(bo))
> > + return PTR_ERR(bo);
> >
> > return progress;
> > }
> > @@ -960,10 +910,7 @@ EXPORT_SYMBOL(ttm_bo_lru_cursor_fini);
> > * @man: The ttm resource_manager whose LRU lists to iterate over.
> > * @arg: The ttm_lru_walk_arg to govern the walk.
> > *
> > - * Initialize a struct ttm_bo_lru_cursor. Currently only
> > trylocking
> > - * or prelocked buffer objects are available as detailed by
> > - * @arg->ctx.resv and @arg->ctx.allow_res_evict. Ticketlocking is
> > not
> > - * supported.
> > + * Initialize a struct ttm_bo_lru_cursor.
> > *
> > * Return: Pointer to @curs. The function does not fail.
> > */
> > @@ -981,21 +928,67 @@ ttm_bo_lru_cursor_init(struct
> > ttm_bo_lru_cursor *curs,
> > EXPORT_SYMBOL(ttm_bo_lru_cursor_init);
> >
> > static struct ttm_buffer_object *
> > -ttm_bo_from_res_reserved(struct ttm_resource *res, struct
> > ttm_bo_lru_cursor *curs)
> > +__ttm_bo_lru_cursor_next(struct ttm_bo_lru_cursor *curs)
> > {
> > - struct ttm_buffer_object *bo = res->bo;
> > + spinlock_t *lru_lock = &curs->res_curs.man->bdev-
> > >lru_lock;
> > + struct ttm_resource *res = NULL;
> > + struct ttm_buffer_object *bo;
> > + struct ttm_lru_walk_arg *arg = curs->arg;
> > + bool first = !curs->bo;
> >
> > - if (!ttm_lru_walk_trylock(curs->arg, bo, &curs-
> > >needs_unlock))
> > - return NULL;
> > + ttm_bo_lru_cursor_cleanup_bo(curs);
> >
> > - if (!ttm_bo_get_unless_zero(bo)) {
> > - if (curs->needs_unlock)
> > - dma_resv_unlock(bo->base.resv);
> > - return NULL;
> > + spin_lock(lru_lock);
> > + for (;;) {
> > + int mem_type, ret = 0;
> > + bool bo_locked = false;
> > +
> > + if (first) {
> > + res = ttm_resource_manager_first(&curs-
> > >res_curs);
> > + first = false;
> > + } else {
> > + res = ttm_resource_manager_next(&curs-
> > >res_curs);
> > + }
> > + if (!res)
> > + break;
> > +
> > + 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)
> > + continue;
> > +
> > + if (!ttm_bo_get_unless_zero(bo)) {
> > + if (curs->needs_unlock)
> > + dma_resv_unlock(bo->base.resv);
> > + continue;
> > + }
> > +
> > + mem_type = res->mem_type;
> > + spin_unlock(lru_lock);
> > + if (!bo_locked)
> > + ret = ttm_lru_walk_ticketlock(curs, bo);
> > +
> > + /*
> > + * Note that in between the release of the lru
> > lock and the
> > + * ticketlock, the bo may have switched resource,
> > + * and also memory type, since the resource may
> > have been
> > + * freed and allocated again with a different
> > memory type.
> > + * In that case, just skip it.
> > + */
> > + curs->bo = bo;
> > + if (!ret && bo->resource && bo->resource->mem_type
> > == mem_type)
> > + return bo;
> > +
> > + ttm_bo_lru_cursor_cleanup_bo(curs);
> > + if (ret && ret != -EALREADY)
> > + return ERR_PTR(ret);
> > +
> > + spin_lock(lru_lock);
> > }
> >
> > - curs->bo = bo;
> > - return bo;
> > + spin_unlock(lru_lock);
> > + return res ? bo : NULL;
> > }
> >
> > /**
> > @@ -1009,25 +1002,7 @@ ttm_bo_from_res_reserved(struct ttm_resource
> > *res, struct ttm_bo_lru_cursor *cur
> > */
> > struct ttm_buffer_object *ttm_bo_lru_cursor_next(struct
> > ttm_bo_lru_cursor *curs)
> > {
> > - spinlock_t *lru_lock = &curs->res_curs.man->bdev-
> > >lru_lock;
> > - struct ttm_resource *res = NULL;
> > - struct ttm_buffer_object *bo;
> > -
> > - ttm_bo_lru_cursor_cleanup_bo(curs);
> > -
> > - spin_lock(lru_lock);
> > - for (;;) {
> > - res = ttm_resource_manager_next(&curs->res_curs);
> > - if (!res)
> > - break;
> > -
> > - bo = ttm_bo_from_res_reserved(res, curs);
> > - if (bo)
> > - break;
> > - }
> > -
> > - spin_unlock(lru_lock);
> > - return res ? bo : NULL;
> > + return __ttm_bo_lru_cursor_next(curs);
> > }
> > EXPORT_SYMBOL(ttm_bo_lru_cursor_next);
> >
> > @@ -1041,21 +1016,8 @@ EXPORT_SYMBOL(ttm_bo_lru_cursor_next);
> > */
> > struct ttm_buffer_object *ttm_bo_lru_cursor_first(struct
> > ttm_bo_lru_cursor *curs)
> > {
> > - spinlock_t *lru_lock = &curs->res_curs.man->bdev-
> > >lru_lock;
> > - struct ttm_buffer_object *bo;
> > - struct ttm_resource *res;
> > -
> > - spin_lock(lru_lock);
> > - res = ttm_resource_manager_first(&curs->res_curs);
> > - if (!res) {
> > - spin_unlock(lru_lock);
> > - return NULL;
> > - }
> > -
> > - bo = ttm_bo_from_res_reserved(res, curs);
> > - spin_unlock(lru_lock);
> > -
> > - return bo ? bo : ttm_bo_lru_cursor_next(curs);
> > + ttm_bo_lru_cursor_cleanup_bo(curs);
> > + return __ttm_bo_lru_cursor_next(curs);
> > }
> > EXPORT_SYMBOL(ttm_bo_lru_cursor_first);
> >
> > diff --git a/drivers/gpu/drm/xe/xe_shrinker.c
> > b/drivers/gpu/drm/xe/xe_shrinker.c
> > index f8a1129da2c3..1c3c04d52f55 100644
> > --- a/drivers/gpu/drm/xe/xe_shrinker.c
> > +++ b/drivers/gpu/drm/xe/xe_shrinker.c
> > @@ -66,7 +66,10 @@ static s64 xe_shrinker_walk(struct xe_device
> > *xe,
> > struct ttm_resource_manager *man =
> > ttm_manager_type(&xe->ttm, mem_type);
> > struct ttm_bo_lru_cursor curs;
> > struct ttm_buffer_object *ttm_bo;
> > - struct ttm_lru_walk_arg arg = {.ctx = ctx};
> > + struct ttm_lru_walk_arg arg = {
> > + .ctx = ctx,
> > + .trylock_only = true,
> > + };
> >
> > if (!man || !man->use_tt)
> > continue;
> > @@ -83,6 +86,8 @@ static s64 xe_shrinker_walk(struct xe_device *xe,
> > if (*scanned >= to_scan)
> > break;
> > }
> > + /* Trylocks should never error, just fail. */
> > + xe_assert(xe, !IS_ERR(ttm_bo));
> > }
> >
> > return freed;
> > diff --git a/include/drm/ttm/ttm_bo.h b/include/drm/ttm/ttm_bo.h
> > index ab9a6b343a53..894ff7ccd68e 100644
> > --- a/include/drm/ttm/ttm_bo.h
> > +++ b/include/drm/ttm/ttm_bo.h
> > @@ -529,10 +529,15 @@
> > class_ttm_bo_lru_cursor_lock_ptr(class_ttm_bo_lru_cursor_t *_T)
> > * up at looping termination, even if terminated prematurely by,
> > for
> > * example a return or break statement. Exiting the loop will also
> > unlock
> > * (if needed) and unreference @_bo.
> > + *
> > + * Return: If locking of a bo returns an error, then iteration is
> > terminated
> > + * and @_bo is set to a corresponding error pointer. It's illegal
> > to
> > + * dereference @_bo after loop exit.
> > */
> > #define ttm_bo_lru_for_each_reserved_guarded(_cursor, _man, _arg,
> > _bo) \
> > scoped_guard(ttm_bo_lru_cursor, _cursor, _man,
> > _arg) \
> > - for ((_bo) = ttm_bo_lru_cursor_first(_cursor);
> > (_bo); \
> > - (_bo) = ttm_bo_lru_cursor_next(_cursor))
> > + for ((_bo) =
> > ttm_bo_lru_cursor_first(_cursor); \
> > +
> > !IS_ERR_OR_NULL(_bo); \
> > + (_bo) = ttm_bo_lru_cursor_next(_cursor))
> >
> > #endif
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.checkpatch: warning for drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev2)
2025-06-23 15:53 [PATCH v2 0/3] drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks Thomas Hellström
` (2 preceding siblings ...)
2025-06-23 15:53 ` [PATCH v2 3/3] drm/ttm, drm_xe, Implement ttm_lru_walk_for_evict() using the guarded LRU iteration Thomas Hellström
@ 2025-06-23 16:00 ` Patchwork
2025-06-23 16:02 ` ✓ CI.KUnit: success " Patchwork
` (4 subsequent siblings)
8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-23 16:00 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe
== Series Details ==
Series: drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev2)
URL : https://patchwork.freedesktop.org/series/150242/
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
f8ff75ae1d2127635239b134695774ed4045d05b
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit cbd6c4ec7611685b346c4ad093431a4dcfd01877
Author: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Date: Mon Jun 23 17:53:13 2025 +0200
drm/ttm, drm_xe, Implement ttm_lru_walk_for_evict() using the guarded LRU iteration
To avoid duplicating the tricky bo locking implementation,
Implement ttm_lru_walk_for_evict() using the guarded bo LRU iteration.
To facilitate this, support ticketlocking from the guarded bo LRU
iteration.
v2:
- Clean up some static function interfaces (Christian König)
- Fix Handling -EALREADY from ticketlocking in the loop by
skipping to the next item. (Intel CI)
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
+ /mt/dim checkpatch 4d6ffa14a20201e284cfa94292fef8c73f618a90 drm-intel
315cc96d0dad drm/ttm: Use a struct for the common part of struct ttm_lru_walk and struct ttm_bo_lru_cursor
6d3c55d593de drm/ttm, drm/xe: Modify the struct ttm_bo_lru_walk_cursor initialization
-:127: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#127: FILE: include/drm/ttm/ttm_bo.h:533:
+#define ttm_bo_lru_for_each_reserved_guarded(_cursor, _man, _arg, _bo) \
+ scoped_guard(ttm_bo_lru_cursor, _cursor, _man, _arg) \
for ((_bo) = ttm_bo_lru_cursor_first(_cursor); (_bo); \
(_bo) = ttm_bo_lru_cursor_next(_cursor))
BUT SEE:
do {} while (0) advice is over-stated in a few situations:
The more obvious case is macros, like MODULE_PARM_DESC, invoked at
file-scope, where C disallows code (it must be in functions). See
$exceptions if you have one to add by name.
More troublesome is declarative macros used at top of new scope,
like DECLARE_PER_CPU. These might just compile with a do-while-0
wrapper, but would be incorrect. Most of these are handled by
detecting struct,union,etc declaration primitives in $exceptions.
Theres also macros called inside an if (block), which "return" an
expression. These cannot do-while, and need a ({}) wrapper.
Enjoy this qualification while we work to improve our heuristics.
-:127: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_cursor' - possible side-effects?
#127: FILE: include/drm/ttm/ttm_bo.h:533:
+#define ttm_bo_lru_for_each_reserved_guarded(_cursor, _man, _arg, _bo) \
+ scoped_guard(ttm_bo_lru_cursor, _cursor, _man, _arg) \
for ((_bo) = ttm_bo_lru_cursor_first(_cursor); (_bo); \
(_bo) = ttm_bo_lru_cursor_next(_cursor))
-:127: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_bo' - possible side-effects?
#127: FILE: include/drm/ttm/ttm_bo.h:533:
+#define ttm_bo_lru_for_each_reserved_guarded(_cursor, _man, _arg, _bo) \
+ scoped_guard(ttm_bo_lru_cursor, _cursor, _man, _arg) \
for ((_bo) = ttm_bo_lru_cursor_first(_cursor); (_bo); \
(_bo) = ttm_bo_lru_cursor_next(_cursor))
total: 1 errors, 0 warnings, 2 checks, 94 lines checked
cbd6c4ec7611 drm/ttm, drm_xe, Implement ttm_lru_walk_for_evict() using the guarded LRU iteration
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev2)
2025-06-23 15:53 [PATCH v2 0/3] drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks Thomas Hellström
` (3 preceding siblings ...)
2025-06-23 16:00 ` ✗ CI.checkpatch: warning for drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev2) Patchwork
@ 2025-06-23 16:02 ` Patchwork
2025-06-23 21:36 ` ✗ Xe.CI.Full: failure " Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-23 16:02 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe
== Series Details ==
Series: drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev2)
URL : https://patchwork.freedesktop.org/series/150242/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[16:00:21] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:00:25] 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
[16:01:01] Starting KUnit Kernel (1/1)...
[16:01:01] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:01:01] ================== guc_buf (11 subtests) ===================
[16:01:01] [PASSED] test_smallest
[16:01:01] [PASSED] test_largest
[16:01:01] [PASSED] test_granular
[16:01:01] [PASSED] test_unique
[16:01:01] [PASSED] test_overlap
[16:01:01] [PASSED] test_reusable
[16:01:01] [PASSED] test_too_big
[16:01:01] [PASSED] test_flush
[16:01:01] [PASSED] test_lookup
[16:01:01] [PASSED] test_data
[16:01:01] [PASSED] test_class
[16:01:01] ===================== [PASSED] guc_buf =====================
[16:01:01] =================== guc_dbm (7 subtests) ===================
[16:01:01] [PASSED] test_empty
[16:01:01] [PASSED] test_default
[16:01:01] ======================== test_size ========================
[16:01:01] [PASSED] 4
[16:01:01] [PASSED] 8
[16:01:01] [PASSED] 32
[16:01:01] [PASSED] 256
[16:01:01] ==================== [PASSED] test_size ====================
[16:01:01] ======================= test_reuse ========================
[16:01:01] [PASSED] 4
[16:01:01] [PASSED] 8
[16:01:01] [PASSED] 32
[16:01:01] [PASSED] 256
[16:01:01] =================== [PASSED] test_reuse ====================
[16:01:01] =================== test_range_overlap ====================
[16:01:01] [PASSED] 4
[16:01:01] [PASSED] 8
[16:01:01] [PASSED] 32
[16:01:01] [PASSED] 256
[16:01:01] =============== [PASSED] test_range_overlap ================
[16:01:01] =================== test_range_compact ====================
[16:01:01] [PASSED] 4
[16:01:01] [PASSED] 8
[16:01:01] [PASSED] 32
[16:01:01] [PASSED] 256
[16:01:01] =============== [PASSED] test_range_compact ================
[16:01:01] ==================== test_range_spare =====================
[16:01:01] [PASSED] 4
[16:01:01] [PASSED] 8
[16:01:01] [PASSED] 32
[16:01:01] [PASSED] 256
[16:01:01] ================ [PASSED] test_range_spare =================
[16:01:01] ===================== [PASSED] guc_dbm =====================
[16:01:01] =================== guc_idm (6 subtests) ===================
[16:01:01] [PASSED] bad_init
[16:01:01] [PASSED] no_init
[16:01:01] [PASSED] init_fini
[16:01:01] [PASSED] check_used
[16:01:01] [PASSED] check_quota
[16:01:01] [PASSED] check_all
[16:01:01] ===================== [PASSED] guc_idm =====================
[16:01:01] ================== no_relay (3 subtests) ===================
[16:01:01] [PASSED] xe_drops_guc2pf_if_not_ready
[16:01:01] [PASSED] xe_drops_guc2vf_if_not_ready
[16:01:01] [PASSED] xe_rejects_send_if_not_ready
[16:01:01] ==================== [PASSED] no_relay =====================
[16:01:01] ================== pf_relay (14 subtests) ==================
[16:01:01] [PASSED] pf_rejects_guc2pf_too_short
[16:01:01] [PASSED] pf_rejects_guc2pf_too_long
[16:01:01] [PASSED] pf_rejects_guc2pf_no_payload
[16:01:01] [PASSED] pf_fails_no_payload
[16:01:01] [PASSED] pf_fails_bad_origin
[16:01:01] [PASSED] pf_fails_bad_type
[16:01:01] [PASSED] pf_txn_reports_error
[16:01:01] [PASSED] pf_txn_sends_pf2guc
[16:01:01] [PASSED] pf_sends_pf2guc
[16:01:01] [SKIPPED] pf_loopback_nop
[16:01:01] [SKIPPED] pf_loopback_echo
[16:01:01] [SKIPPED] pf_loopback_fail
[16:01:01] [SKIPPED] pf_loopback_busy
[16:01:01] [SKIPPED] pf_loopback_retry
[16:01:01] ==================== [PASSED] pf_relay =====================
[16:01:01] ================== vf_relay (3 subtests) ===================
[16:01:01] [PASSED] vf_rejects_guc2vf_too_short
[16:01:01] [PASSED] vf_rejects_guc2vf_too_long
[16:01:01] [PASSED] vf_rejects_guc2vf_no_payload
[16:01:01] ==================== [PASSED] vf_relay =====================
[16:01:01] ================= pf_service (11 subtests) =================
[16:01:01] [PASSED] pf_negotiate_any
[16:01:01] [PASSED] pf_negotiate_base_match
[16:01:01] [PASSED] pf_negotiate_base_newer
[16:01:01] [PASSED] pf_negotiate_base_next
[16:01:01] [SKIPPED] pf_negotiate_base_older
[16:01:01] [PASSED] pf_negotiate_base_prev
[16:01:01] [PASSED] pf_negotiate_latest_match
[16:01:01] [PASSED] pf_negotiate_latest_newer
[16:01:01] [PASSED] pf_negotiate_latest_next
[16:01:01] [SKIPPED] pf_negotiate_latest_older
[16:01:01] [SKIPPED] pf_negotiate_latest_prev
[16:01:01] =================== [PASSED] pf_service ====================
[16:01:01] ===================== lmtt (1 subtest) =====================
[16:01:01] ======================== test_ops =========================
[16:01:01] [PASSED] 2-level
[16:01:01] [PASSED] multi-level
[16:01:01] ==================== [PASSED] test_ops =====================
[16:01:01] ====================== [PASSED] lmtt =======================
[16:01:01] =================== xe_mocs (2 subtests) ===================
[16:01:01] ================ xe_live_mocs_kernel_kunit ================
[16:01:01] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[16:01:01] ================ xe_live_mocs_reset_kunit =================
[16:01:01] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[16:01:01] ==================== [SKIPPED] xe_mocs =====================
[16:01:01] ================= xe_migrate (2 subtests) ==================
[16:01:01] ================= xe_migrate_sanity_kunit =================
[16:01:01] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[16:01:01] ================== xe_validate_ccs_kunit ==================
[16:01:01] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[16:01:01] =================== [SKIPPED] xe_migrate ===================
[16:01:01] ================== xe_dma_buf (1 subtest) ==================
[16:01:01] ==================== xe_dma_buf_kunit =====================
[16:01:01] ================ [SKIPPED] xe_dma_buf_kunit ================
[16:01:01] =================== [SKIPPED] xe_dma_buf ===================
[16:01:01] ================= xe_bo_shrink (1 subtest) =================
[16:01:01] =================== xe_bo_shrink_kunit ====================
[16:01:01] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[16:01:01] ================== [SKIPPED] xe_bo_shrink ==================
[16:01:01] ==================== xe_bo (2 subtests) ====================
[16:01:01] ================== xe_ccs_migrate_kunit ===================
[16:01:01] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[16:01:01] ==================== xe_bo_evict_kunit ====================
[16:01:01] =============== [SKIPPED] xe_bo_evict_kunit ================
[16:01:01] ===================== [SKIPPED] xe_bo ======================
[16:01:01] ==================== args (11 subtests) ====================
[16:01:01] [PASSED] count_args_test
[16:01:01] [PASSED] call_args_example
[16:01:01] [PASSED] call_args_test
[16:01:01] [PASSED] drop_first_arg_example
[16:01:01] [PASSED] drop_first_arg_test
[16:01:01] [PASSED] first_arg_example
[16:01:01] [PASSED] first_arg_test
[16:01:01] [PASSED] last_arg_example
[16:01:01] [PASSED] last_arg_test
[16:01:01] [PASSED] pick_arg_example
[16:01:01] [PASSED] sep_comma_example
[16:01:01] ====================== [PASSED] args =======================
[16:01:01] =================== xe_pci (2 subtests) ====================
[16:01:01] ==================== check_graphics_ip ====================
[16:01:01] [PASSED] 12.70 Xe_LPG
[16:01:01] [PASSED] 12.71 Xe_LPG
[16:01:01] [PASSED] 12.74 Xe_LPG+
[16:01:01] [PASSED] 20.01 Xe2_HPG
[16:01:01] [PASSED] 20.02 Xe2_HPG
[16:01:01] [PASSED] 20.04 Xe2_LPG
[16:01:01] [PASSED] 30.00 Xe3_LPG
[16:01:01] [PASSED] 30.01 Xe3_LPG
[16:01:01] [PASSED] 30.03 Xe3_LPG
[16:01:01] ================ [PASSED] check_graphics_ip ================
[16:01:01] ===================== check_media_ip ======================
[16:01:01] [PASSED] 13.00 Xe_LPM+
[16:01:01] [PASSED] 13.01 Xe2_HPM
[16:01:01] [PASSED] 20.00 Xe2_LPM
[16:01:01] [PASSED] 30.00 Xe3_LPM
[16:01:01] [PASSED] 30.02 Xe3_LPM
stty: 'standard input': Inappropriate ioctl for device
[16:01:01] ================= [PASSED] check_media_ip ==================
[16:01:01] ===================== [PASSED] xe_pci ======================
[16:01:01] =================== xe_rtp (2 subtests) ====================
[16:01:01] =============== xe_rtp_process_to_sr_tests ================
[16:01:01] [PASSED] coalesce-same-reg
[16:01:01] [PASSED] no-match-no-add
[16:01:01] [PASSED] match-or
[16:01:01] [PASSED] match-or-xfail
[16:01:01] [PASSED] no-match-no-add-multiple-rules
[16:01:01] [PASSED] two-regs-two-entries
[16:01:01] [PASSED] clr-one-set-other
[16:01:01] [PASSED] set-field
[16:01:01] [PASSED] conflict-duplicate
[16:01:01] [PASSED] conflict-not-disjoint
[16:01:01] [PASSED] conflict-reg-type
[16:01:01] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[16:01:01] ================== xe_rtp_process_tests ===================
[16:01:01] [PASSED] active1
[16:01:01] [PASSED] active2
[16:01:01] [PASSED] active-inactive
[16:01:01] [PASSED] inactive-active
[16:01:01] [PASSED] inactive-1st_or_active-inactive
[16:01:01] [PASSED] inactive-2nd_or_active-inactive
[16:01:01] [PASSED] inactive-last_or_active-inactive
[16:01:01] [PASSED] inactive-no_or_active-inactive
[16:01:01] ============== [PASSED] xe_rtp_process_tests ===============
[16:01:01] ===================== [PASSED] xe_rtp ======================
[16:01:01] ==================== xe_wa (1 subtest) =====================
[16:01:01] ======================== xe_wa_gt =========================
[16:01:01] [PASSED] TIGERLAKE (B0)
[16:01:01] [PASSED] DG1 (A0)
[16:01:01] [PASSED] DG1 (B0)
[16:01:01] [PASSED] ALDERLAKE_S (A0)
[16:01:01] [PASSED] ALDERLAKE_S (B0)
[16:01:01] [PASSED] ALDERLAKE_S (C0)
[16:01:01] [PASSED] ALDERLAKE_S (D0)
[16:01:01] [PASSED] ALDERLAKE_P (A0)
[16:01:01] [PASSED] ALDERLAKE_P (B0)
[16:01:01] [PASSED] ALDERLAKE_P (C0)
[16:01:01] [PASSED] ALDERLAKE_S_RPLS (D0)
[16:01:01] [PASSED] ALDERLAKE_P_RPLU (E0)
[16:01:01] [PASSED] DG2_G10 (C0)
[16:01:01] [PASSED] DG2_G11 (B1)
[16:01:01] [PASSED] DG2_G12 (A1)
[16:01:01] [PASSED] METEORLAKE (g:A0, m:A0)
[16:01:01] [PASSED] METEORLAKE (g:A0, m:A0)
[16:01:01] [PASSED] METEORLAKE (g:A0, m:A0)
[16:01:01] [PASSED] LUNARLAKE (g:A0, m:A0)
[16:01:01] [PASSED] LUNARLAKE (g:B0, m:A0)
[16:01:01] [PASSED] BATTLEMAGE (g:A0, m:A1)
[16:01:01] ==================== [PASSED] xe_wa_gt =====================
[16:01:01] ====================== [PASSED] xe_wa ======================
[16:01:01] ============================================================
[16:01:01] Testing complete. Ran 145 tests: passed: 129, skipped: 16
[16:01:01] Elapsed time: 40.520s total, 4.188s configuring, 35.864s building, 0.438s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[16:01:02] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:01:04] 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
[16:01:47] Starting KUnit Kernel (1/1)...
[16:01:47] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:01:47] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[16:01:47] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[16:01:47] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[16:01:47] =========== drm_validate_clone_mode (2 subtests) ===========
[16:01:47] ============== drm_test_check_in_clone_mode ===============
[16:01:47] [PASSED] in_clone_mode
[16:01:47] [PASSED] not_in_clone_mode
[16:01:47] ========== [PASSED] drm_test_check_in_clone_mode ===========
[16:01:47] =============== drm_test_check_valid_clones ===============
[16:01:47] [PASSED] not_in_clone_mode
[16:01:47] [PASSED] valid_clone
[16:01:47] [PASSED] invalid_clone
[16:01:47] =========== [PASSED] drm_test_check_valid_clones ===========
[16:01:47] ============= [PASSED] drm_validate_clone_mode =============
[16:01:47] ============= drm_validate_modeset (1 subtest) =============
[16:01:47] [PASSED] drm_test_check_connector_changed_modeset
[16:01:47] ============== [PASSED] drm_validate_modeset ===============
[16:01:47] ====== drm_test_bridge_get_current_state (2 subtests) ======
[16:01:47] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[16:01:47] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[16:01:47] ======== [PASSED] drm_test_bridge_get_current_state ========
[16:01:47] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[16:01:47] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[16:01:47] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[16:01:47] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[16:01:47] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[16:01:47] ============== drm_bridge_alloc (2 subtests) ===============
[16:01:47] [PASSED] drm_test_drm_bridge_alloc_basic
[16:01:47] [PASSED] drm_test_drm_bridge_alloc_get_put
[16:01:47] ================ [PASSED] drm_bridge_alloc =================
[16:01:47] ================== drm_buddy (7 subtests) ==================
[16:01:47] [PASSED] drm_test_buddy_alloc_limit
[16:01:47] [PASSED] drm_test_buddy_alloc_optimistic
[16:01:47] [PASSED] drm_test_buddy_alloc_pessimistic
[16:01:47] [PASSED] drm_test_buddy_alloc_pathological
[16:01:47] [PASSED] drm_test_buddy_alloc_contiguous
[16:01:47] [PASSED] drm_test_buddy_alloc_clear
[16:01:47] [PASSED] drm_test_buddy_alloc_range_bias
[16:01:47] ==================== [PASSED] drm_buddy ====================
[16:01:47] ============= drm_cmdline_parser (40 subtests) =============
[16:01:47] [PASSED] drm_test_cmdline_force_d_only
[16:01:47] [PASSED] drm_test_cmdline_force_D_only_dvi
[16:01:47] [PASSED] drm_test_cmdline_force_D_only_hdmi
[16:01:47] [PASSED] drm_test_cmdline_force_D_only_not_digital
[16:01:47] [PASSED] drm_test_cmdline_force_e_only
[16:01:47] [PASSED] drm_test_cmdline_res
[16:01:47] [PASSED] drm_test_cmdline_res_vesa
[16:01:47] [PASSED] drm_test_cmdline_res_vesa_rblank
[16:01:47] [PASSED] drm_test_cmdline_res_rblank
[16:01:47] [PASSED] drm_test_cmdline_res_bpp
[16:01:47] [PASSED] drm_test_cmdline_res_refresh
[16:01:47] [PASSED] drm_test_cmdline_res_bpp_refresh
[16:01:47] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[16:01:47] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[16:01:47] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[16:01:47] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[16:01:47] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[16:01:47] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[16:01:47] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[16:01:47] [PASSED] drm_test_cmdline_res_margins_force_on
[16:01:47] [PASSED] drm_test_cmdline_res_vesa_margins
[16:01:47] [PASSED] drm_test_cmdline_name
[16:01:47] [PASSED] drm_test_cmdline_name_bpp
[16:01:47] [PASSED] drm_test_cmdline_name_option
[16:01:47] [PASSED] drm_test_cmdline_name_bpp_option
[16:01:47] [PASSED] drm_test_cmdline_rotate_0
[16:01:47] [PASSED] drm_test_cmdline_rotate_90
[16:01:47] [PASSED] drm_test_cmdline_rotate_180
[16:01:47] [PASSED] drm_test_cmdline_rotate_270
[16:01:47] [PASSED] drm_test_cmdline_hmirror
[16:01:47] [PASSED] drm_test_cmdline_vmirror
[16:01:47] [PASSED] drm_test_cmdline_margin_options
[16:01:47] [PASSED] drm_test_cmdline_multiple_options
[16:01:47] [PASSED] drm_test_cmdline_bpp_extra_and_option
[16:01:47] [PASSED] drm_test_cmdline_extra_and_option
[16:01:47] [PASSED] drm_test_cmdline_freestanding_options
[16:01:47] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[16:01:47] [PASSED] drm_test_cmdline_panel_orientation
[16:01:47] ================ drm_test_cmdline_invalid =================
[16:01:47] [PASSED] margin_only
[16:01:47] [PASSED] interlace_only
[16:01:47] [PASSED] res_missing_x
[16:01:47] [PASSED] res_missing_y
[16:01:47] [PASSED] res_bad_y
[16:01:47] [PASSED] res_missing_y_bpp
[16:01:47] [PASSED] res_bad_bpp
[16:01:47] [PASSED] res_bad_refresh
[16:01:47] [PASSED] res_bpp_refresh_force_on_off
[16:01:47] [PASSED] res_invalid_mode
[16:01:47] [PASSED] res_bpp_wrong_place_mode
[16:01:47] [PASSED] name_bpp_refresh
[16:01:47] [PASSED] name_refresh
[16:01:47] [PASSED] name_refresh_wrong_mode
[16:01:47] [PASSED] name_refresh_invalid_mode
[16:01:47] [PASSED] rotate_multiple
[16:01:47] [PASSED] rotate_invalid_val
[16:01:47] [PASSED] rotate_truncated
[16:01:47] [PASSED] invalid_option
[16:01:47] [PASSED] invalid_tv_option
[16:01:47] [PASSED] truncated_tv_option
[16:01:47] ============ [PASSED] drm_test_cmdline_invalid =============
[16:01:47] =============== drm_test_cmdline_tv_options ===============
[16:01:47] [PASSED] NTSC
[16:01:47] [PASSED] NTSC_443
[16:01:47] [PASSED] NTSC_J
[16:01:47] [PASSED] PAL
[16:01:47] [PASSED] PAL_M
[16:01:47] [PASSED] PAL_N
[16:01:47] [PASSED] SECAM
[16:01:47] [PASSED] MONO_525
[16:01:47] [PASSED] MONO_625
[16:01:47] =========== [PASSED] drm_test_cmdline_tv_options ===========
[16:01:47] =============== [PASSED] drm_cmdline_parser ================
[16:01:47] ========== drmm_connector_hdmi_init (20 subtests) ==========
[16:01:47] [PASSED] drm_test_connector_hdmi_init_valid
[16:01:47] [PASSED] drm_test_connector_hdmi_init_bpc_8
[16:01:47] [PASSED] drm_test_connector_hdmi_init_bpc_10
[16:01:47] [PASSED] drm_test_connector_hdmi_init_bpc_12
[16:01:47] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[16:01:47] [PASSED] drm_test_connector_hdmi_init_bpc_null
[16:01:47] [PASSED] drm_test_connector_hdmi_init_formats_empty
[16:01:47] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[16:01:47] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:01:47] [PASSED] supported_formats=0x9 yuv420_allowed=1
[16:01:47] [PASSED] supported_formats=0x9 yuv420_allowed=0
[16:01:47] [PASSED] supported_formats=0x3 yuv420_allowed=1
[16:01:47] [PASSED] supported_formats=0x3 yuv420_allowed=0
[16:01:47] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:01:47] [PASSED] drm_test_connector_hdmi_init_null_ddc
[16:01:47] [PASSED] drm_test_connector_hdmi_init_null_product
[16:01:47] [PASSED] drm_test_connector_hdmi_init_null_vendor
[16:01:47] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[16:01:47] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[16:01:47] [PASSED] drm_test_connector_hdmi_init_product_valid
[16:01:47] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[16:01:47] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[16:01:47] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[16:01:47] ========= drm_test_connector_hdmi_init_type_valid =========
[16:01:47] [PASSED] HDMI-A
[16:01:47] [PASSED] HDMI-B
[16:01:47] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[16:01:47] ======== drm_test_connector_hdmi_init_type_invalid ========
[16:01:47] [PASSED] Unknown
[16:01:47] [PASSED] VGA
[16:01:47] [PASSED] DVI-I
[16:01:47] [PASSED] DVI-D
[16:01:47] [PASSED] DVI-A
[16:01:47] [PASSED] Composite
[16:01:47] [PASSED] SVIDEO
[16:01:47] [PASSED] LVDS
[16:01:47] [PASSED] Component
[16:01:47] [PASSED] DIN
[16:01:47] [PASSED] DP
[16:01:47] [PASSED] TV
[16:01:47] [PASSED] eDP
[16:01:47] [PASSED] Virtual
[16:01:47] [PASSED] DSI
[16:01:47] [PASSED] DPI
[16:01:47] [PASSED] Writeback
[16:01:47] [PASSED] SPI
[16:01:47] [PASSED] USB
[16:01:47] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[16:01:47] ============ [PASSED] drmm_connector_hdmi_init =============
[16:01:47] ============= drmm_connector_init (3 subtests) =============
[16:01:47] [PASSED] drm_test_drmm_connector_init
[16:01:47] [PASSED] drm_test_drmm_connector_init_null_ddc
[16:01:47] ========= drm_test_drmm_connector_init_type_valid =========
[16:01:47] [PASSED] Unknown
[16:01:47] [PASSED] VGA
[16:01:47] [PASSED] DVI-I
[16:01:47] [PASSED] DVI-D
[16:01:47] [PASSED] DVI-A
[16:01:47] [PASSED] Composite
[16:01:47] [PASSED] SVIDEO
[16:01:47] [PASSED] LVDS
[16:01:47] [PASSED] Component
[16:01:47] [PASSED] DIN
[16:01:47] [PASSED] DP
[16:01:47] [PASSED] HDMI-A
[16:01:47] [PASSED] HDMI-B
[16:01:47] [PASSED] TV
[16:01:47] [PASSED] eDP
[16:01:47] [PASSED] Virtual
[16:01:47] [PASSED] DSI
[16:01:47] [PASSED] DPI
[16:01:47] [PASSED] Writeback
[16:01:47] [PASSED] SPI
[16:01:47] [PASSED] USB
[16:01:47] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[16:01:47] =============== [PASSED] drmm_connector_init ===============
[16:01:47] ========= drm_connector_dynamic_init (6 subtests) ==========
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_init
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_init_properties
[16:01:47] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[16:01:47] [PASSED] Unknown
[16:01:47] [PASSED] VGA
[16:01:47] [PASSED] DVI-I
[16:01:47] [PASSED] DVI-D
[16:01:47] [PASSED] DVI-A
[16:01:47] [PASSED] Composite
[16:01:47] [PASSED] SVIDEO
[16:01:47] [PASSED] LVDS
[16:01:47] [PASSED] Component
[16:01:47] [PASSED] DIN
[16:01:47] [PASSED] DP
[16:01:47] [PASSED] HDMI-A
[16:01:47] [PASSED] HDMI-B
[16:01:47] [PASSED] TV
[16:01:47] [PASSED] eDP
[16:01:47] [PASSED] Virtual
[16:01:47] [PASSED] DSI
[16:01:47] [PASSED] DPI
[16:01:47] [PASSED] Writeback
[16:01:47] [PASSED] SPI
[16:01:47] [PASSED] USB
[16:01:47] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[16:01:47] ======== drm_test_drm_connector_dynamic_init_name =========
[16:01:47] [PASSED] Unknown
[16:01:47] [PASSED] VGA
[16:01:47] [PASSED] DVI-I
[16:01:47] [PASSED] DVI-D
[16:01:47] [PASSED] DVI-A
[16:01:47] [PASSED] Composite
[16:01:47] [PASSED] SVIDEO
[16:01:47] [PASSED] LVDS
[16:01:47] [PASSED] Component
[16:01:47] [PASSED] DIN
[16:01:47] [PASSED] DP
[16:01:47] [PASSED] HDMI-A
[16:01:47] [PASSED] HDMI-B
[16:01:47] [PASSED] TV
[16:01:47] [PASSED] eDP
[16:01:47] [PASSED] Virtual
[16:01:47] [PASSED] DSI
[16:01:47] [PASSED] DPI
[16:01:47] [PASSED] Writeback
[16:01:47] [PASSED] SPI
[16:01:47] [PASSED] USB
[16:01:47] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[16:01:47] =========== [PASSED] drm_connector_dynamic_init ============
[16:01:47] ==== drm_connector_dynamic_register_early (4 subtests) =====
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[16:01:47] ====== [PASSED] drm_connector_dynamic_register_early =======
[16:01:47] ======= drm_connector_dynamic_register (7 subtests) ========
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[16:01:47] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[16:01:47] ========= [PASSED] drm_connector_dynamic_register ==========
[16:01:47] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[16:01:47] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[16:01:47] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[16:01:47] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[16:01:47] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[16:01:47] ========== drm_test_get_tv_mode_from_name_valid ===========
[16:01:47] [PASSED] NTSC
[16:01:47] [PASSED] NTSC-443
[16:01:47] [PASSED] NTSC-J
[16:01:47] [PASSED] PAL
[16:01:47] [PASSED] PAL-M
[16:01:47] [PASSED] PAL-N
[16:01:47] [PASSED] SECAM
[16:01:47] [PASSED] Mono
[16:01:47] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[16:01:47] [PASSED] drm_test_get_tv_mode_from_name_truncated
[16:01:47] ============ [PASSED] drm_get_tv_mode_from_name ============
[16:01:47] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[16:01:47] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[16:01:47] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[16:01:47] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[16:01:47] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[16:01:47] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[16:01:47] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[16:01:47] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[16:01:47] [PASSED] VIC 96
[16:01:47] [PASSED] VIC 97
[16:01:47] [PASSED] VIC 101
[16:01:47] [PASSED] VIC 102
[16:01:47] [PASSED] VIC 106
[16:01:47] [PASSED] VIC 107
[16:01:47] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[16:01:47] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[16:01:47] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[16:01:47] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[16:01:47] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[16:01:47] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[16:01:47] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[16:01:47] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[16:01:47] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[16:01:47] [PASSED] Automatic
[16:01:47] [PASSED] Full
[16:01:47] [PASSED] Limited 16:235
[16:01:47] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[16:01:47] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[16:01:47] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[16:01:47] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[16:01:47] === drm_test_drm_hdmi_connector_get_output_format_name ====
[16:01:47] [PASSED] RGB
[16:01:47] [PASSED] YUV 4:2:0
[16:01:47] [PASSED] YUV 4:2:2
[16:01:47] [PASSED] YUV 4:4:4
[16:01:47] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[16:01:47] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[16:01:47] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[16:01:47] ============= drm_damage_helper (21 subtests) ==============
[16:01:47] [PASSED] drm_test_damage_iter_no_damage
[16:01:47] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[16:01:47] [PASSED] drm_test_damage_iter_no_damage_src_moved
[16:01:47] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[16:01:47] [PASSED] drm_test_damage_iter_no_damage_not_visible
[16:01:47] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[16:01:47] [PASSED] drm_test_damage_iter_no_damage_no_fb
[16:01:47] [PASSED] drm_test_damage_iter_simple_damage
[16:01:47] [PASSED] drm_test_damage_iter_single_damage
[16:01:47] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[16:01:47] [PASSED] drm_test_damage_iter_single_damage_outside_src
[16:01:47] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[16:01:47] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[16:01:47] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[16:01:47] [PASSED] drm_test_damage_iter_single_damage_src_moved
[16:01:47] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[16:01:47] [PASSED] drm_test_damage_iter_damage
[16:01:47] [PASSED] drm_test_damage_iter_damage_one_intersect
[16:01:47] [PASSED] drm_test_damage_iter_damage_one_outside
[16:01:47] [PASSED] drm_test_damage_iter_damage_src_moved
[16:01:47] [PASSED] drm_test_damage_iter_damage_not_visible
[16:01:47] ================ [PASSED] drm_damage_helper ================
[16:01:47] ============== drm_dp_mst_helper (3 subtests) ==============
[16:01:47] ============== drm_test_dp_mst_calc_pbn_mode ==============
[16:01:47] [PASSED] Clock 154000 BPP 30 DSC disabled
[16:01:47] [PASSED] Clock 234000 BPP 30 DSC disabled
[16:01:47] [PASSED] Clock 297000 BPP 24 DSC disabled
[16:01:47] [PASSED] Clock 332880 BPP 24 DSC enabled
[16:01:47] [PASSED] Clock 324540 BPP 24 DSC enabled
[16:01:47] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[16:01:47] ============== drm_test_dp_mst_calc_pbn_div ===============
[16:01:47] [PASSED] Link rate 2000000 lane count 4
[16:01:47] [PASSED] Link rate 2000000 lane count 2
[16:01:47] [PASSED] Link rate 2000000 lane count 1
[16:01:47] [PASSED] Link rate 1350000 lane count 4
[16:01:47] [PASSED] Link rate 1350000 lane count 2
[16:01:47] [PASSED] Link rate 1350000 lane count 1
[16:01:47] [PASSED] Link rate 1000000 lane count 4
[16:01:47] [PASSED] Link rate 1000000 lane count 2
[16:01:47] [PASSED] Link rate 1000000 lane count 1
[16:01:47] [PASSED] Link rate 810000 lane count 4
[16:01:47] [PASSED] Link rate 810000 lane count 2
[16:01:47] [PASSED] Link rate 810000 lane count 1
[16:01:47] [PASSED] Link rate 540000 lane count 4
[16:01:47] [PASSED] Link rate 540000 lane count 2
[16:01:47] [PASSED] Link rate 540000 lane count 1
[16:01:47] [PASSED] Link rate 270000 lane count 4
[16:01:47] [PASSED] Link rate 270000 lane count 2
[16:01:47] [PASSED] Link rate 270000 lane count 1
[16:01:47] [PASSED] Link rate 162000 lane count 4
[16:01:47] [PASSED] Link rate 162000 lane count 2
[16:01:47] [PASSED] Link rate 162000 lane count 1
[16:01:47] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[16:01:47] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[16:01:47] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[16:01:47] [PASSED] DP_POWER_UP_PHY with port number
[16:01:47] [PASSED] DP_POWER_DOWN_PHY with port number
[16:01:47] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[16:01:47] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[16:01:47] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[16:01:47] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[16:01:47] [PASSED] DP_QUERY_PAYLOAD with port number
[16:01:47] [PASSED] DP_QUERY_PAYLOAD with VCPI
[16:01:47] [PASSED] DP_REMOTE_DPCD_READ with port number
[16:01:47] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[16:01:47] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[16:01:47] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[16:01:47] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[16:01:47] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[16:01:47] [PASSED] DP_REMOTE_I2C_READ with port number
[16:01:47] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[16:01:47] [PASSED] DP_REMOTE_I2C_READ with transactions array
[16:01:47] [PASSED] DP_REMOTE_I2C_WRITE with port number
[16:01:47] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[16:01:47] [PASSED] DP_REMOTE_I2C_WRITE with data array
[16:01:47] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[16:01:47] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[16:01:47] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[16:01:47] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[16:01:47] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[16:01:47] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[16:01:47] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[16:01:47] ================ [PASSED] drm_dp_mst_helper ================
[16:01:47] ================== drm_exec (7 subtests) ===================
[16:01:47] [PASSED] sanitycheck
[16:01:47] [PASSED] test_lock
[16:01:47] [PASSED] test_lock_unlock
[16:01:47] [PASSED] test_duplicates
[16:01:47] [PASSED] test_prepare
[16:01:47] [PASSED] test_prepare_array
[16:01:47] [PASSED] test_multiple_loops
[16:01:47] ==================== [PASSED] drm_exec =====================
[16:01:47] =========== drm_format_helper_test (17 subtests) ===========
[16:01:47] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[16:01:47] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[16:01:47] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[16:01:47] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[16:01:47] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[16:01:47] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[16:01:47] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[16:01:47] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[16:01:47] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[16:01:47] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[16:01:47] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[16:01:47] ============== drm_test_fb_xrgb8888_to_mono ===============
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[16:01:47] ==================== drm_test_fb_swab =====================
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ================ [PASSED] drm_test_fb_swab =================
[16:01:47] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[16:01:47] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[16:01:47] [PASSED] single_pixel_source_buffer
[16:01:47] [PASSED] single_pixel_clip_rectangle
[16:01:47] [PASSED] well_known_colors
[16:01:47] [PASSED] destination_pitch
[16:01:47] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[16:01:47] ================= drm_test_fb_clip_offset =================
[16:01:47] [PASSED] pass through
[16:01:47] [PASSED] horizontal offset
[16:01:47] [PASSED] vertical offset
[16:01:47] [PASSED] horizontal and vertical offset
[16:01:47] [PASSED] horizontal offset (custom pitch)
[16:01:47] [PASSED] vertical offset (custom pitch)
[16:01:47] [PASSED] horizontal and vertical offset (custom pitch)
[16:01:47] ============= [PASSED] drm_test_fb_clip_offset =============
[16:01:47] =================== drm_test_fb_memcpy ====================
[16:01:47] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[16:01:47] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[16:01:47] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[16:01:47] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[16:01:47] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[16:01:47] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[16:01:47] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[16:01:47] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[16:01:47] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[16:01:47] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[16:01:47] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[16:01:47] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[16:01:47] =============== [PASSED] drm_test_fb_memcpy ================
[16:01:47] ============= [PASSED] drm_format_helper_test ==============
[16:01:47] ================= drm_format (18 subtests) =================
[16:01:47] [PASSED] drm_test_format_block_width_invalid
[16:01:47] [PASSED] drm_test_format_block_width_one_plane
[16:01:47] [PASSED] drm_test_format_block_width_two_plane
[16:01:47] [PASSED] drm_test_format_block_width_three_plane
[16:01:47] [PASSED] drm_test_format_block_width_tiled
[16:01:47] [PASSED] drm_test_format_block_height_invalid
[16:01:47] [PASSED] drm_test_format_block_height_one_plane
[16:01:47] [PASSED] drm_test_format_block_height_two_plane
[16:01:47] [PASSED] drm_test_format_block_height_three_plane
[16:01:47] [PASSED] drm_test_format_block_height_tiled
[16:01:47] [PASSED] drm_test_format_min_pitch_invalid
[16:01:47] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[16:01:47] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[16:01:47] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[16:01:47] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[16:01:47] [PASSED] drm_test_format_min_pitch_two_plane
[16:01:47] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[16:01:47] [PASSED] drm_test_format_min_pitch_tiled
[16:01:47] =================== [PASSED] drm_format ====================
[16:01:47] ============== drm_framebuffer (10 subtests) ===============
[16:01:47] ========== drm_test_framebuffer_check_src_coords ==========
[16:01:47] [PASSED] Success: source fits into fb
[16:01:47] [PASSED] Fail: overflowing fb with x-axis coordinate
[16:01:47] [PASSED] Fail: overflowing fb with y-axis coordinate
[16:01:47] [PASSED] Fail: overflowing fb with source width
[16:01:47] [PASSED] Fail: overflowing fb with source height
[16:01:47] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[16:01:47] [PASSED] drm_test_framebuffer_cleanup
[16:01:47] =============== drm_test_framebuffer_create ===============
[16:01:47] [PASSED] ABGR8888 normal sizes
[16:01:47] [PASSED] ABGR8888 max sizes
[16:01:47] [PASSED] ABGR8888 pitch greater than min required
[16:01:47] [PASSED] ABGR8888 pitch less than min required
[16:01:47] [PASSED] ABGR8888 Invalid width
[16:01:47] [PASSED] ABGR8888 Invalid buffer handle
[16:01:47] [PASSED] No pixel format
[16:01:47] [PASSED] ABGR8888 Width 0
[16:01:47] [PASSED] ABGR8888 Height 0
[16:01:47] [PASSED] ABGR8888 Out of bound height * pitch combination
[16:01:47] [PASSED] ABGR8888 Large buffer offset
[16:01:47] [PASSED] ABGR8888 Buffer offset for inexistent plane
[16:01:47] [PASSED] ABGR8888 Invalid flag
[16:01:47] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[16:01:47] [PASSED] ABGR8888 Valid buffer modifier
[16:01:47] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[16:01:47] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[16:01:47] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[16:01:47] [PASSED] NV12 Normal sizes
[16:01:47] [PASSED] NV12 Max sizes
[16:01:47] [PASSED] NV12 Invalid pitch
[16:01:47] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[16:01:47] [PASSED] NV12 different modifier per-plane
[16:01:47] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[16:01:47] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[16:01:47] [PASSED] NV12 Modifier for inexistent plane
[16:01:47] [PASSED] NV12 Handle for inexistent plane
[16:01:47] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[16:01:47] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[16:01:47] [PASSED] YVU420 Normal sizes
[16:01:47] [PASSED] YVU420 Max sizes
[16:01:47] [PASSED] YVU420 Invalid pitch
[16:01:47] [PASSED] YVU420 Different pitches
[16:01:47] [PASSED] YVU420 Different buffer offsets/pitches
[16:01:47] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[16:01:47] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[16:01:47] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[16:01:47] [PASSED] YVU420 Valid modifier
[16:01:47] [PASSED] YVU420 Different modifiers per plane
[16:01:47] [PASSED] YVU420 Modifier for inexistent plane
[16:01:47] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[16:01:47] [PASSED] X0L2 Normal sizes
[16:01:47] [PASSED] X0L2 Max sizes
[16:01:47] [PASSED] X0L2 Invalid pitch
[16:01:47] [PASSED] X0L2 Pitch greater than minimum required
[16:01:47] [PASSED] X0L2 Handle for inexistent plane
[16:01:47] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[16:01:47] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[16:01:47] [PASSED] X0L2 Valid modifier
[16:01:47] [PASSED] X0L2 Modifier for inexistent plane
[16:01:47] =========== [PASSED] drm_test_framebuffer_create ===========
[16:01:47] [PASSED] drm_test_framebuffer_free
[16:01:47] [PASSED] drm_test_framebuffer_init
[16:01:47] [PASSED] drm_test_framebuffer_init_bad_format
[16:01:47] [PASSED] drm_test_framebuffer_init_dev_mismatch
[16:01:47] [PASSED] drm_test_framebuffer_lookup
[16:01:47] [PASSED] drm_test_framebuffer_lookup_inexistent
[16:01:47] [PASSED] drm_test_framebuffer_modifiers_not_supported
[16:01:47] ================= [PASSED] drm_framebuffer =================
[16:01:47] ================ drm_gem_shmem (8 subtests) ================
[16:01:47] [PASSED] drm_gem_shmem_test_obj_create
[16:01:47] [PASSED] drm_gem_shmem_test_obj_create_private
[16:01:47] [PASSED] drm_gem_shmem_test_pin_pages
[16:01:47] [PASSED] drm_gem_shmem_test_vmap
[16:01:47] [PASSED] drm_gem_shmem_test_get_pages_sgt
[16:01:47] [PASSED] drm_gem_shmem_test_get_sg_table
[16:01:47] [PASSED] drm_gem_shmem_test_madvise
[16:01:47] [PASSED] drm_gem_shmem_test_purge
[16:01:47] ================== [PASSED] drm_gem_shmem ==================
[16:01:47] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[16:01:47] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[16:01:47] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[16:01:47] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[16:01:47] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[16:01:47] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[16:01:47] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[16:01:47] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[16:01:47] [PASSED] Automatic
[16:01:47] [PASSED] Full
[16:01:47] [PASSED] Limited 16:235
[16:01:47] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[16:01:47] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[16:01:47] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[16:01:47] [PASSED] drm_test_check_disable_connector
[16:01:47] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[16:01:47] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[16:01:47] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[16:01:47] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[16:01:47] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[16:01:47] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[16:01:47] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[16:01:47] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[16:01:47] [PASSED] drm_test_check_output_bpc_dvi
[16:01:47] [PASSED] drm_test_check_output_bpc_format_vic_1
[16:01:47] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[16:01:47] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[16:01:47] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[16:01:47] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[16:01:47] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[16:01:47] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[16:01:47] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[16:01:47] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[16:01:47] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[16:01:47] [PASSED] drm_test_check_broadcast_rgb_value
[16:01:47] [PASSED] drm_test_check_bpc_8_value
[16:01:47] [PASSED] drm_test_check_bpc_10_value
[16:01:47] [PASSED] drm_test_check_bpc_12_value
[16:01:47] [PASSED] drm_test_check_format_value
[16:01:47] [PASSED] drm_test_check_tmds_char_value
[16:01:47] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[16:01:47] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[16:01:47] [PASSED] drm_test_check_mode_valid
[16:01:47] [PASSED] drm_test_check_mode_valid_reject
[16:01:47] [PASSED] drm_test_check_mode_valid_reject_rate
[16:01:47] [PASSED] drm_test_check_mode_valid_reject_max_clock
[16:01:47] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[16:01:47] ================= drm_managed (2 subtests) =================
[16:01:47] [PASSED] drm_test_managed_release_action
[16:01:47] [PASSED] drm_test_managed_run_action
[16:01:47] =================== [PASSED] drm_managed ===================
[16:01:47] =================== drm_mm (6 subtests) ====================
[16:01:47] [PASSED] drm_test_mm_init
[16:01:47] [PASSED] drm_test_mm_debug
[16:01:47] [PASSED] drm_test_mm_align32
[16:01:47] [PASSED] drm_test_mm_align64
[16:01:47] [PASSED] drm_test_mm_lowest
[16:01:47] [PASSED] drm_test_mm_highest
[16:01:47] ===================== [PASSED] drm_mm ======================
[16:01:47] ============= drm_modes_analog_tv (5 subtests) =============
[16:01:47] [PASSED] drm_test_modes_analog_tv_mono_576i
[16:01:47] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[16:01:47] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[16:01:47] [PASSED] drm_test_modes_analog_tv_pal_576i
[16:01:47] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[16:01:47] =============== [PASSED] drm_modes_analog_tv ===============
[16:01:47] ============== drm_plane_helper (2 subtests) ===============
[16:01:47] =============== drm_test_check_plane_state ================
[16:01:47] [PASSED] clipping_simple
[16:01:47] [PASSED] clipping_rotate_reflect
[16:01:47] [PASSED] positioning_simple
[16:01:47] [PASSED] upscaling
[16:01:47] [PASSED] downscaling
[16:01:47] [PASSED] rounding1
[16:01:47] [PASSED] rounding2
[16:01:47] [PASSED] rounding3
[16:01:47] [PASSED] rounding4
[16:01:47] =========== [PASSED] drm_test_check_plane_state ============
[16:01:47] =========== drm_test_check_invalid_plane_state ============
[16:01:47] [PASSED] positioning_invalid
[16:01:47] [PASSED] upscaling_invalid
[16:01:47] [PASSED] downscaling_invalid
[16:01:47] ======= [PASSED] drm_test_check_invalid_plane_state ========
[16:01:47] ================ [PASSED] drm_plane_helper =================
[16:01:47] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[16:01:47] ====== drm_test_connector_helper_tv_get_modes_check =======
[16:01:47] [PASSED] None
[16:01:47] [PASSED] PAL
[16:01:47] [PASSED] NTSC
[16:01:47] [PASSED] Both, NTSC Default
[16:01:47] [PASSED] Both, PAL Default
[16:01:47] [PASSED] Both, NTSC Default, with PAL on command-line
[16:01:47] [PASSED] Both, PAL Default, with NTSC on command-line
[16:01:47] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[16:01:47] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[16:01:47] ================== drm_rect (9 subtests) ===================
[16:01:47] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[16:01:47] [PASSED] drm_test_rect_clip_scaled_not_clipped
[16:01:47] [PASSED] drm_test_rect_clip_scaled_clipped
[16:01:47] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[16:01:47] ================= drm_test_rect_intersect =================
[16:01:47] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[16:01:47] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[16:01:47] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[16:01:47] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[16:01:47] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[16:01:47] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[16:01:47] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[16:01:47] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[16:01:47] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[16:01:47] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[16:01:47] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[16:01:47] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[16:01:47] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[16:01:47] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[16:01:47] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[16:01:47] ============= [PASSED] drm_test_rect_intersect =============
[16:01:47] ================ drm_test_rect_calc_hscale ================
[16:01:47] [PASSED] normal use
[16:01:47] [PASSED] out of max range
[16:01:47] [PASSED] out of min range
[16:01:47] [PASSED] zero dst
[16:01:47] [PASSED] negative src
[16:01:47] [PASSED] negative dst
[16:01:47] ============ [PASSED] drm_test_rect_calc_hscale ============
[16:01:47] ================ drm_test_rect_calc_vscale ================
[16:01:47] [PASSED] normal use
[16:01:47] [PASSED] out of max range
[16:01:47] [PASSED] out of min range
[16:01:47] [PASSED] zero dst
[16:01:47] [PASSED] negative src
[16:01:47] [PASSED] negative dst
[16:01:47] ============ [PASSED] drm_test_rect_calc_vscale ============
[16:01:47] ================== drm_test_rect_rotate ===================
[16:01:47] [PASSED] reflect-x
[16:01:47] [PASSED] reflect-y
[16:01:47] [PASSED] rotate-0
[16:01:47] [PASSED] rotate-90
[16:01:47] [PASSED] rotate-180
[16:01:47] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[16:01:47] ============== [PASSED] drm_test_rect_rotate ===============
[16:01:47] ================ drm_test_rect_rotate_inv =================
[16:01:47] [PASSED] reflect-x
[16:01:47] [PASSED] reflect-y
[16:01:47] [PASSED] rotate-0
[16:01:47] [PASSED] rotate-90
[16:01:47] [PASSED] rotate-180
[16:01:47] [PASSED] rotate-270
[16:01:47] ============ [PASSED] drm_test_rect_rotate_inv =============
[16:01:47] ==================== [PASSED] drm_rect =====================
[16:01:47] ============ drm_sysfb_modeset_test (1 subtest) ============
[16:01:47] ============ drm_test_sysfb_build_fourcc_list =============
[16:01:47] [PASSED] no native formats
[16:01:47] [PASSED] XRGB8888 as native format
[16:01:47] [PASSED] remove duplicates
[16:01:47] [PASSED] convert alpha formats
[16:01:47] [PASSED] random formats
[16:01:47] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[16:01:47] ============= [PASSED] drm_sysfb_modeset_test ==============
[16:01:47] ============================================================
[16:01:47] Testing complete. Ran 616 tests: passed: 616
[16:01:47] Elapsed time: 45.416s total, 2.565s configuring, 42.575s building, 0.251s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[16:01:47] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:01:50] 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
[16:02:02] Starting KUnit Kernel (1/1)...
[16:02:02] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:02:02] ================= ttm_device (5 subtests) ==================
[16:02:02] [PASSED] ttm_device_init_basic
[16:02:02] [PASSED] ttm_device_init_multiple
[16:02:02] [PASSED] ttm_device_fini_basic
[16:02:02] [PASSED] ttm_device_init_no_vma_man
[16:02:02] ================== ttm_device_init_pools ==================
[16:02:02] [PASSED] No DMA allocations, no DMA32 required
[16:02:02] [PASSED] DMA allocations, DMA32 required
[16:02:02] [PASSED] No DMA allocations, DMA32 required
[16:02:02] [PASSED] DMA allocations, no DMA32 required
[16:02:02] ============== [PASSED] ttm_device_init_pools ==============
[16:02:02] =================== [PASSED] ttm_device ====================
[16:02:02] ================== ttm_pool (8 subtests) ===================
[16:02:02] ================== ttm_pool_alloc_basic ===================
[16:02:02] [PASSED] One page
[16:02:02] [PASSED] More than one page
[16:02:02] [PASSED] Above the allocation limit
[16:02:02] [PASSED] One page, with coherent DMA mappings enabled
[16:02:02] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:02:02] ============== [PASSED] ttm_pool_alloc_basic ===============
[16:02:02] ============== ttm_pool_alloc_basic_dma_addr ==============
[16:02:02] [PASSED] One page
[16:02:02] [PASSED] More than one page
[16:02:02] [PASSED] Above the allocation limit
[16:02:02] [PASSED] One page, with coherent DMA mappings enabled
[16:02:02] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:02:02] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[16:02:02] [PASSED] ttm_pool_alloc_order_caching_match
[16:02:02] [PASSED] ttm_pool_alloc_caching_mismatch
[16:02:02] [PASSED] ttm_pool_alloc_order_mismatch
[16:02:02] [PASSED] ttm_pool_free_dma_alloc
[16:02:02] [PASSED] ttm_pool_free_no_dma_alloc
[16:02:02] [PASSED] ttm_pool_fini_basic
[16:02:02] ==================== [PASSED] ttm_pool =====================
[16:02:02] ================ ttm_resource (8 subtests) =================
[16:02:02] ================= ttm_resource_init_basic =================
[16:02:02] [PASSED] Init resource in TTM_PL_SYSTEM
[16:02:02] [PASSED] Init resource in TTM_PL_VRAM
[16:02:02] [PASSED] Init resource in a private placement
[16:02:02] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[16:02:02] ============= [PASSED] ttm_resource_init_basic =============
[16:02:02] [PASSED] ttm_resource_init_pinned
[16:02:02] [PASSED] ttm_resource_fini_basic
[16:02:02] [PASSED] ttm_resource_manager_init_basic
[16:02:02] [PASSED] ttm_resource_manager_usage_basic
[16:02:02] [PASSED] ttm_resource_manager_set_used_basic
[16:02:02] [PASSED] ttm_sys_man_alloc_basic
[16:02:02] [PASSED] ttm_sys_man_free_basic
[16:02:02] ================== [PASSED] ttm_resource ===================
[16:02:02] =================== ttm_tt (15 subtests) ===================
[16:02:02] ==================== ttm_tt_init_basic ====================
[16:02:02] [PASSED] Page-aligned size
[16:02:02] [PASSED] Extra pages requested
[16:02:02] ================ [PASSED] ttm_tt_init_basic ================
[16:02:02] [PASSED] ttm_tt_init_misaligned
[16:02:02] [PASSED] ttm_tt_fini_basic
[16:02:02] [PASSED] ttm_tt_fini_sg
[16:02:02] [PASSED] ttm_tt_fini_shmem
[16:02:02] [PASSED] ttm_tt_create_basic
[16:02:02] [PASSED] ttm_tt_create_invalid_bo_type
[16:02:02] [PASSED] ttm_tt_create_ttm_exists
[16:02:02] [PASSED] ttm_tt_create_failed
[16:02:02] [PASSED] ttm_tt_destroy_basic
[16:02:02] [PASSED] ttm_tt_populate_null_ttm
[16:02:02] [PASSED] ttm_tt_populate_populated_ttm
[16:02:02] [PASSED] ttm_tt_unpopulate_basic
[16:02:02] [PASSED] ttm_tt_unpopulate_empty_ttm
[16:02:02] [PASSED] ttm_tt_swapin_basic
[16:02:02] ===================== [PASSED] ttm_tt ======================
[16:02:02] =================== ttm_bo (14 subtests) ===================
[16:02:02] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[16:02:02] [PASSED] Cannot be interrupted and sleeps
[16:02:02] [PASSED] Cannot be interrupted, locks straight away
[16:02:02] [PASSED] Can be interrupted, sleeps
[16:02:02] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[16:02:02] [PASSED] ttm_bo_reserve_locked_no_sleep
[16:02:02] [PASSED] ttm_bo_reserve_no_wait_ticket
[16:02:03] [PASSED] ttm_bo_reserve_double_resv
[16:02:03] [PASSED] ttm_bo_reserve_interrupted
[16:02:03] [PASSED] ttm_bo_reserve_deadlock
[16:02:03] [PASSED] ttm_bo_unreserve_basic
[16:02:03] [PASSED] ttm_bo_unreserve_pinned
[16:02:03] [PASSED] ttm_bo_unreserve_bulk
[16:02:03] [PASSED] ttm_bo_put_basic
[16:02:03] [PASSED] ttm_bo_put_shared_resv
[16:02:03] [PASSED] ttm_bo_pin_basic
[16:02:03] [PASSED] ttm_bo_pin_unpin_resource
[16:02:03] [PASSED] ttm_bo_multiple_pin_one_unpin
[16:02:03] ===================== [PASSED] ttm_bo ======================
[16:02:03] ============== ttm_bo_validate (22 subtests) ===============
[16:02:03] ============== ttm_bo_init_reserved_sys_man ===============
[16:02:03] [PASSED] Buffer object for userspace
[16:02:03] [PASSED] Kernel buffer object
[16:02:03] [PASSED] Shared buffer object
[16:02:03] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[16:02:03] ============== ttm_bo_init_reserved_mock_man ==============
[16:02:03] [PASSED] Buffer object for userspace
[16:02:03] [PASSED] Kernel buffer object
[16:02:03] [PASSED] Shared buffer object
[16:02:03] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[16:02:03] [PASSED] ttm_bo_init_reserved_resv
[16:02:03] ================== ttm_bo_validate_basic ==================
[16:02:03] [PASSED] Buffer object for userspace
[16:02:03] [PASSED] Kernel buffer object
[16:02:03] [PASSED] Shared buffer object
[16:02:03] ============== [PASSED] ttm_bo_validate_basic ==============
[16:02:03] [PASSED] ttm_bo_validate_invalid_placement
[16:02:03] ============= ttm_bo_validate_same_placement ==============
[16:02:03] [PASSED] System manager
[16:02:03] [PASSED] VRAM manager
[16:02:03] ========= [PASSED] ttm_bo_validate_same_placement ==========
[16:02:03] [PASSED] ttm_bo_validate_failed_alloc
[16:02:03] [PASSED] ttm_bo_validate_pinned
[16:02:03] [PASSED] ttm_bo_validate_busy_placement
[16:02:03] ================ ttm_bo_validate_multihop =================
[16:02:03] [PASSED] Buffer object for userspace
[16:02:03] [PASSED] Kernel buffer object
[16:02:03] [PASSED] Shared buffer object
[16:02:03] ============ [PASSED] ttm_bo_validate_multihop =============
[16:02:03] ========== ttm_bo_validate_no_placement_signaled ==========
[16:02:03] [PASSED] Buffer object in system domain, no page vector
[16:02:03] [PASSED] Buffer object in system domain with an existing page vector
[16:02:03] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[16:02:03] ======== ttm_bo_validate_no_placement_not_signaled ========
[16:02:03] [PASSED] Buffer object for userspace
[16:02:03] [PASSED] Kernel buffer object
[16:02:03] [PASSED] Shared buffer object
[16:02:03] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[16:02:03] [PASSED] ttm_bo_validate_move_fence_signaled
[16:02:03] ========= ttm_bo_validate_move_fence_not_signaled =========
[16:02:03] [PASSED] Waits for GPU
[16:02:03] [PASSED] Tries to lock straight away
[16:02:03] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[16:02:03] [PASSED] ttm_bo_validate_swapout
[16:02:03] [PASSED] ttm_bo_validate_happy_evict
[16:02:03] [PASSED] ttm_bo_validate_all_pinned_evict
[16:02:03] [PASSED] ttm_bo_validate_allowed_only_evict
[16:02:03] [PASSED] ttm_bo_validate_deleted_evict
[16:02:03] [PASSED] ttm_bo_validate_busy_domain_evict
[16:02:03] [PASSED] ttm_bo_validate_evict_gutting
[16:02:03] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[16:02:03] ================= [PASSED] ttm_bo_validate =================
[16:02:03] ============================================================
[16:02:03] Testing complete. Ran 102 tests: passed: 102
[16:02:03] Elapsed time: 16.102s total, 2.523s configuring, 12.706s building, 0.689s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.Full: failure for drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev2)
2025-06-23 15:53 [PATCH v2 0/3] drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks Thomas Hellström
` (4 preceding siblings ...)
2025-06-23 16:02 ` ✓ CI.KUnit: success " Patchwork
@ 2025-06-23 21:36 ` Patchwork
2025-06-24 6:17 ` ✗ CI.checkpatch: warning for drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev3) Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-23 21:36 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 394 bytes --]
== Series Details ==
Series: drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev2)
URL : https://patchwork.freedesktop.org/series/150242/
State : failure
== Summary ==
ERROR: The runconfig 'xe-3291-9ec4850b4b065a9a15957da0ed1bb3904d4a3b18_FULL' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v2/index.html
[-- Attachment #2: Type: text/html, Size: 959 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.checkpatch: warning for drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev3)
2025-06-23 15:53 [PATCH v2 0/3] drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks Thomas Hellström
` (5 preceding siblings ...)
2025-06-23 21:36 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-06-24 6:17 ` Patchwork
2025-06-24 6:19 ` ✓ CI.KUnit: success " Patchwork
2025-06-24 9:17 ` ✗ Xe.CI.Full: failure " Patchwork
8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-24 6:17 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe
== Series Details ==
Series: drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev3)
URL : https://patchwork.freedesktop.org/series/150242/
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
f8ff75ae1d2127635239b134695774ed4045d05b
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit af43035f6082a08ff50aa0ff75f6d6733f4ab286
Author: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Date: Mon Jun 23 17:53:13 2025 +0200
drm/ttm, drm_xe, Implement ttm_lru_walk_for_evict() using the guarded LRU iteration
To avoid duplicating the tricky bo locking implementation,
Implement ttm_lru_walk_for_evict() using the guarded bo LRU iteration.
To facilitate this, support ticketlocking from the guarded bo LRU
iteration.
v2:
- Clean up some static function interfaces (Christian König)
- Fix Handling -EALREADY from ticketlocking in the loop by
skipping to the next item. (Intel CI)
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
+ /mt/dim checkpatch da56936fad6f5e1d5f0cef8b50277bfb071eefe7 drm-intel
1055c376805a drm/ttm: Use a struct for the common part of struct ttm_lru_walk and struct ttm_bo_lru_cursor
c1706a8154d7 drm/ttm, drm/xe: Modify the struct ttm_bo_lru_walk_cursor initialization
-:127: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#127: FILE: include/drm/ttm/ttm_bo.h:533:
+#define ttm_bo_lru_for_each_reserved_guarded(_cursor, _man, _arg, _bo) \
+ scoped_guard(ttm_bo_lru_cursor, _cursor, _man, _arg) \
for ((_bo) = ttm_bo_lru_cursor_first(_cursor); (_bo); \
(_bo) = ttm_bo_lru_cursor_next(_cursor))
BUT SEE:
do {} while (0) advice is over-stated in a few situations:
The more obvious case is macros, like MODULE_PARM_DESC, invoked at
file-scope, where C disallows code (it must be in functions). See
$exceptions if you have one to add by name.
More troublesome is declarative macros used at top of new scope,
like DECLARE_PER_CPU. These might just compile with a do-while-0
wrapper, but would be incorrect. Most of these are handled by
detecting struct,union,etc declaration primitives in $exceptions.
Theres also macros called inside an if (block), which "return" an
expression. These cannot do-while, and need a ({}) wrapper.
Enjoy this qualification while we work to improve our heuristics.
-:127: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_cursor' - possible side-effects?
#127: FILE: include/drm/ttm/ttm_bo.h:533:
+#define ttm_bo_lru_for_each_reserved_guarded(_cursor, _man, _arg, _bo) \
+ scoped_guard(ttm_bo_lru_cursor, _cursor, _man, _arg) \
for ((_bo) = ttm_bo_lru_cursor_first(_cursor); (_bo); \
(_bo) = ttm_bo_lru_cursor_next(_cursor))
-:127: CHECK:MACRO_ARG_REUSE: Macro argument reuse '_bo' - possible side-effects?
#127: FILE: include/drm/ttm/ttm_bo.h:533:
+#define ttm_bo_lru_for_each_reserved_guarded(_cursor, _man, _arg, _bo) \
+ scoped_guard(ttm_bo_lru_cursor, _cursor, _man, _arg) \
for ((_bo) = ttm_bo_lru_cursor_first(_cursor); (_bo); \
(_bo) = ttm_bo_lru_cursor_next(_cursor))
total: 1 errors, 0 warnings, 2 checks, 94 lines checked
af43035f6082 drm/ttm, drm_xe, Implement ttm_lru_walk_for_evict() using the guarded LRU iteration
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev3)
2025-06-23 15:53 [PATCH v2 0/3] drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks Thomas Hellström
` (6 preceding siblings ...)
2025-06-24 6:17 ` ✗ CI.checkpatch: warning for drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev3) Patchwork
@ 2025-06-24 6:19 ` Patchwork
2025-06-24 9:17 ` ✗ Xe.CI.Full: failure " Patchwork
8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-24 6:19 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe
== Series Details ==
Series: drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev3)
URL : https://patchwork.freedesktop.org/series/150242/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[06:17:43] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:17:50] 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
[06:18:44] Starting KUnit Kernel (1/1)...
[06:18:44] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:18:44] ================== guc_buf (11 subtests) ===================
[06:18:44] [PASSED] test_smallest
[06:18:44] [PASSED] test_largest
[06:18:44] [PASSED] test_granular
[06:18:44] [PASSED] test_unique
[06:18:44] [PASSED] test_overlap
[06:18:44] [PASSED] test_reusable
[06:18:44] [PASSED] test_too_big
[06:18:44] [PASSED] test_flush
[06:18:44] [PASSED] test_lookup
[06:18:44] [PASSED] test_data
[06:18:44] [PASSED] test_class
[06:18:44] ===================== [PASSED] guc_buf =====================
[06:18:44] =================== guc_dbm (7 subtests) ===================
[06:18:44] [PASSED] test_empty
[06:18:44] [PASSED] test_default
[06:18:44] ======================== test_size ========================
[06:18:44] [PASSED] 4
[06:18:44] [PASSED] 8
[06:18:44] [PASSED] 32
[06:18:44] [PASSED] 256
[06:18:44] ==================== [PASSED] test_size ====================
[06:18:44] ======================= test_reuse ========================
[06:18:44] [PASSED] 4
[06:18:44] [PASSED] 8
[06:18:44] [PASSED] 32
[06:18:44] [PASSED] 256
[06:18:44] =================== [PASSED] test_reuse ====================
[06:18:44] =================== test_range_overlap ====================
[06:18:44] [PASSED] 4
[06:18:44] [PASSED] 8
[06:18:44] [PASSED] 32
[06:18:44] [PASSED] 256
[06:18:44] =============== [PASSED] test_range_overlap ================
[06:18:44] =================== test_range_compact ====================
[06:18:44] [PASSED] 4
[06:18:44] [PASSED] 8
[06:18:44] [PASSED] 32
[06:18:44] [PASSED] 256
[06:18:44] =============== [PASSED] test_range_compact ================
[06:18:44] ==================== test_range_spare =====================
[06:18:44] [PASSED] 4
[06:18:44] [PASSED] 8
[06:18:44] [PASSED] 32
[06:18:44] [PASSED] 256
[06:18:44] ================ [PASSED] test_range_spare =================
[06:18:44] ===================== [PASSED] guc_dbm =====================
[06:18:44] =================== guc_idm (6 subtests) ===================
[06:18:44] [PASSED] bad_init
[06:18:44] [PASSED] no_init
[06:18:44] [PASSED] init_fini
[06:18:44] [PASSED] check_used
[06:18:44] [PASSED] check_quota
[06:18:44] [PASSED] check_all
[06:18:44] ===================== [PASSED] guc_idm =====================
[06:18:44] ================== no_relay (3 subtests) ===================
[06:18:44] [PASSED] xe_drops_guc2pf_if_not_ready
[06:18:44] [PASSED] xe_drops_guc2vf_if_not_ready
[06:18:44] [PASSED] xe_rejects_send_if_not_ready
[06:18:44] ==================== [PASSED] no_relay =====================
[06:18:44] ================== pf_relay (14 subtests) ==================
[06:18:44] [PASSED] pf_rejects_guc2pf_too_short
[06:18:44] [PASSED] pf_rejects_guc2pf_too_long
[06:18:44] [PASSED] pf_rejects_guc2pf_no_payload
[06:18:44] [PASSED] pf_fails_no_payload
[06:18:44] [PASSED] pf_fails_bad_origin
[06:18:44] [PASSED] pf_fails_bad_type
[06:18:44] [PASSED] pf_txn_reports_error
[06:18:44] [PASSED] pf_txn_sends_pf2guc
[06:18:44] [PASSED] pf_sends_pf2guc
[06:18:44] [SKIPPED] pf_loopback_nop
[06:18:44] [SKIPPED] pf_loopback_echo
[06:18:44] [SKIPPED] pf_loopback_fail
[06:18:44] [SKIPPED] pf_loopback_busy
[06:18:44] [SKIPPED] pf_loopback_retry
[06:18:44] ==================== [PASSED] pf_relay =====================
[06:18:44] ================== vf_relay (3 subtests) ===================
[06:18:44] [PASSED] vf_rejects_guc2vf_too_short
[06:18:44] [PASSED] vf_rejects_guc2vf_too_long
[06:18:44] [PASSED] vf_rejects_guc2vf_no_payload
[06:18:44] ==================== [PASSED] vf_relay =====================
[06:18:44] ================= pf_service (11 subtests) =================
[06:18:44] [PASSED] pf_negotiate_any
[06:18:44] [PASSED] pf_negotiate_base_match
[06:18:44] [PASSED] pf_negotiate_base_newer
[06:18:44] [PASSED] pf_negotiate_base_next
[06:18:44] [SKIPPED] pf_negotiate_base_older
[06:18:44] [PASSED] pf_negotiate_base_prev
[06:18:44] [PASSED] pf_negotiate_latest_match
[06:18:44] [PASSED] pf_negotiate_latest_newer
[06:18:44] [PASSED] pf_negotiate_latest_next
[06:18:44] [SKIPPED] pf_negotiate_latest_older
[06:18:44] [SKIPPED] pf_negotiate_latest_prev
[06:18:44] =================== [PASSED] pf_service ====================
[06:18:44] ===================== lmtt (1 subtest) =====================
[06:18:44] ======================== test_ops =========================
[06:18:44] [PASSED] 2-level
[06:18:44] [PASSED] multi-level
[06:18:44] ==================== [PASSED] test_ops =====================
[06:18:44] ====================== [PASSED] lmtt =======================
[06:18:44] =================== xe_mocs (2 subtests) ===================
[06:18:44] ================ xe_live_mocs_kernel_kunit ================
[06:18:44] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[06:18:44] ================ xe_live_mocs_reset_kunit =================
[06:18:44] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[06:18:44] ==================== [SKIPPED] xe_mocs =====================
[06:18:44] ================= xe_migrate (2 subtests) ==================
[06:18:44] ================= xe_migrate_sanity_kunit =================
[06:18:44] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[06:18:44] ================== xe_validate_ccs_kunit ==================
[06:18:44] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[06:18:44] =================== [SKIPPED] xe_migrate ===================
[06:18:44] ================== xe_dma_buf (1 subtest) ==================
[06:18:44] ==================== xe_dma_buf_kunit =====================
[06:18:44] ================ [SKIPPED] xe_dma_buf_kunit ================
[06:18:44] =================== [SKIPPED] xe_dma_buf ===================
[06:18:44] ================= xe_bo_shrink (1 subtest) =================
[06:18:44] =================== xe_bo_shrink_kunit ====================
[06:18:44] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[06:18:44] ================== [SKIPPED] xe_bo_shrink ==================
[06:18:44] ==================== xe_bo (2 subtests) ====================
[06:18:44] ================== xe_ccs_migrate_kunit ===================
[06:18:44] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[06:18:44] ==================== xe_bo_evict_kunit ====================
[06:18:44] =============== [SKIPPED] xe_bo_evict_kunit ================
[06:18:44] ===================== [SKIPPED] xe_bo ======================
[06:18:44] ==================== args (11 subtests) ====================
[06:18:44] [PASSED] count_args_test
[06:18:44] [PASSED] call_args_example
[06:18:44] [PASSED] call_args_test
[06:18:44] [PASSED] drop_first_arg_example
[06:18:44] [PASSED] drop_first_arg_test
[06:18:44] [PASSED] first_arg_example
[06:18:44] [PASSED] first_arg_test
[06:18:44] [PASSED] last_arg_example
[06:18:44] [PASSED] last_arg_test
[06:18:44] [PASSED] pick_arg_example
[06:18:44] [PASSED] sep_comma_example
[06:18:44] ====================== [PASSED] args =======================
[06:18:44] =================== xe_pci (2 subtests) ====================
[06:18:44] ==================== check_graphics_ip ====================
[06:18:44] [PASSED] 12.70 Xe_LPG
[06:18:44] [PASSED] 12.71 Xe_LPG
[06:18:44] [PASSED] 12.74 Xe_LPG+
[06:18:44] [PASSED] 20.01 Xe2_HPG
[06:18:44] [PASSED] 20.02 Xe2_HPG
[06:18:44] [PASSED] 20.04 Xe2_LPG
[06:18:44] [PASSED] 30.00 Xe3_LPG
[06:18:44] [PASSED] 30.01 Xe3_LPG
[06:18:44] [PASSED] 30.03 Xe3_LPG
[06:18:44] ================ [PASSED] check_graphics_ip ================
[06:18:44] ===================== check_media_ip ======================
[06:18:44] [PASSED] 13.00 Xe_LPM+
[06:18:44] [PASSED] 13.01 Xe2_HPM
[06:18:44] [PASSED] 20.00 Xe2_LPM
[06:18:44] [PASSED] 30.00 Xe3_LPM
[06:18:44] [PASSED] 30.02 Xe3_LPM
stty: 'standard input': Inappropriate ioctl for device
[06:18:44] ================= [PASSED] check_media_ip ==================
[06:18:44] ===================== [PASSED] xe_pci ======================
[06:18:44] =================== xe_rtp (2 subtests) ====================
[06:18:44] =============== xe_rtp_process_to_sr_tests ================
[06:18:44] [PASSED] coalesce-same-reg
[06:18:44] [PASSED] no-match-no-add
[06:18:44] [PASSED] match-or
[06:18:44] [PASSED] match-or-xfail
[06:18:44] [PASSED] no-match-no-add-multiple-rules
[06:18:44] [PASSED] two-regs-two-entries
[06:18:44] [PASSED] clr-one-set-other
[06:18:44] [PASSED] set-field
[06:18:44] [PASSED] conflict-duplicate
[06:18:44] [PASSED] conflict-not-disjoint
[06:18:44] [PASSED] conflict-reg-type
[06:18:44] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[06:18:44] ================== xe_rtp_process_tests ===================
[06:18:44] [PASSED] active1
[06:18:44] [PASSED] active2
[06:18:44] [PASSED] active-inactive
[06:18:44] [PASSED] inactive-active
[06:18:44] [PASSED] inactive-1st_or_active-inactive
[06:18:44] [PASSED] inactive-2nd_or_active-inactive
[06:18:44] [PASSED] inactive-last_or_active-inactive
[06:18:44] [PASSED] inactive-no_or_active-inactive
[06:18:44] ============== [PASSED] xe_rtp_process_tests ===============
[06:18:44] ===================== [PASSED] xe_rtp ======================
[06:18:44] ==================== xe_wa (1 subtest) =====================
[06:18:44] ======================== xe_wa_gt =========================
[06:18:44] [PASSED] TIGERLAKE (B0)
[06:18:44] [PASSED] DG1 (A0)
[06:18:44] [PASSED] DG1 (B0)
[06:18:44] [PASSED] ALDERLAKE_S (A0)
[06:18:44] [PASSED] ALDERLAKE_S (B0)
[06:18:44] [PASSED] ALDERLAKE_S (C0)
[06:18:44] [PASSED] ALDERLAKE_S (D0)
[06:18:44] [PASSED] ALDERLAKE_P (A0)
[06:18:44] [PASSED] ALDERLAKE_P (B0)
[06:18:44] [PASSED] ALDERLAKE_P (C0)
[06:18:44] [PASSED] ALDERLAKE_S_RPLS (D0)
[06:18:44] [PASSED] ALDERLAKE_P_RPLU (E0)
[06:18:44] [PASSED] DG2_G10 (C0)
[06:18:44] [PASSED] DG2_G11 (B1)
[06:18:44] [PASSED] DG2_G12 (A1)
[06:18:44] [PASSED] METEORLAKE (g:A0, m:A0)
[06:18:44] [PASSED] METEORLAKE (g:A0, m:A0)
[06:18:44] [PASSED] METEORLAKE (g:A0, m:A0)
[06:18:44] [PASSED] LUNARLAKE (g:A0, m:A0)
[06:18:44] [PASSED] LUNARLAKE (g:B0, m:A0)
[06:18:44] [PASSED] BATTLEMAGE (g:A0, m:A1)
[06:18:44] ==================== [PASSED] xe_wa_gt =====================
[06:18:44] ====================== [PASSED] xe_wa ======================
[06:18:44] ============================================================
[06:18:44] Testing complete. Ran 145 tests: passed: 129, skipped: 16
[06:18:44] Elapsed time: 60.977s total, 7.009s configuring, 53.449s building, 0.486s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[06:18:45] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:18:47] 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
[06:19:30] Starting KUnit Kernel (1/1)...
[06:19:30] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:19:30] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[06:19:30] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[06:19:30] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[06:19:30] =========== drm_validate_clone_mode (2 subtests) ===========
[06:19:30] ============== drm_test_check_in_clone_mode ===============
[06:19:30] [PASSED] in_clone_mode
[06:19:30] [PASSED] not_in_clone_mode
[06:19:30] ========== [PASSED] drm_test_check_in_clone_mode ===========
[06:19:30] =============== drm_test_check_valid_clones ===============
[06:19:30] [PASSED] not_in_clone_mode
[06:19:30] [PASSED] valid_clone
[06:19:30] [PASSED] invalid_clone
[06:19:30] =========== [PASSED] drm_test_check_valid_clones ===========
[06:19:30] ============= [PASSED] drm_validate_clone_mode =============
[06:19:30] ============= drm_validate_modeset (1 subtest) =============
[06:19:30] [PASSED] drm_test_check_connector_changed_modeset
[06:19:30] ============== [PASSED] drm_validate_modeset ===============
[06:19:30] ====== drm_test_bridge_get_current_state (2 subtests) ======
[06:19:30] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[06:19:30] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[06:19:30] ======== [PASSED] drm_test_bridge_get_current_state ========
[06:19:30] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[06:19:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[06:19:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[06:19:30] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[06:19:30] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[06:19:30] ============== drm_bridge_alloc (2 subtests) ===============
[06:19:30] [PASSED] drm_test_drm_bridge_alloc_basic
[06:19:30] [PASSED] drm_test_drm_bridge_alloc_get_put
[06:19:30] ================ [PASSED] drm_bridge_alloc =================
[06:19:30] ================== drm_buddy (7 subtests) ==================
[06:19:30] [PASSED] drm_test_buddy_alloc_limit
[06:19:30] [PASSED] drm_test_buddy_alloc_optimistic
[06:19:30] [PASSED] drm_test_buddy_alloc_pessimistic
[06:19:30] [PASSED] drm_test_buddy_alloc_pathological
[06:19:30] [PASSED] drm_test_buddy_alloc_contiguous
[06:19:30] [PASSED] drm_test_buddy_alloc_clear
[06:19:30] [PASSED] drm_test_buddy_alloc_range_bias
[06:19:30] ==================== [PASSED] drm_buddy ====================
[06:19:30] ============= drm_cmdline_parser (40 subtests) =============
[06:19:30] [PASSED] drm_test_cmdline_force_d_only
[06:19:30] [PASSED] drm_test_cmdline_force_D_only_dvi
[06:19:30] [PASSED] drm_test_cmdline_force_D_only_hdmi
[06:19:30] [PASSED] drm_test_cmdline_force_D_only_not_digital
[06:19:30] [PASSED] drm_test_cmdline_force_e_only
[06:19:30] [PASSED] drm_test_cmdline_res
[06:19:30] [PASSED] drm_test_cmdline_res_vesa
[06:19:30] [PASSED] drm_test_cmdline_res_vesa_rblank
[06:19:30] [PASSED] drm_test_cmdline_res_rblank
[06:19:30] [PASSED] drm_test_cmdline_res_bpp
[06:19:30] [PASSED] drm_test_cmdline_res_refresh
[06:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh
[06:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[06:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[06:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[06:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[06:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[06:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[06:19:30] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[06:19:30] [PASSED] drm_test_cmdline_res_margins_force_on
[06:19:30] [PASSED] drm_test_cmdline_res_vesa_margins
[06:19:30] [PASSED] drm_test_cmdline_name
[06:19:30] [PASSED] drm_test_cmdline_name_bpp
[06:19:30] [PASSED] drm_test_cmdline_name_option
[06:19:30] [PASSED] drm_test_cmdline_name_bpp_option
[06:19:30] [PASSED] drm_test_cmdline_rotate_0
[06:19:30] [PASSED] drm_test_cmdline_rotate_90
[06:19:30] [PASSED] drm_test_cmdline_rotate_180
[06:19:30] [PASSED] drm_test_cmdline_rotate_270
[06:19:30] [PASSED] drm_test_cmdline_hmirror
[06:19:30] [PASSED] drm_test_cmdline_vmirror
[06:19:30] [PASSED] drm_test_cmdline_margin_options
[06:19:30] [PASSED] drm_test_cmdline_multiple_options
[06:19:30] [PASSED] drm_test_cmdline_bpp_extra_and_option
[06:19:30] [PASSED] drm_test_cmdline_extra_and_option
[06:19:30] [PASSED] drm_test_cmdline_freestanding_options
[06:19:30] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[06:19:30] [PASSED] drm_test_cmdline_panel_orientation
[06:19:30] ================ drm_test_cmdline_invalid =================
[06:19:30] [PASSED] margin_only
[06:19:30] [PASSED] interlace_only
[06:19:30] [PASSED] res_missing_x
[06:19:30] [PASSED] res_missing_y
[06:19:30] [PASSED] res_bad_y
[06:19:30] [PASSED] res_missing_y_bpp
[06:19:30] [PASSED] res_bad_bpp
[06:19:30] [PASSED] res_bad_refresh
[06:19:30] [PASSED] res_bpp_refresh_force_on_off
[06:19:30] [PASSED] res_invalid_mode
[06:19:30] [PASSED] res_bpp_wrong_place_mode
[06:19:30] [PASSED] name_bpp_refresh
[06:19:30] [PASSED] name_refresh
[06:19:30] [PASSED] name_refresh_wrong_mode
[06:19:30] [PASSED] name_refresh_invalid_mode
[06:19:30] [PASSED] rotate_multiple
[06:19:30] [PASSED] rotate_invalid_val
[06:19:30] [PASSED] rotate_truncated
[06:19:30] [PASSED] invalid_option
[06:19:30] [PASSED] invalid_tv_option
[06:19:30] [PASSED] truncated_tv_option
[06:19:30] ============ [PASSED] drm_test_cmdline_invalid =============
[06:19:30] =============== drm_test_cmdline_tv_options ===============
[06:19:30] [PASSED] NTSC
[06:19:30] [PASSED] NTSC_443
[06:19:30] [PASSED] NTSC_J
[06:19:30] [PASSED] PAL
[06:19:30] [PASSED] PAL_M
[06:19:30] [PASSED] PAL_N
[06:19:30] [PASSED] SECAM
[06:19:30] [PASSED] MONO_525
[06:19:30] [PASSED] MONO_625
[06:19:30] =========== [PASSED] drm_test_cmdline_tv_options ===========
[06:19:30] =============== [PASSED] drm_cmdline_parser ================
[06:19:30] ========== drmm_connector_hdmi_init (20 subtests) ==========
[06:19:30] [PASSED] drm_test_connector_hdmi_init_valid
[06:19:30] [PASSED] drm_test_connector_hdmi_init_bpc_8
[06:19:30] [PASSED] drm_test_connector_hdmi_init_bpc_10
[06:19:30] [PASSED] drm_test_connector_hdmi_init_bpc_12
[06:19:30] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[06:19:30] [PASSED] drm_test_connector_hdmi_init_bpc_null
[06:19:30] [PASSED] drm_test_connector_hdmi_init_formats_empty
[06:19:30] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[06:19:30] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[06:19:30] [PASSED] supported_formats=0x9 yuv420_allowed=1
[06:19:30] [PASSED] supported_formats=0x9 yuv420_allowed=0
[06:19:30] [PASSED] supported_formats=0x3 yuv420_allowed=1
[06:19:30] [PASSED] supported_formats=0x3 yuv420_allowed=0
[06:19:30] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[06:19:30] [PASSED] drm_test_connector_hdmi_init_null_ddc
[06:19:30] [PASSED] drm_test_connector_hdmi_init_null_product
[06:19:30] [PASSED] drm_test_connector_hdmi_init_null_vendor
[06:19:30] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[06:19:30] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[06:19:30] [PASSED] drm_test_connector_hdmi_init_product_valid
[06:19:30] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[06:19:30] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[06:19:30] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[06:19:30] ========= drm_test_connector_hdmi_init_type_valid =========
[06:19:30] [PASSED] HDMI-A
[06:19:30] [PASSED] HDMI-B
[06:19:30] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[06:19:30] ======== drm_test_connector_hdmi_init_type_invalid ========
[06:19:30] [PASSED] Unknown
[06:19:30] [PASSED] VGA
[06:19:30] [PASSED] DVI-I
[06:19:30] [PASSED] DVI-D
[06:19:30] [PASSED] DVI-A
[06:19:30] [PASSED] Composite
[06:19:30] [PASSED] SVIDEO
[06:19:30] [PASSED] LVDS
[06:19:30] [PASSED] Component
[06:19:30] [PASSED] DIN
[06:19:30] [PASSED] DP
[06:19:30] [PASSED] TV
[06:19:30] [PASSED] eDP
[06:19:30] [PASSED] Virtual
[06:19:30] [PASSED] DSI
[06:19:30] [PASSED] DPI
[06:19:30] [PASSED] Writeback
[06:19:30] [PASSED] SPI
[06:19:30] [PASSED] USB
[06:19:30] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[06:19:30] ============ [PASSED] drmm_connector_hdmi_init =============
[06:19:30] ============= drmm_connector_init (3 subtests) =============
[06:19:30] [PASSED] drm_test_drmm_connector_init
[06:19:30] [PASSED] drm_test_drmm_connector_init_null_ddc
[06:19:30] ========= drm_test_drmm_connector_init_type_valid =========
[06:19:30] [PASSED] Unknown
[06:19:30] [PASSED] VGA
[06:19:30] [PASSED] DVI-I
[06:19:30] [PASSED] DVI-D
[06:19:30] [PASSED] DVI-A
[06:19:30] [PASSED] Composite
[06:19:30] [PASSED] SVIDEO
[06:19:30] [PASSED] LVDS
[06:19:30] [PASSED] Component
[06:19:30] [PASSED] DIN
[06:19:30] [PASSED] DP
[06:19:30] [PASSED] HDMI-A
[06:19:30] [PASSED] HDMI-B
[06:19:30] [PASSED] TV
[06:19:30] [PASSED] eDP
[06:19:30] [PASSED] Virtual
[06:19:30] [PASSED] DSI
[06:19:30] [PASSED] DPI
[06:19:30] [PASSED] Writeback
[06:19:30] [PASSED] SPI
[06:19:30] [PASSED] USB
[06:19:30] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[06:19:30] =============== [PASSED] drmm_connector_init ===============
[06:19:30] ========= drm_connector_dynamic_init (6 subtests) ==========
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_init
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_init_properties
[06:19:30] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[06:19:30] [PASSED] Unknown
[06:19:30] [PASSED] VGA
[06:19:30] [PASSED] DVI-I
[06:19:30] [PASSED] DVI-D
[06:19:30] [PASSED] DVI-A
[06:19:30] [PASSED] Composite
[06:19:30] [PASSED] SVIDEO
[06:19:30] [PASSED] LVDS
[06:19:30] [PASSED] Component
[06:19:30] [PASSED] DIN
[06:19:30] [PASSED] DP
[06:19:30] [PASSED] HDMI-A
[06:19:30] [PASSED] HDMI-B
[06:19:30] [PASSED] TV
[06:19:30] [PASSED] eDP
[06:19:30] [PASSED] Virtual
[06:19:30] [PASSED] DSI
[06:19:30] [PASSED] DPI
[06:19:30] [PASSED] Writeback
[06:19:30] [PASSED] SPI
[06:19:30] [PASSED] USB
[06:19:30] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[06:19:30] ======== drm_test_drm_connector_dynamic_init_name =========
[06:19:30] [PASSED] Unknown
[06:19:30] [PASSED] VGA
[06:19:30] [PASSED] DVI-I
[06:19:30] [PASSED] DVI-D
[06:19:30] [PASSED] DVI-A
[06:19:30] [PASSED] Composite
[06:19:30] [PASSED] SVIDEO
[06:19:30] [PASSED] LVDS
[06:19:30] [PASSED] Component
[06:19:30] [PASSED] DIN
[06:19:30] [PASSED] DP
[06:19:30] [PASSED] HDMI-A
[06:19:30] [PASSED] HDMI-B
[06:19:30] [PASSED] TV
[06:19:30] [PASSED] eDP
[06:19:30] [PASSED] Virtual
[06:19:30] [PASSED] DSI
[06:19:30] [PASSED] DPI
[06:19:30] [PASSED] Writeback
[06:19:30] [PASSED] SPI
[06:19:30] [PASSED] USB
[06:19:30] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[06:19:30] =========== [PASSED] drm_connector_dynamic_init ============
[06:19:30] ==== drm_connector_dynamic_register_early (4 subtests) =====
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[06:19:30] ====== [PASSED] drm_connector_dynamic_register_early =======
[06:19:30] ======= drm_connector_dynamic_register (7 subtests) ========
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[06:19:30] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[06:19:30] ========= [PASSED] drm_connector_dynamic_register ==========
[06:19:30] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[06:19:30] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[06:19:30] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[06:19:30] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[06:19:30] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[06:19:30] ========== drm_test_get_tv_mode_from_name_valid ===========
[06:19:30] [PASSED] NTSC
[06:19:30] [PASSED] NTSC-443
[06:19:30] [PASSED] NTSC-J
[06:19:30] [PASSED] PAL
[06:19:30] [PASSED] PAL-M
[06:19:30] [PASSED] PAL-N
[06:19:30] [PASSED] SECAM
[06:19:30] [PASSED] Mono
[06:19:30] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[06:19:30] [PASSED] drm_test_get_tv_mode_from_name_truncated
[06:19:30] ============ [PASSED] drm_get_tv_mode_from_name ============
[06:19:30] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[06:19:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[06:19:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[06:19:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[06:19:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[06:19:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[06:19:30] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[06:19:30] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[06:19:30] [PASSED] VIC 96
[06:19:30] [PASSED] VIC 97
[06:19:30] [PASSED] VIC 101
[06:19:30] [PASSED] VIC 102
[06:19:30] [PASSED] VIC 106
[06:19:30] [PASSED] VIC 107
[06:19:30] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[06:19:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[06:19:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[06:19:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[06:19:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[06:19:30] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[06:19:30] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[06:19:30] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[06:19:30] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[06:19:30] [PASSED] Automatic
[06:19:30] [PASSED] Full
[06:19:30] [PASSED] Limited 16:235
[06:19:30] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[06:19:30] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[06:19:30] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[06:19:30] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[06:19:30] === drm_test_drm_hdmi_connector_get_output_format_name ====
[06:19:30] [PASSED] RGB
[06:19:30] [PASSED] YUV 4:2:0
[06:19:30] [PASSED] YUV 4:2:2
[06:19:30] [PASSED] YUV 4:4:4
[06:19:30] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[06:19:30] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[06:19:30] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[06:19:30] ============= drm_damage_helper (21 subtests) ==============
[06:19:30] [PASSED] drm_test_damage_iter_no_damage
[06:19:30] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[06:19:30] [PASSED] drm_test_damage_iter_no_damage_src_moved
[06:19:30] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[06:19:30] [PASSED] drm_test_damage_iter_no_damage_not_visible
[06:19:30] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[06:19:30] [PASSED] drm_test_damage_iter_no_damage_no_fb
[06:19:30] [PASSED] drm_test_damage_iter_simple_damage
[06:19:30] [PASSED] drm_test_damage_iter_single_damage
[06:19:30] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[06:19:30] [PASSED] drm_test_damage_iter_single_damage_outside_src
[06:19:30] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[06:19:30] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[06:19:30] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[06:19:30] [PASSED] drm_test_damage_iter_single_damage_src_moved
[06:19:30] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[06:19:30] [PASSED] drm_test_damage_iter_damage
[06:19:30] [PASSED] drm_test_damage_iter_damage_one_intersect
[06:19:30] [PASSED] drm_test_damage_iter_damage_one_outside
[06:19:30] [PASSED] drm_test_damage_iter_damage_src_moved
[06:19:30] [PASSED] drm_test_damage_iter_damage_not_visible
[06:19:30] ================ [PASSED] drm_damage_helper ================
[06:19:30] ============== drm_dp_mst_helper (3 subtests) ==============
[06:19:30] ============== drm_test_dp_mst_calc_pbn_mode ==============
[06:19:30] [PASSED] Clock 154000 BPP 30 DSC disabled
[06:19:30] [PASSED] Clock 234000 BPP 30 DSC disabled
[06:19:30] [PASSED] Clock 297000 BPP 24 DSC disabled
[06:19:30] [PASSED] Clock 332880 BPP 24 DSC enabled
[06:19:30] [PASSED] Clock 324540 BPP 24 DSC enabled
[06:19:30] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[06:19:30] ============== drm_test_dp_mst_calc_pbn_div ===============
[06:19:30] [PASSED] Link rate 2000000 lane count 4
[06:19:30] [PASSED] Link rate 2000000 lane count 2
[06:19:30] [PASSED] Link rate 2000000 lane count 1
[06:19:30] [PASSED] Link rate 1350000 lane count 4
[06:19:30] [PASSED] Link rate 1350000 lane count 2
[06:19:30] [PASSED] Link rate 1350000 lane count 1
[06:19:30] [PASSED] Link rate 1000000 lane count 4
[06:19:30] [PASSED] Link rate 1000000 lane count 2
[06:19:30] [PASSED] Link rate 1000000 lane count 1
[06:19:30] [PASSED] Link rate 810000 lane count 4
[06:19:30] [PASSED] Link rate 810000 lane count 2
[06:19:30] [PASSED] Link rate 810000 lane count 1
[06:19:30] [PASSED] Link rate 540000 lane count 4
[06:19:30] [PASSED] Link rate 540000 lane count 2
[06:19:30] [PASSED] Link rate 540000 lane count 1
[06:19:30] [PASSED] Link rate 270000 lane count 4
[06:19:30] [PASSED] Link rate 270000 lane count 2
[06:19:30] [PASSED] Link rate 270000 lane count 1
[06:19:30] [PASSED] Link rate 162000 lane count 4
[06:19:30] [PASSED] Link rate 162000 lane count 2
[06:19:30] [PASSED] Link rate 162000 lane count 1
[06:19:30] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[06:19:30] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[06:19:30] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[06:19:30] [PASSED] DP_POWER_UP_PHY with port number
[06:19:30] [PASSED] DP_POWER_DOWN_PHY with port number
[06:19:30] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[06:19:30] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[06:19:30] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[06:19:30] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[06:19:30] [PASSED] DP_QUERY_PAYLOAD with port number
[06:19:30] [PASSED] DP_QUERY_PAYLOAD with VCPI
[06:19:30] [PASSED] DP_REMOTE_DPCD_READ with port number
[06:19:30] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[06:19:30] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[06:19:30] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[06:19:30] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[06:19:30] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[06:19:30] [PASSED] DP_REMOTE_I2C_READ with port number
[06:19:30] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[06:19:30] [PASSED] DP_REMOTE_I2C_READ with transactions array
[06:19:30] [PASSED] DP_REMOTE_I2C_WRITE with port number
[06:19:30] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[06:19:30] [PASSED] DP_REMOTE_I2C_WRITE with data array
[06:19:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[06:19:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[06:19:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[06:19:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[06:19:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[06:19:30] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[06:19:30] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[06:19:30] ================ [PASSED] drm_dp_mst_helper ================
[06:19:30] ================== drm_exec (7 subtests) ===================
[06:19:30] [PASSED] sanitycheck
[06:19:30] [PASSED] test_lock
[06:19:30] [PASSED] test_lock_unlock
[06:19:30] [PASSED] test_duplicates
[06:19:30] [PASSED] test_prepare
[06:19:30] [PASSED] test_prepare_array
[06:19:30] [PASSED] test_multiple_loops
[06:19:30] ==================== [PASSED] drm_exec =====================
[06:19:30] =========== drm_format_helper_test (17 subtests) ===========
[06:19:30] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[06:19:30] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[06:19:30] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[06:19:30] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[06:19:30] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[06:19:30] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[06:19:30] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[06:19:30] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[06:19:30] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[06:19:30] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[06:19:30] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[06:19:30] ============== drm_test_fb_xrgb8888_to_mono ===============
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[06:19:30] ==================== drm_test_fb_swab =====================
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ================ [PASSED] drm_test_fb_swab =================
[06:19:30] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[06:19:30] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[06:19:30] [PASSED] single_pixel_source_buffer
[06:19:30] [PASSED] single_pixel_clip_rectangle
[06:19:30] [PASSED] well_known_colors
[06:19:30] [PASSED] destination_pitch
[06:19:30] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[06:19:30] ================= drm_test_fb_clip_offset =================
[06:19:30] [PASSED] pass through
[06:19:30] [PASSED] horizontal offset
[06:19:30] [PASSED] vertical offset
[06:19:30] [PASSED] horizontal and vertical offset
[06:19:30] [PASSED] horizontal offset (custom pitch)
[06:19:30] [PASSED] vertical offset (custom pitch)
[06:19:30] [PASSED] horizontal and vertical offset (custom pitch)
[06:19:30] ============= [PASSED] drm_test_fb_clip_offset =============
[06:19:30] =================== drm_test_fb_memcpy ====================
[06:19:30] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[06:19:30] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[06:19:30] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[06:19:30] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[06:19:30] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[06:19:30] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[06:19:30] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[06:19:30] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[06:19:30] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[06:19:30] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[06:19:30] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[06:19:30] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[06:19:30] =============== [PASSED] drm_test_fb_memcpy ================
[06:19:30] ============= [PASSED] drm_format_helper_test ==============
[06:19:30] ================= drm_format (18 subtests) =================
[06:19:30] [PASSED] drm_test_format_block_width_invalid
[06:19:30] [PASSED] drm_test_format_block_width_one_plane
[06:19:30] [PASSED] drm_test_format_block_width_two_plane
[06:19:30] [PASSED] drm_test_format_block_width_three_plane
[06:19:30] [PASSED] drm_test_format_block_width_tiled
[06:19:30] [PASSED] drm_test_format_block_height_invalid
[06:19:30] [PASSED] drm_test_format_block_height_one_plane
[06:19:30] [PASSED] drm_test_format_block_height_two_plane
[06:19:30] [PASSED] drm_test_format_block_height_three_plane
[06:19:30] [PASSED] drm_test_format_block_height_tiled
[06:19:30] [PASSED] drm_test_format_min_pitch_invalid
[06:19:30] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[06:19:30] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[06:19:30] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[06:19:30] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[06:19:30] [PASSED] drm_test_format_min_pitch_two_plane
[06:19:30] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[06:19:30] [PASSED] drm_test_format_min_pitch_tiled
[06:19:30] =================== [PASSED] drm_format ====================
[06:19:30] ============== drm_framebuffer (10 subtests) ===============
[06:19:30] ========== drm_test_framebuffer_check_src_coords ==========
[06:19:30] [PASSED] Success: source fits into fb
[06:19:30] [PASSED] Fail: overflowing fb with x-axis coordinate
[06:19:30] [PASSED] Fail: overflowing fb with y-axis coordinate
[06:19:30] [PASSED] Fail: overflowing fb with source width
[06:19:30] [PASSED] Fail: overflowing fb with source height
[06:19:30] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[06:19:30] [PASSED] drm_test_framebuffer_cleanup
[06:19:30] =============== drm_test_framebuffer_create ===============
[06:19:30] [PASSED] ABGR8888 normal sizes
[06:19:30] [PASSED] ABGR8888 max sizes
[06:19:30] [PASSED] ABGR8888 pitch greater than min required
[06:19:30] [PASSED] ABGR8888 pitch less than min required
[06:19:30] [PASSED] ABGR8888 Invalid width
[06:19:30] [PASSED] ABGR8888 Invalid buffer handle
[06:19:30] [PASSED] No pixel format
[06:19:30] [PASSED] ABGR8888 Width 0
[06:19:30] [PASSED] ABGR8888 Height 0
[06:19:30] [PASSED] ABGR8888 Out of bound height * pitch combination
[06:19:30] [PASSED] ABGR8888 Large buffer offset
[06:19:30] [PASSED] ABGR8888 Buffer offset for inexistent plane
[06:19:30] [PASSED] ABGR8888 Invalid flag
[06:19:30] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[06:19:30] [PASSED] ABGR8888 Valid buffer modifier
[06:19:30] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[06:19:30] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[06:19:30] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[06:19:30] [PASSED] NV12 Normal sizes
[06:19:30] [PASSED] NV12 Max sizes
[06:19:30] [PASSED] NV12 Invalid pitch
[06:19:30] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[06:19:30] [PASSED] NV12 different modifier per-plane
[06:19:30] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[06:19:30] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[06:19:30] [PASSED] NV12 Modifier for inexistent plane
[06:19:30] [PASSED] NV12 Handle for inexistent plane
[06:19:30] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[06:19:30] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[06:19:30] [PASSED] YVU420 Normal sizes
[06:19:30] [PASSED] YVU420 Max sizes
[06:19:30] [PASSED] YVU420 Invalid pitch
[06:19:30] [PASSED] YVU420 Different pitches
[06:19:30] [PASSED] YVU420 Different buffer offsets/pitches
[06:19:30] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[06:19:30] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[06:19:30] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[06:19:30] [PASSED] YVU420 Valid modifier
[06:19:30] [PASSED] YVU420 Different modifiers per plane
[06:19:30] [PASSED] YVU420 Modifier for inexistent plane
[06:19:30] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[06:19:30] [PASSED] X0L2 Normal sizes
[06:19:30] [PASSED] X0L2 Max sizes
[06:19:30] [PASSED] X0L2 Invalid pitch
[06:19:30] [PASSED] X0L2 Pitch greater than minimum required
[06:19:30] [PASSED] X0L2 Handle for inexistent plane
[06:19:30] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[06:19:30] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[06:19:30] [PASSED] X0L2 Valid modifier
[06:19:30] [PASSED] X0L2 Modifier for inexistent plane
[06:19:30] =========== [PASSED] drm_test_framebuffer_create ===========
[06:19:30] [PASSED] drm_test_framebuffer_free
[06:19:30] [PASSED] drm_test_framebuffer_init
[06:19:30] [PASSED] drm_test_framebuffer_init_bad_format
[06:19:30] [PASSED] drm_test_framebuffer_init_dev_mismatch
[06:19:30] [PASSED] drm_test_framebuffer_lookup
[06:19:30] [PASSED] drm_test_framebuffer_lookup_inexistent
[06:19:30] [PASSED] drm_test_framebuffer_modifiers_not_supported
[06:19:30] ================= [PASSED] drm_framebuffer =================
[06:19:30] ================ drm_gem_shmem (8 subtests) ================
[06:19:30] [PASSED] drm_gem_shmem_test_obj_create
[06:19:30] [PASSED] drm_gem_shmem_test_obj_create_private
[06:19:30] [PASSED] drm_gem_shmem_test_pin_pages
[06:19:30] [PASSED] drm_gem_shmem_test_vmap
[06:19:30] [PASSED] drm_gem_shmem_test_get_pages_sgt
[06:19:30] [PASSED] drm_gem_shmem_test_get_sg_table
[06:19:30] [PASSED] drm_gem_shmem_test_madvise
[06:19:30] [PASSED] drm_gem_shmem_test_purge
[06:19:30] ================== [PASSED] drm_gem_shmem ==================
[06:19:30] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[06:19:30] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[06:19:30] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[06:19:30] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[06:19:30] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[06:19:30] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[06:19:30] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[06:19:30] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[06:19:30] [PASSED] Automatic
[06:19:30] [PASSED] Full
[06:19:30] [PASSED] Limited 16:235
[06:19:30] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[06:19:30] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[06:19:30] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[06:19:30] [PASSED] drm_test_check_disable_connector
[06:19:30] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[06:19:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[06:19:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[06:19:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[06:19:30] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[06:19:30] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[06:19:30] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[06:19:30] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[06:19:30] [PASSED] drm_test_check_output_bpc_dvi
[06:19:30] [PASSED] drm_test_check_output_bpc_format_vic_1
[06:19:30] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[06:19:30] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[06:19:30] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[06:19:30] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[06:19:30] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[06:19:30] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[06:19:30] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[06:19:30] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[06:19:30] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[06:19:30] [PASSED] drm_test_check_broadcast_rgb_value
[06:19:30] [PASSED] drm_test_check_bpc_8_value
[06:19:30] [PASSED] drm_test_check_bpc_10_value
[06:19:30] [PASSED] drm_test_check_bpc_12_value
[06:19:30] [PASSED] drm_test_check_format_value
[06:19:30] [PASSED] drm_test_check_tmds_char_value
[06:19:30] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[06:19:30] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[06:19:30] [PASSED] drm_test_check_mode_valid
[06:19:30] [PASSED] drm_test_check_mode_valid_reject
[06:19:30] [PASSED] drm_test_check_mode_valid_reject_rate
[06:19:30] [PASSED] drm_test_check_mode_valid_reject_max_clock
[06:19:30] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[06:19:30] ================= drm_managed (2 subtests) =================
[06:19:30] [PASSED] drm_test_managed_release_action
[06:19:30] [PASSED] drm_test_managed_run_action
[06:19:30] =================== [PASSED] drm_managed ===================
[06:19:30] =================== drm_mm (6 subtests) ====================
[06:19:30] [PASSED] drm_test_mm_init
[06:19:30] [PASSED] drm_test_mm_debug
[06:19:30] [PASSED] drm_test_mm_align32
[06:19:30] [PASSED] drm_test_mm_align64
[06:19:30] [PASSED] drm_test_mm_lowest
[06:19:30] [PASSED] drm_test_mm_highest
[06:19:30] ===================== [PASSED] drm_mm ======================
[06:19:30] ============= drm_modes_analog_tv (5 subtests) =============
[06:19:30] [PASSED] drm_test_modes_analog_tv_mono_576i
[06:19:30] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[06:19:30] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[06:19:30] [PASSED] drm_test_modes_analog_tv_pal_576i
[06:19:30] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[06:19:30] =============== [PASSED] drm_modes_analog_tv ===============
[06:19:30] ============== drm_plane_helper (2 subtests) ===============
[06:19:30] =============== drm_test_check_plane_state ================
[06:19:30] [PASSED] clipping_simple
[06:19:30] [PASSED] clipping_rotate_reflect
[06:19:30] [PASSED] positioning_simple
[06:19:30] [PASSED] upscaling
[06:19:30] [PASSED] downscaling
[06:19:30] [PASSED] rounding1
[06:19:30] [PASSED] rounding2
[06:19:30] [PASSED] rounding3
[06:19:30] [PASSED] rounding4
[06:19:30] =========== [PASSED] drm_test_check_plane_state ============
[06:19:30] =========== drm_test_check_invalid_plane_state ============
[06:19:30] [PASSED] positioning_invalid
[06:19:30] [PASSED] upscaling_invalid
[06:19:30] [PASSED] downscaling_invalid
[06:19:30] ======= [PASSED] drm_test_check_invalid_plane_state ========
[06:19:30] ================ [PASSED] drm_plane_helper =================
[06:19:30] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[06:19:30] ====== drm_test_connector_helper_tv_get_modes_check =======
[06:19:30] [PASSED] None
[06:19:30] [PASSED] PAL
[06:19:30] [PASSED] NTSC
[06:19:30] [PASSED] Both, NTSC Default
[06:19:30] [PASSED] Both, PAL Default
[06:19:30] [PASSED] Both, NTSC Default, with PAL on command-line
[06:19:30] [PASSED] Both, PAL Default, with NTSC on command-line
[06:19:30] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[06:19:30] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[06:19:30] ================== drm_rect (9 subtests) ===================
[06:19:30] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[06:19:30] [PASSED] drm_test_rect_clip_scaled_not_clipped
[06:19:30] [PASSED] drm_test_rect_clip_scaled_clipped
[06:19:30] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[06:19:30] ================= drm_test_rect_intersect =================
[06:19:30] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[06:19:30] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[06:19:30] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[06:19:30] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[06:19:30] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[06:19:30] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[06:19:30] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[06:19:30] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[06:19:30] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[06:19:30] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[06:19:30] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[06:19:30] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[06:19:30] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[06:19:30] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[06:19:30] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[06:19:30] ============= [PASSED] drm_test_rect_intersect =============
[06:19:30] ================ drm_test_rect_calc_hscale ================
[06:19:30] [PASSED] normal use
[06:19:30] [PASSED] out of max range
[06:19:30] [PASSED] out of min range
[06:19:30] [PASSED] zero dst
[06:19:30] [PASSED] negative src
[06:19:30] [PASSED] negative dst
[06:19:30] ============ [PASSED] drm_test_rect_calc_hscale ============
[06:19:30] ================ drm_test_rect_calc_vscale ================
[06:19:30] [PASSED] normal use
[06:19:30] [PASSED] out of max range
[06:19:30] [PASSED] out of min range
[06:19:30] [PASSED] zero dst
[06:19:30] [PASSED] negative src
[06:19:30] [PASSED] negative dst
[06:19:30] ============ [PASSED] drm_test_rect_calc_vscale ============
[06:19:30] ================== drm_test_rect_rotate ===================
[06:19:30] [PASSED] reflect-x
[06:19:30] [PASSED] reflect-y
[06:19:30] [PASSED] rotate-0
[06:19:30] [PASSED] rotate-90
[06:19:30] [PASSED] rotate-180
[06:19:30] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[06:19:30] ============== [PASSED] drm_test_rect_rotate ===============
[06:19:30] ================ drm_test_rect_rotate_inv =================
[06:19:30] [PASSED] reflect-x
[06:19:30] [PASSED] reflect-y
[06:19:30] [PASSED] rotate-0
[06:19:30] [PASSED] rotate-90
[06:19:30] [PASSED] rotate-180
[06:19:30] [PASSED] rotate-270
[06:19:30] ============ [PASSED] drm_test_rect_rotate_inv =============
[06:19:30] ==================== [PASSED] drm_rect =====================
[06:19:30] ============ drm_sysfb_modeset_test (1 subtest) ============
[06:19:30] ============ drm_test_sysfb_build_fourcc_list =============
[06:19:30] [PASSED] no native formats
[06:19:30] [PASSED] XRGB8888 as native format
[06:19:30] [PASSED] remove duplicates
[06:19:30] [PASSED] convert alpha formats
[06:19:30] [PASSED] random formats
[06:19:30] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[06:19:30] ============= [PASSED] drm_sysfb_modeset_test ==============
[06:19:30] ============================================================
[06:19:30] Testing complete. Ran 616 tests: passed: 616
[06:19:30] Elapsed time: 45.574s total, 2.500s configuring, 42.794s building, 0.224s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[06:19:30] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:19:33] 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
[06:19:46] Starting KUnit Kernel (1/1)...
[06:19:46] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:19:46] ================= ttm_device (5 subtests) ==================
[06:19:46] [PASSED] ttm_device_init_basic
[06:19:46] [PASSED] ttm_device_init_multiple
[06:19:46] [PASSED] ttm_device_fini_basic
[06:19:46] [PASSED] ttm_device_init_no_vma_man
[06:19:46] ================== ttm_device_init_pools ==================
[06:19:46] [PASSED] No DMA allocations, no DMA32 required
[06:19:46] [PASSED] DMA allocations, DMA32 required
[06:19:46] [PASSED] No DMA allocations, DMA32 required
[06:19:46] [PASSED] DMA allocations, no DMA32 required
[06:19:46] ============== [PASSED] ttm_device_init_pools ==============
[06:19:46] =================== [PASSED] ttm_device ====================
[06:19:46] ================== ttm_pool (8 subtests) ===================
[06:19:46] ================== ttm_pool_alloc_basic ===================
[06:19:46] [PASSED] One page
[06:19:46] [PASSED] More than one page
[06:19:46] [PASSED] Above the allocation limit
[06:19:46] [PASSED] One page, with coherent DMA mappings enabled
[06:19:46] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[06:19:46] ============== [PASSED] ttm_pool_alloc_basic ===============
[06:19:46] ============== ttm_pool_alloc_basic_dma_addr ==============
[06:19:46] [PASSED] One page
[06:19:46] [PASSED] More than one page
[06:19:46] [PASSED] Above the allocation limit
[06:19:46] [PASSED] One page, with coherent DMA mappings enabled
[06:19:46] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[06:19:46] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[06:19:46] [PASSED] ttm_pool_alloc_order_caching_match
[06:19:46] [PASSED] ttm_pool_alloc_caching_mismatch
[06:19:46] [PASSED] ttm_pool_alloc_order_mismatch
[06:19:46] [PASSED] ttm_pool_free_dma_alloc
[06:19:46] [PASSED] ttm_pool_free_no_dma_alloc
[06:19:46] [PASSED] ttm_pool_fini_basic
[06:19:46] ==================== [PASSED] ttm_pool =====================
[06:19:46] ================ ttm_resource (8 subtests) =================
[06:19:46] ================= ttm_resource_init_basic =================
[06:19:46] [PASSED] Init resource in TTM_PL_SYSTEM
[06:19:46] [PASSED] Init resource in TTM_PL_VRAM
[06:19:46] [PASSED] Init resource in a private placement
[06:19:46] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[06:19:46] ============= [PASSED] ttm_resource_init_basic =============
[06:19:46] [PASSED] ttm_resource_init_pinned
[06:19:46] [PASSED] ttm_resource_fini_basic
[06:19:46] [PASSED] ttm_resource_manager_init_basic
[06:19:46] [PASSED] ttm_resource_manager_usage_basic
[06:19:46] [PASSED] ttm_resource_manager_set_used_basic
[06:19:46] [PASSED] ttm_sys_man_alloc_basic
[06:19:46] [PASSED] ttm_sys_man_free_basic
[06:19:46] ================== [PASSED] ttm_resource ===================
[06:19:46] =================== ttm_tt (15 subtests) ===================
[06:19:46] ==================== ttm_tt_init_basic ====================
[06:19:46] [PASSED] Page-aligned size
[06:19:46] [PASSED] Extra pages requested
[06:19:46] ================ [PASSED] ttm_tt_init_basic ================
[06:19:46] [PASSED] ttm_tt_init_misaligned
[06:19:46] [PASSED] ttm_tt_fini_basic
[06:19:46] [PASSED] ttm_tt_fini_sg
[06:19:46] [PASSED] ttm_tt_fini_shmem
[06:19:46] [PASSED] ttm_tt_create_basic
[06:19:46] [PASSED] ttm_tt_create_invalid_bo_type
[06:19:46] [PASSED] ttm_tt_create_ttm_exists
[06:19:46] [PASSED] ttm_tt_create_failed
[06:19:46] [PASSED] ttm_tt_destroy_basic
[06:19:46] [PASSED] ttm_tt_populate_null_ttm
[06:19:46] [PASSED] ttm_tt_populate_populated_ttm
[06:19:46] [PASSED] ttm_tt_unpopulate_basic
[06:19:46] [PASSED] ttm_tt_unpopulate_empty_ttm
[06:19:46] [PASSED] ttm_tt_swapin_basic
[06:19:46] ===================== [PASSED] ttm_tt ======================
[06:19:46] =================== ttm_bo (14 subtests) ===================
[06:19:46] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[06:19:46] [PASSED] Cannot be interrupted and sleeps
[06:19:46] [PASSED] Cannot be interrupted, locks straight away
[06:19:46] [PASSED] Can be interrupted, sleeps
[06:19:46] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[06:19:46] [PASSED] ttm_bo_reserve_locked_no_sleep
[06:19:46] [PASSED] ttm_bo_reserve_no_wait_ticket
[06:19:46] [PASSED] ttm_bo_reserve_double_resv
[06:19:46] [PASSED] ttm_bo_reserve_interrupted
[06:19:46] [PASSED] ttm_bo_reserve_deadlock
[06:19:46] [PASSED] ttm_bo_unreserve_basic
[06:19:46] [PASSED] ttm_bo_unreserve_pinned
[06:19:46] [PASSED] ttm_bo_unreserve_bulk
[06:19:46] [PASSED] ttm_bo_put_basic
[06:19:46] [PASSED] ttm_bo_put_shared_resv
[06:19:46] [PASSED] ttm_bo_pin_basic
[06:19:46] [PASSED] ttm_bo_pin_unpin_resource
[06:19:46] [PASSED] ttm_bo_multiple_pin_one_unpin
[06:19:46] ===================== [PASSED] ttm_bo ======================
[06:19:46] ============== ttm_bo_validate (22 subtests) ===============
[06:19:46] ============== ttm_bo_init_reserved_sys_man ===============
[06:19:46] [PASSED] Buffer object for userspace
[06:19:46] [PASSED] Kernel buffer object
[06:19:46] [PASSED] Shared buffer object
[06:19:46] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[06:19:46] ============== ttm_bo_init_reserved_mock_man ==============
[06:19:46] [PASSED] Buffer object for userspace
[06:19:46] [PASSED] Kernel buffer object
[06:19:46] [PASSED] Shared buffer object
[06:19:46] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[06:19:46] [PASSED] ttm_bo_init_reserved_resv
[06:19:46] ================== ttm_bo_validate_basic ==================
[06:19:46] [PASSED] Buffer object for userspace
[06:19:46] [PASSED] Kernel buffer object
[06:19:46] [PASSED] Shared buffer object
[06:19:46] ============== [PASSED] ttm_bo_validate_basic ==============
[06:19:46] [PASSED] ttm_bo_validate_invalid_placement
[06:19:46] ============= ttm_bo_validate_same_placement ==============
[06:19:46] [PASSED] System manager
[06:19:46] [PASSED] VRAM manager
[06:19:46] ========= [PASSED] ttm_bo_validate_same_placement ==========
[06:19:46] [PASSED] ttm_bo_validate_failed_alloc
[06:19:46] [PASSED] ttm_bo_validate_pinned
[06:19:46] [PASSED] ttm_bo_validate_busy_placement
[06:19:46] ================ ttm_bo_validate_multihop =================
[06:19:46] [PASSED] Buffer object for userspace
[06:19:46] [PASSED] Kernel buffer object
[06:19:46] [PASSED] Shared buffer object
[06:19:46] ============ [PASSED] ttm_bo_validate_multihop =============
[06:19:46] ========== ttm_bo_validate_no_placement_signaled ==========
[06:19:46] [PASSED] Buffer object in system domain, no page vector
[06:19:46] [PASSED] Buffer object in system domain with an existing page vector
[06:19:46] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[06:19:46] ======== ttm_bo_validate_no_placement_not_signaled ========
[06:19:46] [PASSED] Buffer object for userspace
[06:19:46] [PASSED] Kernel buffer object
[06:19:46] [PASSED] Shared buffer object
[06:19:46] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[06:19:46] [PASSED] ttm_bo_validate_move_fence_signaled
[06:19:46] ========= ttm_bo_validate_move_fence_not_signaled =========
[06:19:46] [PASSED] Waits for GPU
[06:19:46] [PASSED] Tries to lock straight away
[06:19:46] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[06:19:46] [PASSED] ttm_bo_validate_swapout
[06:19:46] [PASSED] ttm_bo_validate_happy_evict
[06:19:46] [PASSED] ttm_bo_validate_all_pinned_evict
[06:19:46] [PASSED] ttm_bo_validate_allowed_only_evict
[06:19:46] [PASSED] ttm_bo_validate_deleted_evict
[06:19:46] [PASSED] ttm_bo_validate_busy_domain_evict
[06:19:46] [PASSED] ttm_bo_validate_evict_gutting
[06:19:46] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[06:19:46] ================= [PASSED] ttm_bo_validate =================
[06:19:46] ============================================================
[06:19:46] Testing complete. Ran 102 tests: passed: 102
[06:19:46] Elapsed time: 16.182s total, 2.497s configuring, 12.761s building, 0.722s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.Full: failure for drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev3)
2025-06-23 15:53 [PATCH v2 0/3] drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks Thomas Hellström
` (7 preceding siblings ...)
2025-06-24 6:19 ` ✓ CI.KUnit: success " Patchwork
@ 2025-06-24 9:17 ` Patchwork
2025-06-24 9:54 ` Thomas Hellström
8 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2025-06-24 9:17 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 97300 bytes --]
== Series Details ==
Series: drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev3)
URL : https://patchwork.freedesktop.org/series/150242/
State : failure
== Summary ==
CI Bug Log - changes from xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738_FULL -> xe-pw-150242v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-150242v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-150242v3_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-150242v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_big_fb@x-tiled-32bpp-rotate-0:
- shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-435/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
New tests
---------
New tests have been introduced between xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738_FULL and xe-pw-150242v3_FULL:
### New IGT tests (1) ###
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [1.88] s
Known issues
------------
Here are the changes found in xe-pw-150242v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-adlp: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#4543]) +2 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_async_flips@async-flip-suspend-resume.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#3767]) +15 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#3768])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-434/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-0:
- shard-adlp: [PASS][9] -> [SKIP][10] ([Intel XE#4947]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#316])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#607])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#2191])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#367]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#787]) +20 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +146 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +6 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#3432])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#3432])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/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:
- shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#2907])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2907]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][32] -> [INCOMPLETE][33] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) +1 other test incomplete
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][34] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2652] / [Intel XE#787]) +11 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#4416]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#306])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#373]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-1/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
- shard-adlp: NOTRUN -> [SKIP][41] ([Intel XE#373])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#1178]) +2 other tests fail
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#307])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#307])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455]) +5 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-434/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2320])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2321])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2321]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2291]) +6 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#309]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#323])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2286])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1508])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#3009])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-8/igt@kms_dp_aux_dev.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-adlp: NOTRUN -> [SKIP][58] ([Intel XE#4354])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#4354])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-5/igt@kms_dp_link_training@uhbr-mst.html
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#4354])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-6/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2244])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2244])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-adlp: [PASS][63] -> [DMESG-WARN][64] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@kms_fbcon_fbt@fbc-suspend.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#703])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-5/igt@kms_feature_discovery@display-3x.html
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2373])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1421]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][68] -> [FAIL][69] ([Intel XE#301])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2316])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#310]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#2316]) +6 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check@ac-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][74] ([Intel XE#2882]) +1 other test fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@kms_flip@2x-wf_vblank-ts-check@ac-dp2-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1397] / [Intel XE#1745])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1397])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
- shard-lnl: NOTRUN -> [FAIL][77] ([Intel XE#4683]) +1 other test fail
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401] / [Intel XE#1745])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1401])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-adlp: [PASS][80] -> [DMESG-FAIL][81] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#455]) +7 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#651]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2311]) +8 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#651]) +12 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#4141]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [DMESG-FAIL][87] ([Intel XE#4543]) +1 other test dmesg-fail
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#656]) +13 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-adlp: [PASS][89] -> [DMESG-FAIL][90] ([Intel XE#4543]) +9 other tests dmesg-fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#651]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2312]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][93] ([Intel XE#653]) +5 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2313]) +5 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#653]) +11 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][96] ([Intel XE#656]) +8 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1503]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#1503])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#4298])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [PASS][100] -> [SKIP][101] ([Intel XE#3012]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2501])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#356])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [PASS][104] -> [FAIL][105] ([Intel XE#616]) +1 other test fail
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-436/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#4596]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#4596]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#5020])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
- shard-adlp: [PASS][109] -> [SKIP][110] ([Intel XE#4950]) +9 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +35 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +29 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#870])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][114] -> [FAIL][115] ([Intel XE#718])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#1439] / [Intel XE#836])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2893])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#4608]) +4 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1489]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#1489])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#1489]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-adlp: NOTRUN -> [SKIP][123] ([Intel XE#1122])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1406]) +4 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-3/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@fbc-psr2-suspend@edp-1:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#4609]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-8/igt@kms_psr@fbc-psr2-suspend@edp-1.html
* igt@kms_psr@psr2-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_psr@psr2-basic.html
* igt@kms_psr@psr2-primary-page-flip:
- shard-adlp: NOTRUN -> [SKIP][128] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@kms_psr@psr2-primary-page-flip.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-adlp: NOTRUN -> [SKIP][129] ([Intel XE#2939])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#3414] / [Intel XE#3904])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-adlp: NOTRUN -> [SKIP][131] ([Intel XE#3414])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][132] -> [FAIL][133] ([Intel XE#4459]) +1 other test fail
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_eu_stall@invalid-sampling-rate:
- shard-adlp: NOTRUN -> [SKIP][135] ([Intel XE#5308])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@xe_eu_stall@invalid-sampling-rate.html
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#5308])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@xe_eu_stall@invalid-sampling-rate.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#4837]) +4 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-4/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug@multiple-sessions:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#4837]) +4 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@xe_eudebug@multiple-sessions.html
* igt@xe_eudebug@read-metadata:
- shard-adlp: NOTRUN -> [SKIP][139] ([Intel XE#4837]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@xe_eudebug@read-metadata.html
* igt@xe_eudebug_online@stopped-thread:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#4837]) +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_evict@evict-beng-large-cm:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#688])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-1/igt@xe_evict@evict-beng-large-cm.html
* igt@xe_evict_ccs@evict-overcommit-simple:
- shard-adlp: NOTRUN -> [SKIP][142] ([Intel XE#688])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@xe_evict_ccs@evict-overcommit-simple.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-adlp: NOTRUN -> [SKIP][143] ([Intel XE#1392]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2322]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1392]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue:
- shard-dg2-set2: [PASS][146] -> [SKIP][147] ([Intel XE#1392]) +6 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-434/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
* igt@xe_exec_fault_mode@many-execqueues-invalid-fault:
- shard-adlp: NOTRUN -> [SKIP][148] ([Intel XE#288]) +7 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_exec_fault_mode@many-execqueues-invalid-fault.html
* igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#288]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-436/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html
* igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-dontunmap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#4915]) +81 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-fork-read-after:
- shard-adlp: NOTRUN -> [SKIP][151] ([Intel XE#4915]) +71 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-fork-read-after.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#4943]) +8 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#4943]) +11 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-huge-nomemset.html
* igt@xe_exec_threads@threads-bal-rebind:
- shard-adlp: [PASS][154] -> [SKIP][155] ([Intel XE#4945]) +9 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_exec_threads@threads-bal-rebind.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_exec_threads@threads-bal-rebind.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-adlp: [PASS][156] -> [FAIL][157] ([Intel XE#3099]) +1 other test fail
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_live_ktest@xe_dma_buf.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-adlp: NOTRUN -> [SKIP][158] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-436/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#2541] / [Intel XE#3573])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1420] / [Intel XE#2838])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#4650])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#4733]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#944])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-5/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#4130]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@xe_sriov_auto_provisioning@fair-allocation.html
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#4130])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@xe_sriov_auto_provisioning@fair-allocation.html
- shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#4130])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#3342])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-3/igt@xe_sriov_flr@flr-each-isolation.html
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#3342])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
#### Possible fixes ####
* igt@kms_addfb_basic@unused-offsets:
- shard-dg2-set2: [SKIP][170] ([i915#6077]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_addfb_basic@unused-offsets.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_addfb_basic@unused-offsets.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-adlp: [FAIL][172] ([Intel XE#3908]) -> [PASS][173] +1 other test pass
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-adlp: [DMESG-FAIL][174] ([Intel XE#4543]) -> [PASS][175] +11 other tests pass
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][176] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][177] +1 other test pass
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][178] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][179] +1 other test pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][180] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [SKIP][182] -> [PASS][183] +13 other tests pass
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-64x64.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][184] ([Intel XE#2291]) -> [PASS][185] +4 other tests pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][186] ([Intel XE#4294]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [SKIP][188] ([Intel XE#2316]) -> [PASS][189] +8 other tests pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][190] ([Intel XE#301]) -> [PASS][191] +8 other tests pass
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: [FAIL][192] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][193] +3 other tests pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-adlp: [DMESG-WARN][194] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][195] +2 other tests pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-dg2-set2: [SKIP][196] ([Intel XE#783]) -> [PASS][197] +2 other tests pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [SKIP][198] ([Intel XE#1503]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane_lowres@tiling-x:
- shard-dg2-set2: [SKIP][200] ([Intel XE#829]) -> [PASS][201] +3 other tests pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_plane_lowres@tiling-x.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_plane_lowres@tiling-x.html
* igt@kms_pm_dc@dc6-dpms:
- shard-adlp: [FAIL][202] ([Intel XE#718]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@kms_pm_dc@dc6-dpms.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][204] ([Intel XE#1435]) -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_universal_plane@universal-plane-functional:
- shard-bmg: [DMESG-WARN][206] ([Intel XE#5213]) -> [PASS][207] +1 other test pass
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-7/igt@kms_universal_plane@universal-plane-functional.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_universal_plane@universal-plane-functional.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
- shard-dg2-set2: [SKIP][208] ([Intel XE#1392]) -> [PASS][209] +5 other tests pass
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
* igt@xe_exec_system_allocator@threads-many-new-nomemset:
- shard-bmg: [FAIL][210] ([Intel XE#5058]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-new-nomemset.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-new-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
- shard-lnl: [FAIL][212] ([Intel XE#4937]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: [FAIL][214] ([Intel XE#4208]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@xe_module_load@reload-no-display.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s2idle-basic-exec:
- shard-adlp: [ABORT][216] ([Intel XE#4847]) -> [PASS][217]
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_pm@s2idle-basic-exec.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-bmg: [ABORT][218] -> [PASS][219]
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@xe_pm@s4-vm-bind-prefetch.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@xe_pm@s4-vm-bind-prefetch.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-adlp: [SKIP][220] ([Intel XE#1124]) -> [SKIP][221] ([Intel XE#4947]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-adlp: [SKIP][222] ([Intel XE#316]) -> [SKIP][223] ([Intel XE#4947])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@kms_big_fb@linear-16bpp-rotate-270.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][224] ([Intel XE#829]) -> [SKIP][225] ([Intel XE#316])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-90.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: [DMESG-FAIL][226] ([Intel XE#4543]) -> [DMESG-WARN][227] ([Intel XE#2953] / [Intel XE#4173])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-adlp: [DMESG-FAIL][228] ([Intel XE#4543]) -> [SKIP][229] ([Intel XE#4947])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg2-set2: [SKIP][230] ([Intel XE#829]) -> [SKIP][231] ([Intel XE#1124])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-adlp: [SKIP][232] ([Intel XE#367]) -> [SKIP][233] ([Intel XE#4950])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][234] -> [SKIP][235] ([Intel XE#367])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
- shard-adlp: [SKIP][236] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][237] ([Intel XE#4947])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][238] ([Intel XE#829]) -> [SKIP][239] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][240] ([Intel XE#829]) -> [SKIP][241] ([Intel XE#2907])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][242] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [INCOMPLETE][243] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-adlp: [SKIP][244] ([Intel XE#306]) -> [SKIP][245] ([Intel XE#4950])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_chamelium_color@ctm-0-25.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-dg2-set2: [SKIP][246] -> [SKIP][247] ([Intel XE#373]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][248] ([Intel XE#1178]) -> [SKIP][249] ([Intel XE#2341])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-8/igt@kms_content_protection@atomic.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][250] ([Intel XE#1188]) -> [SKIP][251] ([Intel XE#2341])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-8/igt@kms_content_protection@uevent.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-adlp: [SKIP][252] ([Intel XE#309]) -> [SKIP][253] ([Intel XE#4950]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_fbcon_fbt@psr:
- shard-adlp: [SKIP][254] ([Intel XE#776]) -> [SKIP][255] ([Intel XE#4947])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@kms_fbcon_fbt@psr.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-adlp: [SKIP][256] ([Intel XE#310]) -> [SKIP][257] ([Intel XE#4950])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [SKIP][258] ([Intel XE#2316]) -> [FAIL][259] ([Intel XE#2882])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][260] -> [SKIP][261] ([Intel XE#455]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-adlp: [SKIP][262] ([Intel XE#651]) -> [SKIP][263] ([Intel XE#4947]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][264] ([Intel XE#783]) -> [SKIP][265] ([Intel XE#651]) +4 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][266] ([Intel XE#2312]) -> [SKIP][267] ([Intel XE#2311]) +23 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-adlp: [SKIP][268] ([Intel XE#656]) -> [SKIP][269] ([Intel XE#2351] / [Intel XE#4947])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][270] ([Intel XE#2311]) -> [SKIP][271] ([Intel XE#2312]) +21 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][272] ([Intel XE#2312]) -> [SKIP][273] ([Intel XE#4141]) +9 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-adlp: [SKIP][274] ([Intel XE#656]) -> [SKIP][275] ([Intel XE#4947]) +3 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][276] ([Intel XE#4141]) -> [SKIP][277] ([Intel XE#2312]) +13 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-adlp: [SKIP][278] ([Intel XE#651]) -> [SKIP][279] ([Intel XE#2351] / [Intel XE#4947])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][280] ([Intel XE#2313]) -> [SKIP][281] ([Intel XE#2312]) +17 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-adlp: [SKIP][282] ([Intel XE#653]) -> [SKIP][283] ([Intel XE#4947]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][284] ([Intel XE#783]) -> [SKIP][285] ([Intel XE#653]) +4 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][286] ([Intel XE#2312]) -> [SKIP][287] ([Intel XE#2313]) +21 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: [SKIP][288] -> [SKIP][289] ([Intel XE#2925])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][290] ([Intel XE#4596]) -> [SKIP][291] ([Intel XE#5021])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: [FAIL][292] ([Intel XE#3325]) -> [SKIP][293] ([Intel XE#734])
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_pm_dc@dc9-dpms.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-adlp: [SKIP][294] ([Intel XE#5319]) -> [SKIP][295] ([Intel XE#4962])
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@kms_pm_rpm@drm-resources-equal.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-dg2-set2: [SKIP][296] -> [SKIP][297] ([Intel XE#1489])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-adlp: [SKIP][298] ([Intel XE#1489]) -> [SKIP][299] ([Intel XE#4947])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: [SKIP][300] -> [SKIP][301] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_psr@pr-sprite-blt.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][302] ([Intel XE#362]) -> [SKIP][303] ([Intel XE#1500])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic:
- shard-adlp: [SKIP][304] ([Intel XE#455]) -> [SKIP][305] ([Intel XE#4950]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_vrr@flip-basic.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_vrr@flip-basic.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-adlp: [SKIP][306] ([Intel XE#1126]) -> [SKIP][307] ([Intel XE#4945])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug_online@interrupt-reconnect:
- shard-adlp: [SKIP][308] ([Intel XE#4837]) -> [SKIP][309] ([Intel XE#4945])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_eudebug_online@interrupt-reconnect.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_eudebug_online@interrupt-reconnect.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
- shard-adlp: [SKIP][310] ([Intel XE#1392]) -> [SKIP][311] ([Intel XE#4945])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm:
- shard-adlp: [SKIP][312] ([Intel XE#288]) -> [SKIP][313] ([Intel XE#4945]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html
* igt@xe_exec_reset@cm-cat-error:
- shard-adlp: [DMESG-FAIL][314] ([Intel XE#3868]) -> [SKIP][315] ([Intel XE#4945])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_exec_reset@cm-cat-error.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_exec_reset@cm-cat-error.html
* igt@xe_exec_system_allocator@many-large-mmap-remap-dontunmap-eocheck:
- shard-adlp: [SKIP][316] ([Intel XE#4915]) -> [SKIP][317] ([Intel XE#4945]) +34 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_exec_system_allocator@many-large-mmap-remap-dontunmap-eocheck.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_exec_system_allocator@many-large-mmap-remap-dontunmap-eocheck.html
* igt@xe_module_load@load:
- shard-adlp: ([PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [DMESG-WARN][338], [PASS][339], [PASS][340], [SKIP][341], [PASS][342], [PASS][343]) ([Intel XE#2953] / [Intel XE#378] / [Intel XE#4173]) -> ([SKIP][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369]) ([Intel XE#378])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@xe_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@xe_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@xe_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@xe_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@xe_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@xe_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@xe_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@xe_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@xe_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@xe_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_module_load@load.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_module_load@load.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_module_load@load.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@xe_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@xe_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@xe_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@xe_module_load@load.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@xe_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@xe_module_load@load.html
* igt@xe_oa@invalid-create-userspace-config:
- shard-adlp: [SKIP][370] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][371] ([Intel XE#4945])
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_oa@invalid-create-userspace-config.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_oa@invalid-create-userspace-config.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3325
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4847]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4847
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#4945]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945
[Intel XE#4947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947
[Intel XE#4950]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4950
[Intel XE#4962]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4962
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5058]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5058
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5308
[Intel XE#5319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5319
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* IGT: IGT_8422 -> IGT_8423
* Linux: xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738 -> xe-pw-150242v3
IGT_8422: 9b9c9136b17a2ed0680fb9589d51446c03698b37 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8423: 8423
xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738: c86140bb02edc8e529f095ebf15e8d466fa15738
xe-pw-150242v3: 150242v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/index.html
[-- Attachment #2: Type: text/html, Size: 116107 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: ✗ Xe.CI.Full: failure for drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks (rev3)
2025-06-24 9:17 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-06-24 9:54 ` Thomas Hellström
0 siblings, 0 replies; 13+ messages in thread
From: Thomas Hellström @ 2025-06-24 9:54 UTC (permalink / raw)
To: intel-xe
On Tue, 2025-06-24 at 09:17 +0000, Patchwork wrote:
> == Series Details ==
>
> Series: drm/ttm, drm/xe: Consolidate the Buffer Object LRU walks
> (rev3)
> URL : https://patchwork.freedesktop.org/series/150242/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from xe-3295-
> c86140bb02edc8e529f095ebf15e8d466fa15738_FULL -> xe-pw-150242v3_FULL
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with xe-pw-150242v3_FULL absolutely
> need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the
> changes
> introduced in xe-pw-150242v3_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 (4 -> 4)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in xe-
> pw-150242v3_FULL:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@kms_big_fb@x-tiled-32bpp-rotate-0:
> - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2]
> [1]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-435/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
> [2]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
This failure is not related.
/Thomas
>
>
> New tests
> ---------
>
> New tests have been introduced between xe-3295-
> c86140bb02edc8e529f095ebf15e8d466fa15738_FULL and xe-pw-
> 150242v3_FULL:
>
> ### New IGT tests (1) ###
>
> * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2:
> - Statuses : 1 pass(s)
> - Exec time: [1.88] s
>
>
>
> Known issues
> ------------
>
> Here are the changes found in xe-pw-150242v3_FULL that come from
> known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@kms_async_flips@async-flip-suspend-resume:
> - shard-adlp: [PASS][3] -> [DMESG-WARN][4] ([Intel
> XE#4543]) +2 other tests dmesg-warn
> [3]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_async_flips@async-flip-suspend-resume.html
> [4]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@kms_async_flips@async-flip-suspend-resume.html
>
> *
> igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pip
> e-a-hdmi-a-6-4-rc-ccs-cc:
> - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#3767]) +15
> other tests skip
> [5]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc.html
>
> * igt@kms_async_flips@invalid-async-flip-atomic:
> - shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#3768])
> [6]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-434/igt@kms_async_flips@invalid-async-flip-atomic.html
>
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
> - shard-adlp: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +3
> other tests skip
> [7]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>
> * igt@kms_big_fb@linear-64bpp-rotate-270:
> - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327])
> [8]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_big_fb@linear-64bpp-rotate-270.html
>
> * igt@kms_big_fb@x-tiled-8bpp-rotate-0:
> - shard-adlp: [PASS][9] -> [SKIP][10] ([Intel XE#4947])
> +2 other tests skip
> [9]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
> [10]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
>
> * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
> - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316]) +1
> other test skip
> [11]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
>
> * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
> - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407])
> [12]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
>
> * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
> - shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#316])
> [13]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
> - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +1
> other test skip
> [14]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
>
> * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
> - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#607])
> [15]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
>
> *
> igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
> - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +3
> other tests skip
> [16]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
> - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +2
> other tests skip
> [17]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
>
> * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
> - shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#2191])
> [18]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
>
> * igt@kms_bw@linear-tiling-2-displays-1920x1080p:
> - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#367]) +1
> other test skip
> [19]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
>
> * igt@kms_bw@linear-tiling-3-displays-1920x1080p:
> - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367])
> [20]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
>
> * igt@kms_bw@linear-tiling-4-displays-3840x2160p:
> - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367])
> [21]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
>
> * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
> - shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#455] /
> [Intel XE#787]) +13 other tests skip
> [22]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
>
> * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-
> 1:
> - shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#787]) +20
> other tests skip
> [23]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
>
> * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-
> 6:
> - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +146
> other tests skip
> [24]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
>
> * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs:
> - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +6
> other tests skip
> [25]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs.html
>
> * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
> - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +4
> other tests skip
> [26]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
>
> * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
> - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#3432])
> [27]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
>
> * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
> - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#3432])
> [28]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/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:
> - shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#2907])
> [29]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
> - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2907]) +1
> other test skip
> [30]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
>
> * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
> - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#455] /
> [Intel XE#787]) +23 other tests skip
> [31]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
> - shard-dg2-set2: [PASS][32] -> [INCOMPLETE][33] ([Intel
> XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) +1
> other test incomplete
> [32]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
> [33]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
> - shard-dg2-set2: NOTRUN -> [INCOMPLETE][34] ([Intel XE#1727]
> / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel
> XE#4522])
> [34]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
> - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2652] /
> [Intel XE#787]) +11 other tests skip
> [35]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
>
> * igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
> - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#4416]) +3
> other tests skip
> [36]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
>
> * igt@kms_chamelium_color@ctm-negative:
> - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#306])
> [37]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_chamelium_color@ctm-negative.html
>
> * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
> - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#373]) +3
> other tests skip
> [38]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-1/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
>
> * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
> - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252]) +2
> other tests skip
> [39]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
>
> * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
> - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +2
> other tests skip
> [40]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
> - shard-adlp: NOTRUN -> [SKIP][41] ([Intel XE#373])
> [41]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
>
> * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
> - shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#1178]) +2
> other tests fail
> [42]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
>
> * igt@kms_content_protection@dp-mst-type-0:
> - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#307])
> [43]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html
>
> * igt@kms_content_protection@dp-mst-type-1:
> - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#307])
> [44]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-7/igt@kms_content_protection@dp-mst-type-1.html
>
> * igt@kms_content_protection@lic-type-1:
> - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455]) +5
> other tests skip
> [45]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-434/igt@kms_content_protection@lic-type-1.html
>
> * igt@kms_cursor_crc@cursor-rapid-movement-128x42:
> - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424])
> [46]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
> - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2320])
> [47]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
>
> * igt@kms_cursor_crc@cursor-sliding-512x170:
> - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2321])
> [48]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
>
> * igt@kms_cursor_crc@cursor-sliding-512x512:
> - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2321]) +1
> other test skip
> [49]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
>
> *
> igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size
> :
> - shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2291])
> +6 other tests skip
> [50]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
> [51]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
>
> * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
> - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#309]) +1
> other test skip
> [52]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
>
> *
> igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size
> :
> - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#323])
> [53]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
> - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2286])
> [54]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
>
> * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
> - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1508])
> [55]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
>
> * igt@kms_dp_aux_dev:
> - shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#3009])
> [56]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-8/igt@kms_dp_aux_dev.html
> [57]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_dp_aux_dev.html
>
> * igt@kms_dp_link_training@non-uhbr-mst:
> - shard-adlp: NOTRUN -> [SKIP][58] ([Intel XE#4354])
> [58]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@kms_dp_link_training@non-uhbr-mst.html
>
> * igt@kms_dp_link_training@uhbr-mst:
> - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#4354])
> [59]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-5/igt@kms_dp_link_training@uhbr-mst.html
> - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#4354])
> [60]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-6/igt@kms_dp_link_training@uhbr-mst.html
>
> * igt@kms_dsc@dsc-fractional-bpp:
> - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2244])
> [61]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_dsc@dsc-fractional-bpp.html
>
> * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
> - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2244])
> [62]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
>
> * igt@kms_fbcon_fbt@fbc-suspend:
> - shard-adlp: [PASS][63] -> [DMESG-WARN][64] ([Intel
> XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
> [63]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@kms_fbcon_fbt@fbc-suspend.html
> [64]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@kms_fbcon_fbt@fbc-suspend.html
>
> * igt@kms_feature_discovery@display-3x:
> - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#703])
> [65]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-5/igt@kms_feature_discovery@display-3x.html
> - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2373])
> [66]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@kms_feature_discovery@display-3x.html
>
> * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
> - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1421]) +2
> other tests skip
> [67]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
>
> * igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4:
> - shard-dg2-set2: [PASS][68] -> [FAIL][69] ([Intel XE#301])
> [68]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
> [69]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
>
> * igt@kms_flip@2x-flip-vs-panning-vs-hang:
> - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2316])
> [70]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
> - shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#310]) +2
> other tests skip
> [71]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
>
> * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
> - shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#2316])
> +6 other tests skip
> [72]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
> [73]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
>
> * igt@kms_flip@2x-wf_vblank-ts-check@ac-dp2-hdmi-a3:
> - shard-bmg: NOTRUN -> [FAIL][74] ([Intel XE#2882]) +1
> other test fail
> [74]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@kms_flip@2x-wf_vblank-ts-check@ac-dp2-hdmi-a3.html
>
> *
> igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling
> :
> - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1397] /
> [Intel XE#1745])
> [75]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
>
> *
> igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling
> @pipe-a-default-mode:
> - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1397])
> [76]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
>
> *
> igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
> - shard-lnl: NOTRUN -> [FAIL][77] ([Intel XE#4683]) +1
> other test fail
> [77]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
>
> *
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling
> :
> - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401] /
> [Intel XE#1745])
> [78]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
>
> *
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling
> @pipe-a-default-mode:
> - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1401])
> [79]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
>
> *
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
> - shard-adlp: [PASS][80] -> [DMESG-FAIL][81] ([Intel
> XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
> [80]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
> [81]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
>
> *
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling
> @pipe-a-valid-mode:
> - shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#455]) +7
> other tests skip
> [82]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
>
> * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
> - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#651]) +5
> other tests skip
> [83]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
>
> * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
> - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2311]) +8
> other tests skip
> [84]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@drrs-suspend:
> - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#651]) +12
> other tests skip
> [85]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-suspend.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
> - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#4141]) +3
> other tests skip
> [86]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
> - shard-adlp: NOTRUN -> [DMESG-FAIL][87] ([Intel
> XE#4543]) +1 other test dmesg-fail
> [87]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
>
> *
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
> - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#656]) +13
> other tests skip
> [88]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
> - shard-adlp: [PASS][89] -> [DMESG-FAIL][90] ([Intel
> XE#4543]) +9 other tests dmesg-fail
> [89]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
> [90]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
>
> *
> igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc
> :
> - shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#651]) +4
> other tests skip
> [91]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
>
> *
> igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc
> :
> - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2312]) +4
> other tests skip
> [92]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
>
> *
> igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc
> :
> - shard-adlp: NOTRUN -> [SKIP][93] ([Intel XE#653]) +5
> other tests skip
> [93]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
> - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2313]) +5
> other tests skip
> [94]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy:
> - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#653]) +11
> other tests skip
> [95]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
> - shard-adlp: NOTRUN -> [SKIP][96] ([Intel XE#656]) +8
> other tests skip
> [96]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
>
> * igt@kms_hdr@invalid-metadata-sizes:
> - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1503]) +2
> other tests skip
> [97]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-8/igt@kms_hdr@invalid-metadata-sizes.html
>
> * igt@kms_hdr@static-toggle-suspend:
> - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#1503])
> [98]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
>
> * igt@kms_joiner@basic-max-non-joiner:
> - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#4298])
> [99]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@kms_joiner@basic-max-non-joiner.html
>
> * igt@kms_joiner@invalid-modeset-force-big-joiner:
> - shard-bmg: [PASS][100] -> [SKIP][101] ([Intel
> XE#3012]) +1 other test skip
> [100]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
> [101]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
>
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2501])
> [102]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#356])
> [103]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>
> * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
> - shard-dg2-set2: [PASS][104] -> [FAIL][105] ([Intel XE#616])
> +1 other test fail
> [104]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
> [105]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-436/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
>
> * igt@kms_plane_multiple@2x-tiling-yf:
> - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#4596]) +1
> other test skip
> [106]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
> - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#4596]) +1
> other test skip
> [107]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-yf.html
>
> * igt@kms_plane_multiple@tiling-y:
> - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#5020])
> [108]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_plane_multiple@tiling-y.html
>
> * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
> - shard-adlp: [PASS][109] -> [SKIP][110] ([Intel
> XE#4950]) +9 other tests skip
> [109]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
> [110]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
>
> *
> igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25
> :
> - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +35
> other tests skip
> [111]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
>
> *
> igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5
> :
> - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +29
> other tests skip
> [112]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
>
> * igt@kms_pm_backlight@fade:
> - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#870])
> [113]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_pm_backlight@fade.html
>
> * igt@kms_pm_dc@dc5-psr:
> - shard-lnl: [PASS][114] -> [FAIL][115] ([Intel XE#718])
> [114]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
> [115]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
>
> * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
> - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#1439] /
> [Intel XE#836])
> [116]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
>
> *
> igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
> - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2893])
> [117]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
>
> *
> igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-
> b-edp-1:
> - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#4608]) +4
> other tests skip
> [118]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
>
> * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
> - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2893] /
> [Intel XE#4608]) +1 other test skip
> [119]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
>
> * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
> - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1489]) +2
> other tests skip
> [120]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
>
> * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
> - shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#1489])
> [121]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
>
> * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
> - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#1489]) +1
> other test skip
> [122]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
>
> * igt@kms_psr2_su@page_flip-nv12:
> - shard-adlp: NOTRUN -> [SKIP][123] ([Intel XE#1122])
> [123]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@kms_psr2_su@page_flip-nv12.html
>
> * igt@kms_psr@fbc-pr-cursor-plane-move:
> - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1406]) +4
> other tests skip
> [124]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-3/igt@kms_psr@fbc-pr-cursor-plane-move.html
>
> * igt@kms_psr@fbc-psr2-sprite-render:
> - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2234] /
> [Intel XE#2850]) +4 other tests skip
> [125]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_psr@fbc-psr2-sprite-render.html
>
> * igt@kms_psr@fbc-psr2-suspend@edp-1:
> - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#4609]) +1
> other test skip
> [126]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-8/igt@kms_psr@fbc-psr2-suspend@edp-1.html
>
> * igt@kms_psr@psr2-basic:
> - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2850] /
> [Intel XE#929]) +3 other tests skip
> [127]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_psr@psr2-basic.html
>
> * igt@kms_psr@psr2-primary-page-flip:
> - shard-adlp: NOTRUN -> [SKIP][128] ([Intel XE#2850] /
> [Intel XE#929]) +3 other tests skip
> [128]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@kms_psr@psr2-primary-page-flip.html
>
> * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
> - shard-adlp: NOTRUN -> [SKIP][129] ([Intel XE#2939])
> [129]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
>
> * igt@kms_rotation_crc@primary-rotation-270:
> - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#3414] /
> [Intel XE#3904])
> [130]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-270.html
>
> * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
> - shard-adlp: NOTRUN -> [SKIP][131] ([Intel XE#3414])
> [131]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
>
> * igt@kms_vrr@cmrr@pipe-a-edp-1:
> - shard-lnl: [PASS][132] -> [FAIL][133] ([Intel
> XE#4459]) +1 other test fail
> [132]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
> [133]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
>
> * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-
> drm_xe_engine_class_compute:
> - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1280] /
> [Intel XE#455]) +1 other test skip
> [134]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
>
> * igt@xe_eu_stall@invalid-sampling-rate:
> - shard-adlp: NOTRUN -> [SKIP][135] ([Intel XE#5308])
> [135]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@xe_eu_stall@invalid-sampling-rate.html
> - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#5308])
> [136]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@xe_eu_stall@invalid-sampling-rate.html
>
> * igt@xe_eudebug@discovery-empty-clients:
> - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#4837]) +4
> other tests skip
> [137]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-4/igt@xe_eudebug@discovery-empty-clients.html
>
> * igt@xe_eudebug@multiple-sessions:
> - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#4837]) +4
> other tests skip
> [138]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@xe_eudebug@multiple-sessions.html
>
> * igt@xe_eudebug@read-metadata:
> - shard-adlp: NOTRUN -> [SKIP][139] ([Intel XE#4837]) +1
> other test skip
> [139]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@xe_eudebug@read-metadata.html
>
> * igt@xe_eudebug_online@stopped-thread:
> - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#4837]) +4
> other tests skip
> [140]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@xe_eudebug_online@stopped-thread.html
>
> * igt@xe_evict@evict-beng-large-cm:
> - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#688])
> [141]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-1/igt@xe_evict@evict-beng-large-cm.html
>
> * igt@xe_evict_ccs@evict-overcommit-simple:
> - shard-adlp: NOTRUN -> [SKIP][142] ([Intel XE#688])
> [142]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@xe_evict_ccs@evict-overcommit-simple.html
>
> *
> igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalida
> te:
> - shard-adlp: NOTRUN -> [SKIP][143] ([Intel XE#1392]) +2
> other tests skip
> [143]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
>
> *
> igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
> - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2322]) +4
> other tests skip
> [144]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
>
> * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
> - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1392]) +4
> other tests skip
> [145]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
>
> * igt@xe_exec_basic@multigpu-once-bindexecqueue:
> - shard-dg2-set2: [PASS][146] -> [SKIP][147] ([Intel
> XE#1392]) +6 other tests skip
> [146]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-434/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
> [147]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
>
> * igt@xe_exec_fault_mode@many-execqueues-invalid-fault:
> - shard-adlp: NOTRUN -> [SKIP][148] ([Intel XE#288]) +7
> other tests skip
> [148]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_exec_fault_mode@many-execqueues-invalid-fault.html
>
> * igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch:
> - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#288]) +4
> other tests skip
> [149]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-436/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html
>
> *
> igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-dontunmap-eocheck
> :
> - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#4915]) +81
> other tests skip
> [150]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-dontunmap-eocheck.html
>
> *
> igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-fork-read-after
> :
> - shard-adlp: NOTRUN -> [SKIP][151] ([Intel XE#4915]) +71
> other tests skip
> [151]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-fork-read-after.html
>
> *
> igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge
> :
> - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#4943]) +8
> other tests skip
> [152]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge.html
>
> *
> igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-huge-nomemset
> :
> - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#4943]) +11
> other tests skip
> [153]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-huge-nomemset.html
>
> * igt@xe_exec_threads@threads-bal-rebind:
> - shard-adlp: [PASS][154] -> [SKIP][155] ([Intel
> XE#4945]) +9 other tests skip
> [154]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_exec_threads@threads-bal-rebind.html
> [155]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_exec_threads@threads-bal-rebind.html
>
> * igt@xe_live_ktest@xe_dma_buf:
> - shard-adlp: [PASS][156] -> [FAIL][157] ([Intel
> XE#3099]) +1 other test fail
> [156]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_live_ktest@xe_dma_buf.html
> [157]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_live_ktest@xe_dma_buf.html
>
> * igt@xe_oa@privileged-forked-access-vaddr:
> - shard-adlp: NOTRUN -> [SKIP][158] ([Intel XE#2541] /
> [Intel XE#3573]) +2 other tests skip
> [158]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@xe_oa@privileged-forked-access-vaddr.html
>
> * igt@xe_oa@syncs-userptr-wait-cfg:
> - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2541] /
> [Intel XE#3573] / [Intel XE#4501])
> [159]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-436/igt@xe_oa@syncs-userptr-wait-cfg.html
>
> * igt@xe_oa@unprivileged-single-ctx-counters:
> - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#2541] /
> [Intel XE#3573])
> [160]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@xe_oa@unprivileged-single-ctx-counters.html
>
> * igt@xe_pat@pat-index-xehpc:
> - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1420] /
> [Intel XE#2838])
> [161]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@xe_pat@pat-index-xehpc.html
>
> * igt@xe_pmu@fn-engine-activity-load:
> - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#4650])
> [162]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@xe_pmu@fn-engine-activity-load.html
>
> * igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
> - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#4733]) +1
> other test skip
> [163]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
>
> * igt@xe_query@multigpu-query-cs-cycles:
> - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#944])
> [164]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-5/igt@xe_query@multigpu-query-cs-cycles.html
>
> * igt@xe_sriov_auto_provisioning@fair-allocation:
> - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#4130]) +1
> other test skip
> [165]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-2/igt@xe_sriov_auto_provisioning@fair-allocation.html
> - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#4130])
> [166]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@xe_sriov_auto_provisioning@fair-allocation.html
> - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#4130])
> [167]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@xe_sriov_auto_provisioning@fair-allocation.html
>
> * igt@xe_sriov_flr@flr-each-isolation:
> - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#3342])
> [168]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-3/igt@xe_sriov_flr@flr-each-isolation.html
> - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#3342])
> [169]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
>
>
> #### Possible fixes ####
>
> * igt@kms_addfb_basic@unused-offsets:
> - shard-dg2-set2: [SKIP][170] ([i915#6077]) -> [PASS][171]
> [170]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_addfb_basic@unused-offsets.html
> [171]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_addfb_basic@unused-offsets.html
>
> * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
> - shard-adlp: [FAIL][172] ([Intel XE#3908]) ->
> [PASS][173] +1 other test pass
> [172]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
> [173]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
>
> *
> igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
> - shard-adlp: [DMESG-FAIL][174] ([Intel XE#4543]) ->
> [PASS][175] +11 other tests pass
> [174]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> [175]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>
> * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
> - shard-bmg: [SKIP][176] ([Intel XE#2314] / [Intel
> XE#2894]) -> [PASS][177] +1 other test pass
> [176]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
> [177]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
> - shard-dg2-set2: [INCOMPLETE][178] ([Intel XE#1727] / [Intel
> XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][179] +1 other
> test pass
> [178]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
> [179]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
> - shard-dg2-set2: [INCOMPLETE][180] ([Intel XE#1727] / [Intel
> XE#3113] / [Intel XE#3124]) -> [PASS][181]
> [180]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
> [181]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
>
> * igt@kms_cursor_crc@cursor-sliding-64x64:
> - shard-dg2-set2: [SKIP][182] -> [PASS][183] +13 other tests
> pass
> [182]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-64x64.html
> [183]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-64x64.html
>
> *
> igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size
> :
> - shard-bmg: [SKIP][184] ([Intel XE#2291]) ->
> [PASS][185] +4 other tests pass
> [184]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
> [185]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
>
> * igt@kms_dp_linktrain_fallback@dp-fallback:
> - shard-bmg: [SKIP][186] ([Intel XE#4294]) ->
> [PASS][187]
> [186]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
> [187]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
>
> * igt@kms_flip@2x-flip-vs-dpms-on-nop:
> - shard-bmg: [SKIP][188] ([Intel XE#2316]) ->
> [PASS][189] +8 other tests pass
> [188]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
> [189]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
>
> * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
> - shard-dg2-set2: [FAIL][190] ([Intel XE#301]) -> [PASS][191]
> +8 other tests pass
> [190]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
> [191]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
>
> * igt@kms_flip@flip-vs-expired-vblank@a-dp4:
> - shard-dg2-set2: [FAIL][192] ([Intel XE#301] / [Intel
> XE#3321]) -> [PASS][193] +3 other tests pass
> [192]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
> [193]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
>
> * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
> - shard-adlp: [DMESG-WARN][194] ([Intel XE#2953] / [Intel
> XE#4173]) -> [PASS][195] +2 other tests pass
> [194]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
> [195]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
>
> * igt@kms_frontbuffer_tracking@fbc-1p-rte:
> - shard-dg2-set2: [SKIP][196] ([Intel XE#783]) -> [PASS][197]
> +2 other tests pass
> [196]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
> [197]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
>
> * igt@kms_hdr@static-toggle-dpms:
> - shard-bmg: [SKIP][198] ([Intel XE#1503]) ->
> [PASS][199]
> [198]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
> [199]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@kms_hdr@static-toggle-dpms.html
>
> * igt@kms_plane_lowres@tiling-x:
> - shard-dg2-set2: [SKIP][200] ([Intel XE#829]) -> [PASS][201]
> +3 other tests pass
> [200]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_plane_lowres@tiling-x.html
> [201]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_plane_lowres@tiling-x.html
>
> * igt@kms_pm_dc@dc6-dpms:
> - shard-adlp: [FAIL][202] ([Intel XE#718]) -> [PASS][203]
> [202]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@kms_pm_dc@dc6-dpms.html
> [203]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@kms_pm_dc@dc6-dpms.html
>
> * igt@kms_setmode@invalid-clone-single-crtc:
> - shard-bmg: [SKIP][204] ([Intel XE#1435]) ->
> [PASS][205]
> [204]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
> [205]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html
>
> * igt@kms_universal_plane@universal-plane-functional:
> - shard-bmg: [DMESG-WARN][206] ([Intel XE#5213]) ->
> [PASS][207] +1 other test pass
> [206]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-7/igt@kms_universal_plane@universal-plane-functional.html
> [207]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_universal_plane@universal-plane-functional.html
>
> * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
> - shard-dg2-set2: [SKIP][208] ([Intel XE#1392]) ->
> [PASS][209] +5 other tests pass
> [208]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
> [209]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
>
> * igt@xe_exec_system_allocator@threads-many-new-nomemset:
> - shard-bmg: [FAIL][210] ([Intel XE#5058]) ->
> [PASS][211]
> [210]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-new-nomemset.html
> [211]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-new-nomemset.html
>
> *
> igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset
> :
> - shard-lnl: [FAIL][212] ([Intel XE#4937]) ->
> [PASS][213]
> [212]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
> [213]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
>
> * igt@xe_module_load@reload-no-display:
> - shard-dg2-set2: [FAIL][214] ([Intel XE#4208]) ->
> [PASS][215]
> [214]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@xe_module_load@reload-no-display.html
> [215]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@xe_module_load@reload-no-display.html
>
> * igt@xe_pm@s2idle-basic-exec:
> - shard-adlp: [ABORT][216] ([Intel XE#4847]) ->
> [PASS][217]
> [216]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_pm@s2idle-basic-exec.html
> [217]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@xe_pm@s2idle-basic-exec.html
>
> * igt@xe_pm@s4-vm-bind-prefetch:
> - shard-bmg: [ABORT][218] -> [PASS][219]
> [218]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@xe_pm@s4-vm-bind-prefetch.html
> [219]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@xe_pm@s4-vm-bind-prefetch.html
>
>
> #### Warnings ####
>
> * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
> - shard-adlp: [SKIP][220] ([Intel XE#1124]) ->
> [SKIP][221] ([Intel XE#4947]) +1 other test skip
> [220]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
> [221]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
>
> * igt@kms_big_fb@linear-16bpp-rotate-270:
> - shard-adlp: [SKIP][222] ([Intel XE#316]) -> [SKIP][223]
> ([Intel XE#4947])
> [222]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@kms_big_fb@linear-16bpp-rotate-270.html
> [223]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_big_fb@linear-16bpp-rotate-270.html
>
> * igt@kms_big_fb@linear-64bpp-rotate-90:
> - shard-dg2-set2: [SKIP][224] ([Intel XE#829]) -> [SKIP][225]
> ([Intel XE#316])
> [224]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-90.html
> [225]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@kms_big_fb@linear-64bpp-rotate-90.html
>
> * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
> - shard-adlp: [DMESG-FAIL][226] ([Intel XE#4543]) ->
> [DMESG-WARN][227] ([Intel XE#2953] / [Intel XE#4173])
> [226]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
> [227]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>
> * igt@kms_big_fb@y-tiled-8bpp-rotate-180:
> - shard-adlp: [DMESG-FAIL][228] ([Intel XE#4543]) ->
> [SKIP][229] ([Intel XE#4947])
> [228]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
> [229]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
>
> * igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
> - shard-dg2-set2: [SKIP][230] ([Intel XE#829]) -> [SKIP][231]
> ([Intel XE#1124])
> [230]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
> [231]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
>
> * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
> - shard-adlp: [SKIP][232] ([Intel XE#367]) -> [SKIP][233]
> ([Intel XE#4950])
> [232]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
> [233]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
>
> * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
> - shard-dg2-set2: [SKIP][234] -> [SKIP][235] ([Intel XE#367])
> [234]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
> [235]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
>
> * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
> - shard-adlp: [SKIP][236] ([Intel XE#455] / [Intel
> XE#787]) -> [SKIP][237] ([Intel XE#4947])
> [236]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
> [237]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
>
> * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs:
> - shard-dg2-set2: [SKIP][238] ([Intel XE#829]) -> [SKIP][239]
> ([Intel XE#455] / [Intel XE#787]) +1 other test skip
> [238]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
> [239]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
>
> * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
> - shard-dg2-set2: [SKIP][240] ([Intel XE#829]) -> [SKIP][241]
> ([Intel XE#2907])
> [240]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
> [241]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
> - shard-dg2-set2: [INCOMPLETE][242] ([Intel XE#1727] / [Intel
> XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [INCOMPLETE][243]
> ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel
> XE#4212] / [Intel XE#4345] / [Intel XE#4522])
> [242]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
> [243]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
>
> * igt@kms_chamelium_color@ctm-0-25:
> - shard-adlp: [SKIP][244] ([Intel XE#306]) -> [SKIP][245]
> ([Intel XE#4950])
> [244]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_chamelium_color@ctm-0-25.html
> [245]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_chamelium_color@ctm-0-25.html
>
> * igt@kms_chamelium_frames@hdmi-aspect-ratio:
> - shard-dg2-set2: [SKIP][246] -> [SKIP][247] ([Intel XE#373])
> +1 other test skip
> [246]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
> [247]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
>
> * igt@kms_content_protection@atomic:
> - shard-bmg: [FAIL][248] ([Intel XE#1178]) ->
> [SKIP][249] ([Intel XE#2341])
> [248]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-8/igt@kms_content_protection@atomic.html
> [249]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_content_protection@atomic.html
>
> * igt@kms_content_protection@uevent:
> - shard-bmg: [FAIL][250] ([Intel XE#1188]) ->
> [SKIP][251] ([Intel XE#2341])
> [250]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-8/igt@kms_content_protection@uevent.html
> [251]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_content_protection@uevent.html
>
> * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
> - shard-adlp: [SKIP][252] ([Intel XE#309]) -> [SKIP][253]
> ([Intel XE#4950]) +1 other test skip
> [252]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
> [253]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
>
> * igt@kms_fbcon_fbt@psr:
> - shard-adlp: [SKIP][254] ([Intel XE#776]) -> [SKIP][255]
> ([Intel XE#4947])
> [254]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@kms_fbcon_fbt@psr.html
> [255]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_fbcon_fbt@psr.html
>
> * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
> - shard-adlp: [SKIP][256] ([Intel XE#310]) -> [SKIP][257]
> ([Intel XE#4950])
> [256]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
> [257]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
>
> * igt@kms_flip@2x-wf_vblank-ts-check:
> - shard-bmg: [SKIP][258] ([Intel XE#2316]) ->
> [FAIL][259] ([Intel XE#2882])
> [258]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html
> [259]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-2/igt@kms_flip@2x-wf_vblank-ts-check.html
>
> *
> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
> - shard-dg2-set2: [SKIP][260] -> [SKIP][261] ([Intel XE#455])
> +2 other tests skip
> [260]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
> [261]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
>
> *
> igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
> - shard-adlp: [SKIP][262] ([Intel XE#651]) -> [SKIP][263]
> ([Intel XE#4947]) +1 other test skip
> [262]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
> [263]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
>
> * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
> - shard-dg2-set2: [SKIP][264] ([Intel XE#783]) -> [SKIP][265]
> ([Intel XE#651]) +4 other tests skip
> [264]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
> [265]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
>
> * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
> - shard-bmg: [SKIP][266] ([Intel XE#2312]) ->
> [SKIP][267] ([Intel XE#2311]) +23 other tests skip
> [266]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
> [267]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
>
> *
> igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
> - shard-adlp: [SKIP][268] ([Intel XE#656]) -> [SKIP][269]
> ([Intel XE#2351] / [Intel XE#4947])
> [268]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
> [269]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
>
> *
> igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
> - shard-bmg: [SKIP][270] ([Intel XE#2311]) ->
> [SKIP][271] ([Intel XE#2312]) +21 other tests skip
> [270]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
> [271]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
> - shard-bmg: [SKIP][272] ([Intel XE#2312]) ->
> [SKIP][273] ([Intel XE#4141]) +9 other tests skip
> [272]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
> [273]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
> - shard-adlp: [SKIP][274] ([Intel XE#656]) -> [SKIP][275]
> ([Intel XE#4947]) +3 other tests skip
> [274]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
> [275]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
>
> *
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
> - shard-bmg: [SKIP][276] ([Intel XE#4141]) ->
> [SKIP][277] ([Intel XE#2312]) +13 other tests skip
> [276]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
> [277]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
> - shard-adlp: [SKIP][278] ([Intel XE#651]) -> [SKIP][279]
> ([Intel XE#2351] / [Intel XE#4947])
> [278]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
> [279]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
> - shard-bmg: [SKIP][280] ([Intel XE#2313]) ->
> [SKIP][281] ([Intel XE#2312]) +17 other tests skip
> [280]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
> [281]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
> - shard-adlp: [SKIP][282] ([Intel XE#653]) -> [SKIP][283]
> ([Intel XE#4947]) +1 other test skip
> [282]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
> [283]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
> - shard-dg2-set2: [SKIP][284] ([Intel XE#783]) -> [SKIP][285]
> ([Intel XE#653]) +4 other tests skip
> [284]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
> [285]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
>
> *
> igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
> - shard-bmg: [SKIP][286] ([Intel XE#2312]) ->
> [SKIP][287] ([Intel XE#2313]) +21 other tests skip
> [286]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
> [287]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
>
> * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
> - shard-dg2-set2: [SKIP][288] -> [SKIP][289] ([Intel
> XE#2925])
> [288]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
> [289]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
>
> * igt@kms_plane_multiple@2x-tiling-y:
> - shard-bmg: [SKIP][290] ([Intel XE#4596]) ->
> [SKIP][291] ([Intel XE#5021])
> [290]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
> [291]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html
>
> * igt@kms_pm_dc@dc9-dpms:
> - shard-adlp: [FAIL][292] ([Intel XE#3325]) ->
> [SKIP][293] ([Intel XE#734])
> [292]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_pm_dc@dc9-dpms.html
> [293]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@kms_pm_dc@dc9-dpms.html
>
> * igt@kms_pm_rpm@drm-resources-equal:
> - shard-adlp: [SKIP][294] ([Intel XE#5319]) ->
> [SKIP][295] ([Intel XE#4962])
> [294]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@kms_pm_rpm@drm-resources-equal.html
> [295]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_pm_rpm@drm-resources-equal.html
>
> * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
> - shard-dg2-set2: [SKIP][296] -> [SKIP][297] ([Intel
> XE#1489])
> [296]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
> [297]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-463/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
>
> *
> igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
> - shard-adlp: [SKIP][298] ([Intel XE#1489]) ->
> [SKIP][299] ([Intel XE#4947])
> [298]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
> [299]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
>
> * igt@kms_psr@pr-sprite-blt:
> - shard-dg2-set2: [SKIP][300] -> [SKIP][301] ([Intel XE#2850]
> / [Intel XE#929]) +3 other tests skip
> [300]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-432/igt@kms_psr@pr-sprite-blt.html
> [301]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html
>
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
> - shard-dg2-set2: [SKIP][302] ([Intel XE#362]) -> [SKIP][303]
> ([Intel XE#1500])
> [302]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
> [303]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
>
> * igt@kms_vrr@flip-basic:
> - shard-adlp: [SKIP][304] ([Intel XE#455]) -> [SKIP][305]
> ([Intel XE#4950]) +1 other test skip
> [304]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@kms_vrr@flip-basic.html
> [305]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@kms_vrr@flip-basic.html
>
> * igt@xe_copy_basic@mem-set-linear-0xfffe:
> - shard-adlp: [SKIP][306] ([Intel XE#1126]) ->
> [SKIP][307] ([Intel XE#4945])
> [306]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_copy_basic@mem-set-linear-0xfffe.html
> [307]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_copy_basic@mem-set-linear-0xfffe.html
>
> * igt@xe_eudebug_online@interrupt-reconnect:
> - shard-adlp: [SKIP][308] ([Intel XE#4837]) ->
> [SKIP][309] ([Intel XE#4945])
> [308]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_eudebug_online@interrupt-reconnect.html
> [309]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_eudebug_online@interrupt-reconnect.html
>
> *
> igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind
> :
> - shard-adlp: [SKIP][310] ([Intel XE#1392]) ->
> [SKIP][311] ([Intel XE#4945])
> [310]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
> [311]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
>
> *
> igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm
> :
> - shard-adlp: [SKIP][312] ([Intel XE#288]) -> [SKIP][313]
> ([Intel XE#4945]) +1 other test skip
> [312]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html
> [313]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html
>
> * igt@xe_exec_reset@cm-cat-error:
> - shard-adlp: [DMESG-FAIL][314] ([Intel XE#3868]) ->
> [SKIP][315] ([Intel XE#4945])
> [314]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_exec_reset@cm-cat-error.html
> [315]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_exec_reset@cm-cat-error.html
>
> *
> igt@xe_exec_system_allocator@many-large-mmap-remap-dontunmap-eocheck:
> - shard-adlp: [SKIP][316] ([Intel XE#4915]) ->
> [SKIP][317] ([Intel XE#4945]) +34 other tests skip
> [316]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_exec_system_allocator@many-large-mmap-remap-dontunmap-eocheck.html
> [317]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_exec_system_allocator@many-large-mmap-remap-dontunmap-eocheck.html
>
> * igt@xe_module_load@load:
> - shard-adlp: ([PASS][318], [PASS][319], [PASS][320],
> [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325],
> [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330],
> [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335],
> [PASS][336], [PASS][337], [DMESG-WARN][338], [PASS][339],
> [PASS][340], [SKIP][341], [PASS][342], [PASS][343]) ([Intel XE#2953]
> / [Intel XE#378] / [Intel XE#4173]) -> ([SKIP][344], [PASS][345],
> [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350],
> [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355],
> [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360],
> [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365],
> [PASS][366], [PASS][367], [PASS][368], [PASS][369]) ([Intel XE#378])
> [318]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_module_load@load.html
> [319]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_module_load@load.html
> [320]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
> [321]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
> [322]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
> [323]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-3/igt@xe_module_load@load.html
> [324]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_module_load@load.html
> [325]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_module_load@load.html
> [326]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-2/igt@xe_module_load@load.html
> [327]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_module_load@load.html
> [328]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
> [329]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
> [330]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
> [331]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-8/igt@xe_module_load@load.html
> [332]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
> [333]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
> [334]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
> [335]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-9/igt@xe_module_load@load.html
> [336]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_module_load@load.html
> [337]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
> [338]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
> [339]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
> [340]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_module_load@load.html
> [341]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
> [342]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-6/igt@xe_module_load@load.html
> [343]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-1/igt@xe_module_load@load.html
> [344]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@xe_module_load@load.html
> [345]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_module_load@load.html
> [346]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@xe_module_load@load.html
> [347]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@xe_module_load@load.html
> [348]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_module_load@load.html
> [349]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_module_load@load.html
> [350]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@xe_module_load@load.html
> [351]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@xe_module_load@load.html
> [352]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@xe_module_load@load.html
> [353]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@xe_module_load@load.html
> [354]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@xe_module_load@load.html
> [355]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@xe_module_load@load.html
> [356]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_module_load@load.html
> [357]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-6/igt@xe_module_load@load.html
> [358]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_module_load@load.html
> [359]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-3/igt@xe_module_load@load.html
> [360]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@xe_module_load@load.html
> [361]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_module_load@load.html
> [362]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_module_load@load.html
> [363]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-1/igt@xe_module_load@load.html
> [364]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-4/igt@xe_module_load@load.html
> [365]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@xe_module_load@load.html
> [366]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-2/igt@xe_module_load@load.html
> [367]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@xe_module_load@load.html
> [368]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@xe_module_load@load.html
> [369]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-8/igt@xe_module_load@load.html
>
> * igt@xe_oa@invalid-create-userspace-config:
> - shard-adlp: [SKIP][370] ([Intel XE#2541] / [Intel
> XE#3573]) -> [SKIP][371] ([Intel XE#4945])
> [370]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738/shard-adlp-4/igt@xe_oa@invalid-create-userspace-config.html
> [371]:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/shard-adlp-9/igt@xe_oa@invalid-create-userspace-config.html
>
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or
> FAILURE).
>
> [Intel XE#1122]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
> [Intel XE#1124]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
> [Intel XE#1126]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
> [Intel XE#1178]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
> [Intel XE#1188]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
> [Intel XE#1280]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
> [Intel XE#1392]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
> [Intel XE#1397]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
> [Intel XE#1401]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
> [Intel XE#1406]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
> [Intel XE#1407]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
> [Intel XE#1420]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
> [Intel XE#1421]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
> [Intel XE#1424]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
> [Intel XE#1435]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
> [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#1500]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
> [Intel XE#1503]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
> [Intel XE#1508]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
> [Intel XE#1727]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
> [Intel XE#1745]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
> [Intel XE#2191]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
> [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#2252]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
> [Intel XE#2286]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
> [Intel XE#2291]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
> [Intel XE#2311]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
> [Intel XE#2312]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
> [Intel XE#2313]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
> [Intel XE#2314]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
> [Intel XE#2316]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
> [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#2341]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
> [Intel XE#2351]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
> [Intel XE#2373]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
> [Intel XE#2501]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
> [Intel XE#2541]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
> [Intel XE#2652]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
> [Intel XE#2705]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
> [Intel XE#2763]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
> [Intel XE#2838]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
> [Intel XE#2850]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
> [Intel XE#288]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
> [Intel XE#2882]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
> [Intel XE#2887]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
> [Intel XE#2893]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
> [Intel XE#2894]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
> [Intel XE#2907]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
> [Intel XE#2925]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
> [Intel XE#2939]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
> [Intel XE#2953]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
> [Intel XE#3009]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
> [Intel XE#301]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
> [Intel XE#3012]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
> [Intel XE#306]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
> [Intel XE#307]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
> [Intel XE#309]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
> [Intel XE#3099]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3099
> [Intel XE#310]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
> [Intel XE#3113]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
> [Intel XE#3124]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
> [Intel XE#316]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
> [Intel XE#323]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
> [Intel XE#3321]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
> [Intel XE#3325]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3325
> [Intel XE#3342]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
> [Intel XE#3414]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
> [Intel XE#3432]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
> [Intel XE#356]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
> [Intel XE#3573]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
> [Intel XE#362]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
> [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#3767]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
> [Intel XE#3768]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
> [Intel XE#378]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
> [Intel XE#3868]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
> [Intel XE#3904]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
> [Intel XE#3908]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
> [Intel XE#4130]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
> [Intel XE#4141]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
> [Intel XE#4173]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
> [Intel XE#4208]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
> [Intel XE#4212]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
> [Intel XE#4294]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
> [Intel XE#4298]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
> [Intel XE#4345]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
> [Intel XE#4354]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
> [Intel XE#4416]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
> [Intel XE#4459]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
> [Intel XE#4501]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
> [Intel XE#4522]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
> [Intel XE#4543]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
> [Intel XE#455]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
> [Intel XE#4596]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
> [Intel XE#4608]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
> [Intel XE#4609]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
> [Intel XE#4650]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
> [Intel XE#4683]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
> [Intel XE#4733]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
> [Intel XE#4837]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
> [Intel XE#4847]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4847
> [Intel XE#4915]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
> [Intel XE#4921]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
> [Intel XE#4937]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
> [Intel XE#4943]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
> [Intel XE#4945]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945
> [Intel XE#4947]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947
> [Intel XE#4950]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4950
> [Intel XE#4962]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/4962
> [Intel XE#5020]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
> [Intel XE#5021]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
> [Intel XE#5058]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/5058
> [Intel XE#5191]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
> [Intel XE#5213]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
> [Intel XE#5300]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
> [Intel XE#5308]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/5308
> [Intel XE#5319]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/5319
> [Intel XE#607]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
> [Intel XE#616]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
> [Intel XE#651]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
> [Intel XE#653]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
> [Intel XE#656]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
> [Intel XE#688]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
> [Intel XE#703]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
> [Intel XE#718]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
> [Intel XE#734]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
> [Intel XE#776]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
> [Intel XE#783]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
> [Intel XE#787]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
> [Intel XE#829]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
> [Intel XE#836]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
> [Intel XE#870]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
> [Intel XE#929]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
> [Intel XE#944]:
> https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
> [i915#6077]:
> https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
>
>
> Build changes
> -------------
>
> * IGT: IGT_8422 -> IGT_8423
> * Linux: xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738 -> xe-pw-
> 150242v3
>
> IGT_8422: 9b9c9136b17a2ed0680fb9589d51446c03698b37 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8423: 8423
> xe-3295-c86140bb02edc8e529f095ebf15e8d466fa15738:
> c86140bb02edc8e529f095ebf15e8d466fa15738
> xe-pw-150242v3: 150242v3
>
> == Logs ==
>
> For more details see:
> https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150242v3/index.html
^ permalink raw reply [flat|nested] 13+ messages in thread