Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe: Drop preempt-fences when destroying imported dma-bufs.
@ 2025-12-17  9:34 Thomas Hellström
  2025-12-17 11:04 ` ✓ CI.KUnit: success for " Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Thomas Hellström @ 2025-12-17  9:34 UTC (permalink / raw)
  To: intel-xe; +Cc: Thomas Hellström, Matthew Brost, stable

When imported dma-bufs are destroyed, TTM is not fully
individualizing the dma-resv, but it *is* copying the fences that
need to be waited for before declaring idle. So in the case where
the bo->resv != bo->_resv we can still drop the preempt-fences, but
make sure we do that on bo->_resv which contains the fence-pointer
copy.

In the case where the copying fails, bo->_resv will typically not
contain any fences pointers at all, so there will be nothing to
drop. In that case, TTM would have ensured all fences that would
have been copied are signaled, including any remaining preempt
fences.

Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: <stable@vger.kernel.org> # v6.8+
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
 drivers/gpu/drm/xe/xe_bo.c | 15 ++++-----------
 1 file changed, 4 insertions(+), 11 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index 6280e6a013ff..8b6474cd3eaf 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -1526,7 +1526,7 @@ static bool xe_ttm_bo_lock_in_destructor(struct ttm_buffer_object *ttm_bo)
 	 * always succeed here, as long as we hold the lru lock.
 	 */
 	spin_lock(&ttm_bo->bdev->lru_lock);
-	locked = dma_resv_trylock(ttm_bo->base.resv);
+	locked = dma_resv_trylock(&ttm_bo->base._resv);
 	spin_unlock(&ttm_bo->bdev->lru_lock);
 	xe_assert(xe, locked);
 
@@ -1546,13 +1546,6 @@ static void xe_ttm_bo_release_notify(struct ttm_buffer_object *ttm_bo)
 	bo = ttm_to_xe_bo(ttm_bo);
 	xe_assert(xe_bo_device(bo), !(bo->created && kref_read(&ttm_bo->base.refcount)));
 
-	/*
-	 * Corner case where TTM fails to allocate memory and this BOs resv
-	 * still points the VMs resv
-	 */
-	if (ttm_bo->base.resv != &ttm_bo->base._resv)
-		return;
-
 	if (!xe_ttm_bo_lock_in_destructor(ttm_bo))
 		return;
 
@@ -1562,14 +1555,14 @@ static void xe_ttm_bo_release_notify(struct ttm_buffer_object *ttm_bo)
 	 * TODO: Don't do this for external bos once we scrub them after
 	 * unbind.
 	 */
-	dma_resv_for_each_fence(&cursor, ttm_bo->base.resv,
+	dma_resv_for_each_fence(&cursor, &ttm_bo->base._resv,
 				DMA_RESV_USAGE_BOOKKEEP, fence) {
 		if (xe_fence_is_xe_preempt(fence) &&
 		    !dma_fence_is_signaled(fence)) {
 			if (!replacement)
 				replacement = dma_fence_get_stub();
 
-			dma_resv_replace_fences(ttm_bo->base.resv,
+			dma_resv_replace_fences(&ttm_bo->base._resv,
 						fence->context,
 						replacement,
 						DMA_RESV_USAGE_BOOKKEEP);
@@ -1577,7 +1570,7 @@ static void xe_ttm_bo_release_notify(struct ttm_buffer_object *ttm_bo)
 	}
 	dma_fence_put(replacement);
 
-	dma_resv_unlock(ttm_bo->base.resv);
+	dma_resv_unlock(&ttm_bo->base._resv);
 }
 
 static void xe_ttm_bo_delete_mem_notify(struct ttm_buffer_object *ttm_bo)
-- 
2.51.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* ✓ CI.KUnit: success for drm/xe: Drop preempt-fences when destroying imported dma-bufs.
  2025-12-17  9:34 [PATCH] drm/xe: Drop preempt-fences when destroying imported dma-bufs Thomas Hellström
@ 2025-12-17 11:04 ` Patchwork
  2025-12-17 12:05 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-12-17 11:04 UTC (permalink / raw)
  To: Thomas Hellström; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Drop preempt-fences when destroying imported dma-bufs.
URL   : https://patchwork.freedesktop.org/series/159143/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[11:03:10] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:03:14] 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
[11:03:46] Starting KUnit Kernel (1/1)...
[11:03:46] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:03:46] ================== guc_buf (11 subtests) ===================
[11:03:46] [PASSED] test_smallest
[11:03:46] [PASSED] test_largest
[11:03:46] [PASSED] test_granular
[11:03:46] [PASSED] test_unique
[11:03:46] [PASSED] test_overlap
[11:03:46] [PASSED] test_reusable
[11:03:46] [PASSED] test_too_big
[11:03:46] [PASSED] test_flush
[11:03:46] [PASSED] test_lookup
[11:03:46] [PASSED] test_data
[11:03:46] [PASSED] test_class
[11:03:46] ===================== [PASSED] guc_buf =====================
[11:03:46] =================== guc_dbm (7 subtests) ===================
[11:03:46] [PASSED] test_empty
[11:03:46] [PASSED] test_default
[11:03:46] ======================== test_size  ========================
[11:03:46] [PASSED] 4
[11:03:46] [PASSED] 8
[11:03:46] [PASSED] 32
[11:03:46] [PASSED] 256
[11:03:46] ==================== [PASSED] test_size ====================
[11:03:46] ======================= test_reuse  ========================
[11:03:46] [PASSED] 4
[11:03:46] [PASSED] 8
[11:03:46] [PASSED] 32
[11:03:46] [PASSED] 256
[11:03:46] =================== [PASSED] test_reuse ====================
[11:03:46] =================== test_range_overlap  ====================
[11:03:46] [PASSED] 4
[11:03:46] [PASSED] 8
[11:03:46] [PASSED] 32
[11:03:46] [PASSED] 256
[11:03:46] =============== [PASSED] test_range_overlap ================
[11:03:46] =================== test_range_compact  ====================
[11:03:46] [PASSED] 4
[11:03:46] [PASSED] 8
[11:03:46] [PASSED] 32
[11:03:46] [PASSED] 256
[11:03:46] =============== [PASSED] test_range_compact ================
[11:03:46] ==================== test_range_spare  =====================
[11:03:46] [PASSED] 4
[11:03:46] [PASSED] 8
[11:03:46] [PASSED] 32
[11:03:46] [PASSED] 256
[11:03:46] ================ [PASSED] test_range_spare =================
[11:03:46] ===================== [PASSED] guc_dbm =====================
[11:03:46] =================== guc_idm (6 subtests) ===================
[11:03:46] [PASSED] bad_init
[11:03:46] [PASSED] no_init
[11:03:46] [PASSED] init_fini
[11:03:46] [PASSED] check_used
[11:03:46] [PASSED] check_quota
[11:03:46] [PASSED] check_all
[11:03:46] ===================== [PASSED] guc_idm =====================
[11:03:46] ================== no_relay (3 subtests) ===================
[11:03:46] [PASSED] xe_drops_guc2pf_if_not_ready
[11:03:46] [PASSED] xe_drops_guc2vf_if_not_ready
[11:03:46] [PASSED] xe_rejects_send_if_not_ready
[11:03:46] ==================== [PASSED] no_relay =====================
[11:03:46] ================== pf_relay (14 subtests) ==================
[11:03:46] [PASSED] pf_rejects_guc2pf_too_short
[11:03:46] [PASSED] pf_rejects_guc2pf_too_long
[11:03:46] [PASSED] pf_rejects_guc2pf_no_payload
[11:03:46] [PASSED] pf_fails_no_payload
[11:03:46] [PASSED] pf_fails_bad_origin
[11:03:46] [PASSED] pf_fails_bad_type
[11:03:46] [PASSED] pf_txn_reports_error
[11:03:46] [PASSED] pf_txn_sends_pf2guc
[11:03:46] [PASSED] pf_sends_pf2guc
[11:03:46] [SKIPPED] pf_loopback_nop
[11:03:46] [SKIPPED] pf_loopback_echo
[11:03:46] [SKIPPED] pf_loopback_fail
[11:03:46] [SKIPPED] pf_loopback_busy
[11:03:46] [SKIPPED] pf_loopback_retry
[11:03:46] ==================== [PASSED] pf_relay =====================
[11:03:46] ================== vf_relay (3 subtests) ===================
[11:03:46] [PASSED] vf_rejects_guc2vf_too_short
[11:03:46] [PASSED] vf_rejects_guc2vf_too_long
[11:03:46] [PASSED] vf_rejects_guc2vf_no_payload
[11:03:46] ==================== [PASSED] vf_relay =====================
[11:03:46] ================ pf_gt_config (6 subtests) =================
[11:03:46] [PASSED] fair_contexts_1vf
[11:03:46] [PASSED] fair_doorbells_1vf
[11:03:46] [PASSED] fair_ggtt_1vf
[11:03:46] ====================== fair_contexts  ======================
[11:03:46] [PASSED] 1 VF
[11:03:46] [PASSED] 2 VFs
[11:03:46] [PASSED] 3 VFs
[11:03:46] [PASSED] 4 VFs
[11:03:46] [PASSED] 5 VFs
[11:03:46] [PASSED] 6 VFs
[11:03:46] [PASSED] 7 VFs
[11:03:46] [PASSED] 8 VFs
[11:03:46] [PASSED] 9 VFs
[11:03:46] [PASSED] 10 VFs
[11:03:46] [PASSED] 11 VFs
[11:03:46] [PASSED] 12 VFs
[11:03:46] [PASSED] 13 VFs
[11:03:46] [PASSED] 14 VFs
[11:03:46] [PASSED] 15 VFs
[11:03:46] [PASSED] 16 VFs
[11:03:46] [PASSED] 17 VFs
[11:03:46] [PASSED] 18 VFs
[11:03:46] [PASSED] 19 VFs
[11:03:46] [PASSED] 20 VFs
[11:03:46] [PASSED] 21 VFs
[11:03:46] [PASSED] 22 VFs
[11:03:46] [PASSED] 23 VFs
[11:03:46] [PASSED] 24 VFs
[11:03:46] [PASSED] 25 VFs
[11:03:46] [PASSED] 26 VFs
[11:03:46] [PASSED] 27 VFs
[11:03:46] [PASSED] 28 VFs
[11:03:46] [PASSED] 29 VFs
[11:03:46] [PASSED] 30 VFs
[11:03:46] [PASSED] 31 VFs
[11:03:46] [PASSED] 32 VFs
[11:03:46] [PASSED] 33 VFs
[11:03:46] [PASSED] 34 VFs
[11:03:46] [PASSED] 35 VFs
[11:03:46] [PASSED] 36 VFs
[11:03:46] [PASSED] 37 VFs
[11:03:46] [PASSED] 38 VFs
[11:03:46] [PASSED] 39 VFs
[11:03:46] [PASSED] 40 VFs
[11:03:46] [PASSED] 41 VFs
[11:03:46] [PASSED] 42 VFs
[11:03:46] [PASSED] 43 VFs
[11:03:46] [PASSED] 44 VFs
[11:03:46] [PASSED] 45 VFs
[11:03:46] [PASSED] 46 VFs
[11:03:46] [PASSED] 47 VFs
[11:03:46] [PASSED] 48 VFs
[11:03:46] [PASSED] 49 VFs
[11:03:46] [PASSED] 50 VFs
[11:03:46] [PASSED] 51 VFs
[11:03:46] [PASSED] 52 VFs
[11:03:46] [PASSED] 53 VFs
[11:03:46] [PASSED] 54 VFs
[11:03:46] [PASSED] 55 VFs
[11:03:46] [PASSED] 56 VFs
[11:03:46] [PASSED] 57 VFs
[11:03:46] [PASSED] 58 VFs
[11:03:46] [PASSED] 59 VFs
[11:03:46] [PASSED] 60 VFs
[11:03:46] [PASSED] 61 VFs
[11:03:46] [PASSED] 62 VFs
[11:03:46] [PASSED] 63 VFs
[11:03:46] ================== [PASSED] fair_contexts ==================
[11:03:46] ===================== fair_doorbells  ======================
[11:03:46] [PASSED] 1 VF
[11:03:46] [PASSED] 2 VFs
[11:03:46] [PASSED] 3 VFs
[11:03:46] [PASSED] 4 VFs
[11:03:46] [PASSED] 5 VFs
[11:03:46] [PASSED] 6 VFs
[11:03:46] [PASSED] 7 VFs
[11:03:46] [PASSED] 8 VFs
[11:03:46] [PASSED] 9 VFs
[11:03:46] [PASSED] 10 VFs
[11:03:46] [PASSED] 11 VFs
[11:03:46] [PASSED] 12 VFs
[11:03:46] [PASSED] 13 VFs
[11:03:46] [PASSED] 14 VFs
[11:03:46] [PASSED] 15 VFs
[11:03:46] [PASSED] 16 VFs
[11:03:46] [PASSED] 17 VFs
[11:03:46] [PASSED] 18 VFs
[11:03:46] [PASSED] 19 VFs
[11:03:46] [PASSED] 20 VFs
[11:03:46] [PASSED] 21 VFs
[11:03:46] [PASSED] 22 VFs
[11:03:46] [PASSED] 23 VFs
[11:03:46] [PASSED] 24 VFs
[11:03:46] [PASSED] 25 VFs
[11:03:46] [PASSED] 26 VFs
[11:03:46] [PASSED] 27 VFs
[11:03:46] [PASSED] 28 VFs
[11:03:46] [PASSED] 29 VFs
[11:03:46] [PASSED] 30 VFs
[11:03:46] [PASSED] 31 VFs
[11:03:46] [PASSED] 32 VFs
[11:03:46] [PASSED] 33 VFs
[11:03:46] [PASSED] 34 VFs
[11:03:46] [PASSED] 35 VFs
[11:03:46] [PASSED] 36 VFs
[11:03:46] [PASSED] 37 VFs
[11:03:46] [PASSED] 38 VFs
[11:03:46] [PASSED] 39 VFs
[11:03:46] [PASSED] 40 VFs
[11:03:46] [PASSED] 41 VFs
[11:03:46] [PASSED] 42 VFs
[11:03:46] [PASSED] 43 VFs
[11:03:46] [PASSED] 44 VFs
[11:03:46] [PASSED] 45 VFs
[11:03:46] [PASSED] 46 VFs
[11:03:46] [PASSED] 47 VFs
[11:03:46] [PASSED] 48 VFs
[11:03:46] [PASSED] 49 VFs
[11:03:46] [PASSED] 50 VFs
[11:03:46] [PASSED] 51 VFs
[11:03:46] [PASSED] 52 VFs
[11:03:46] [PASSED] 53 VFs
[11:03:46] [PASSED] 54 VFs
[11:03:46] [PASSED] 55 VFs
[11:03:46] [PASSED] 56 VFs
[11:03:46] [PASSED] 57 VFs
[11:03:46] [PASSED] 58 VFs
[11:03:46] [PASSED] 59 VFs
[11:03:46] [PASSED] 60 VFs
[11:03:46] [PASSED] 61 VFs
[11:03:46] [PASSED] 62 VFs
[11:03:46] [PASSED] 63 VFs
[11:03:46] ================= [PASSED] fair_doorbells ==================
[11:03:46] ======================== fair_ggtt  ========================
[11:03:46] [PASSED] 1 VF
[11:03:46] [PASSED] 2 VFs
[11:03:46] [PASSED] 3 VFs
[11:03:46] [PASSED] 4 VFs
[11:03:46] [PASSED] 5 VFs
[11:03:46] [PASSED] 6 VFs
[11:03:46] [PASSED] 7 VFs
[11:03:46] [PASSED] 8 VFs
[11:03:46] [PASSED] 9 VFs
[11:03:46] [PASSED] 10 VFs
[11:03:46] [PASSED] 11 VFs
[11:03:46] [PASSED] 12 VFs
[11:03:46] [PASSED] 13 VFs
[11:03:46] [PASSED] 14 VFs
[11:03:46] [PASSED] 15 VFs
[11:03:46] [PASSED] 16 VFs
[11:03:46] [PASSED] 17 VFs
[11:03:46] [PASSED] 18 VFs
[11:03:46] [PASSED] 19 VFs
[11:03:46] [PASSED] 20 VFs
[11:03:46] [PASSED] 21 VFs
[11:03:46] [PASSED] 22 VFs
[11:03:46] [PASSED] 23 VFs
[11:03:46] [PASSED] 24 VFs
[11:03:46] [PASSED] 25 VFs
[11:03:46] [PASSED] 26 VFs
[11:03:46] [PASSED] 27 VFs
[11:03:46] [PASSED] 28 VFs
[11:03:46] [PASSED] 29 VFs
[11:03:46] [PASSED] 30 VFs
[11:03:46] [PASSED] 31 VFs
[11:03:46] [PASSED] 32 VFs
[11:03:46] [PASSED] 33 VFs
[11:03:46] [PASSED] 34 VFs
[11:03:46] [PASSED] 35 VFs
[11:03:46] [PASSED] 36 VFs
[11:03:46] [PASSED] 37 VFs
[11:03:46] [PASSED] 38 VFs
[11:03:46] [PASSED] 39 VFs
[11:03:46] [PASSED] 40 VFs
[11:03:46] [PASSED] 41 VFs
[11:03:46] [PASSED] 42 VFs
[11:03:46] [PASSED] 43 VFs
[11:03:46] [PASSED] 44 VFs
[11:03:46] [PASSED] 45 VFs
[11:03:46] [PASSED] 46 VFs
[11:03:46] [PASSED] 47 VFs
[11:03:46] [PASSED] 48 VFs
[11:03:46] [PASSED] 49 VFs
[11:03:46] [PASSED] 50 VFs
[11:03:46] [PASSED] 51 VFs
[11:03:46] [PASSED] 52 VFs
[11:03:46] [PASSED] 53 VFs
[11:03:46] [PASSED] 54 VFs
[11:03:46] [PASSED] 55 VFs
[11:03:46] [PASSED] 56 VFs
[11:03:46] [PASSED] 57 VFs
[11:03:46] [PASSED] 58 VFs
[11:03:46] [PASSED] 59 VFs
[11:03:46] [PASSED] 60 VFs
[11:03:46] [PASSED] 61 VFs
[11:03:46] [PASSED] 62 VFs
[11:03:46] [PASSED] 63 VFs
[11:03:46] ==================== [PASSED] fair_ggtt ====================
[11:03:46] ================== [PASSED] pf_gt_config ===================
[11:03:46] ===================== lmtt (1 subtest) =====================
[11:03:46] ======================== test_ops  =========================
[11:03:46] [PASSED] 2-level
[11:03:46] [PASSED] multi-level
[11:03:46] ==================== [PASSED] test_ops =====================
[11:03:46] ====================== [PASSED] lmtt =======================
[11:03:46] ================= pf_service (11 subtests) =================
[11:03:46] [PASSED] pf_negotiate_any
[11:03:46] [PASSED] pf_negotiate_base_match
[11:03:46] [PASSED] pf_negotiate_base_newer
[11:03:46] [PASSED] pf_negotiate_base_next
[11:03:46] [SKIPPED] pf_negotiate_base_older
[11:03:46] [PASSED] pf_negotiate_base_prev
[11:03:46] [PASSED] pf_negotiate_latest_match
[11:03:46] [PASSED] pf_negotiate_latest_newer
[11:03:46] [PASSED] pf_negotiate_latest_next
[11:03:46] [SKIPPED] pf_negotiate_latest_older
[11:03:46] [SKIPPED] pf_negotiate_latest_prev
[11:03:46] =================== [PASSED] pf_service ====================
[11:03:46] ================= xe_guc_g2g (2 subtests) ==================
[11:03:46] ============== xe_live_guc_g2g_kunit_default  ==============
[11:03:46] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[11:03:46] ============== xe_live_guc_g2g_kunit_allmem  ===============
[11:03:46] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[11:03:46] =================== [SKIPPED] xe_guc_g2g ===================
[11:03:46] =================== xe_mocs (2 subtests) ===================
[11:03:46] ================ xe_live_mocs_kernel_kunit  ================
[11:03:46] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[11:03:46] ================ xe_live_mocs_reset_kunit  =================
[11:03:46] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[11:03:46] ==================== [SKIPPED] xe_mocs =====================
[11:03:46] ================= xe_migrate (2 subtests) ==================
[11:03:46] ================= xe_migrate_sanity_kunit  =================
[11:03:46] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[11:03:46] ================== xe_validate_ccs_kunit  ==================
[11:03:46] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[11:03:46] =================== [SKIPPED] xe_migrate ===================
[11:03:46] ================== xe_dma_buf (1 subtest) ==================
[11:03:46] ==================== xe_dma_buf_kunit  =====================
[11:03:46] ================ [SKIPPED] xe_dma_buf_kunit ================
[11:03:46] =================== [SKIPPED] xe_dma_buf ===================
[11:03:46] ================= xe_bo_shrink (1 subtest) =================
[11:03:46] =================== xe_bo_shrink_kunit  ====================
[11:03:46] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[11:03:46] ================== [SKIPPED] xe_bo_shrink ==================
[11:03:46] ==================== xe_bo (2 subtests) ====================
[11:03:46] ================== xe_ccs_migrate_kunit  ===================
[11:03:46] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[11:03:46] ==================== xe_bo_evict_kunit  ====================
[11:03:46] =============== [SKIPPED] xe_bo_evict_kunit ================
[11:03:46] ===================== [SKIPPED] xe_bo ======================
[11:03:46] ==================== args (11 subtests) ====================
[11:03:46] [PASSED] count_args_test
[11:03:46] [PASSED] call_args_example
[11:03:46] [PASSED] call_args_test
[11:03:46] [PASSED] drop_first_arg_example
[11:03:46] [PASSED] drop_first_arg_test
[11:03:46] [PASSED] first_arg_example
[11:03:46] [PASSED] first_arg_test
[11:03:46] [PASSED] last_arg_example
[11:03:46] [PASSED] last_arg_test
[11:03:46] [PASSED] pick_arg_example
[11:03:46] [PASSED] sep_comma_example
[11:03:46] ====================== [PASSED] args =======================
[11:03:46] =================== xe_pci (3 subtests) ====================
[11:03:46] ==================== check_graphics_ip  ====================
[11:03:46] [PASSED] 12.00 Xe_LP
[11:03:46] [PASSED] 12.10 Xe_LP+
[11:03:46] [PASSED] 12.55 Xe_HPG
[11:03:46] [PASSED] 12.60 Xe_HPC
[11:03:46] [PASSED] 12.70 Xe_LPG
[11:03:46] [PASSED] 12.71 Xe_LPG
[11:03:46] [PASSED] 12.74 Xe_LPG+
[11:03:46] [PASSED] 20.01 Xe2_HPG
[11:03:46] [PASSED] 20.02 Xe2_HPG
[11:03:46] [PASSED] 20.04 Xe2_LPG
[11:03:46] [PASSED] 30.00 Xe3_LPG
[11:03:46] [PASSED] 30.01 Xe3_LPG
[11:03:46] [PASSED] 30.03 Xe3_LPG
[11:03:46] [PASSED] 30.04 Xe3_LPG
[11:03:46] [PASSED] 30.05 Xe3_LPG
[11:03:46] [PASSED] 35.11 Xe3p_XPC
[11:03:46] ================ [PASSED] check_graphics_ip ================
[11:03:46] ===================== check_media_ip  ======================
[11:03:46] [PASSED] 12.00 Xe_M
[11:03:46] [PASSED] 12.55 Xe_HPM
[11:03:46] [PASSED] 13.00 Xe_LPM+
[11:03:46] [PASSED] 13.01 Xe2_HPM
[11:03:46] [PASSED] 20.00 Xe2_LPM
[11:03:46] [PASSED] 30.00 Xe3_LPM
[11:03:46] [PASSED] 30.02 Xe3_LPM
[11:03:46] [PASSED] 35.00 Xe3p_LPM
[11:03:46] [PASSED] 35.03 Xe3p_HPM
[11:03:46] ================= [PASSED] check_media_ip ==================
[11:03:46] =================== check_platform_desc  ===================
[11:03:46] [PASSED] 0x9A60 (TIGERLAKE)
[11:03:46] [PASSED] 0x9A68 (TIGERLAKE)
[11:03:46] [PASSED] 0x9A70 (TIGERLAKE)
[11:03:46] [PASSED] 0x9A40 (TIGERLAKE)
[11:03:46] [PASSED] 0x9A49 (TIGERLAKE)
[11:03:46] [PASSED] 0x9A59 (TIGERLAKE)
[11:03:46] [PASSED] 0x9A78 (TIGERLAKE)
[11:03:46] [PASSED] 0x9AC0 (TIGERLAKE)
[11:03:46] [PASSED] 0x9AC9 (TIGERLAKE)
[11:03:46] [PASSED] 0x9AD9 (TIGERLAKE)
[11:03:46] [PASSED] 0x9AF8 (TIGERLAKE)
[11:03:46] [PASSED] 0x4C80 (ROCKETLAKE)
[11:03:46] [PASSED] 0x4C8A (ROCKETLAKE)
[11:03:46] [PASSED] 0x4C8B (ROCKETLAKE)
[11:03:46] [PASSED] 0x4C8C (ROCKETLAKE)
[11:03:46] [PASSED] 0x4C90 (ROCKETLAKE)
[11:03:46] [PASSED] 0x4C9A (ROCKETLAKE)
[11:03:46] [PASSED] 0x4680 (ALDERLAKE_S)
[11:03:46] [PASSED] 0x4682 (ALDERLAKE_S)
[11:03:46] [PASSED] 0x4688 (ALDERLAKE_S)
[11:03:46] [PASSED] 0x468A (ALDERLAKE_S)
[11:03:46] [PASSED] 0x468B (ALDERLAKE_S)
[11:03:46] [PASSED] 0x4690 (ALDERLAKE_S)
[11:03:46] [PASSED] 0x4692 (ALDERLAKE_S)
[11:03:46] [PASSED] 0x4693 (ALDERLAKE_S)
[11:03:46] [PASSED] 0x46A0 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46A1 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46A2 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46A3 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46A6 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46A8 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46AA (ALDERLAKE_P)
[11:03:46] [PASSED] 0x462A (ALDERLAKE_P)
[11:03:46] [PASSED] 0x4626 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x4628 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[11:03:46] [PASSED] 0x46B1 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46B2 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46B3 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46C0 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46C1 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46C2 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46C3 (ALDERLAKE_P)
[11:03:46] [PASSED] 0x46D0 (ALDERLAKE_N)
[11:03:46] [PASSED] 0x46D1 (ALDERLAKE_N)
[11:03:46] [PASSED] 0x46D2 (ALDERLAKE_N)
[11:03:46] [PASSED] 0x46D3 (ALDERLAKE_N)
[11:03:46] [PASSED] 0x46D4 (ALDERLAKE_N)
[11:03:46] [PASSED] 0xA721 (ALDERLAKE_P)
[11:03:46] [PASSED] 0xA7A1 (ALDERLAKE_P)
[11:03:46] [PASSED] 0xA7A9 (ALDERLAKE_P)
[11:03:46] [PASSED] 0xA7AC (ALDERLAKE_P)
[11:03:46] [PASSED] 0xA7AD (ALDERLAKE_P)
[11:03:46] [PASSED] 0xA720 (ALDERLAKE_P)
[11:03:46] [PASSED] 0xA7A0 (ALDERLAKE_P)
[11:03:46] [PASSED] 0xA7A8 (ALDERLAKE_P)
[11:03:46] [PASSED] 0xA7AA (ALDERLAKE_P)
[11:03:46] [PASSED] 0xA7AB (ALDERLAKE_P)
[11:03:46] [PASSED] 0xA780 (ALDERLAKE_S)
[11:03:46] [PASSED] 0xA781 (ALDERLAKE_S)
[11:03:46] [PASSED] 0xA782 (ALDERLAKE_S)
[11:03:46] [PASSED] 0xA783 (ALDERLAKE_S)
[11:03:46] [PASSED] 0xA788 (ALDERLAKE_S)
[11:03:46] [PASSED] 0xA789 (ALDERLAKE_S)
[11:03:46] [PASSED] 0xA78A (ALDERLAKE_S)
[11:03:46] [PASSED] 0xA78B (ALDERLAKE_S)
[11:03:46] [PASSED] 0x4905 (DG1)
[11:03:46] [PASSED] 0x4906 (DG1)
[11:03:46] [PASSED] 0x4907 (DG1)
[11:03:46] [PASSED] 0x4908 (DG1)
[11:03:46] [PASSED] 0x4909 (DG1)
[11:03:46] [PASSED] 0x56C0 (DG2)
[11:03:46] [PASSED] 0x56C2 (DG2)
[11:03:46] [PASSED] 0x56C1 (DG2)
[11:03:46] [PASSED] 0x7D51 (METEORLAKE)
[11:03:46] [PASSED] 0x7DD1 (METEORLAKE)
[11:03:46] [PASSED] 0x7D41 (METEORLAKE)
[11:03:46] [PASSED] 0x7D67 (METEORLAKE)
[11:03:46] [PASSED] 0xB640 (METEORLAKE)
[11:03:46] [PASSED] 0x56A0 (DG2)
[11:03:46] [PASSED] 0x56A1 (DG2)
[11:03:46] [PASSED] 0x56A2 (DG2)
[11:03:46] [PASSED] 0x56BE (DG2)
[11:03:46] [PASSED] 0x56BF (DG2)
[11:03:46] [PASSED] 0x5690 (DG2)
[11:03:46] [PASSED] 0x5691 (DG2)
[11:03:46] [PASSED] 0x5692 (DG2)
[11:03:46] [PASSED] 0x56A5 (DG2)
[11:03:46] [PASSED] 0x56A6 (DG2)
[11:03:46] [PASSED] 0x56B0 (DG2)
[11:03:46] [PASSED] 0x56B1 (DG2)
[11:03:46] [PASSED] 0x56BA (DG2)
[11:03:46] [PASSED] 0x56BB (DG2)
[11:03:46] [PASSED] 0x56BC (DG2)
[11:03:46] [PASSED] 0x56BD (DG2)
[11:03:46] [PASSED] 0x5693 (DG2)
[11:03:46] [PASSED] 0x5694 (DG2)
[11:03:46] [PASSED] 0x5695 (DG2)
[11:03:46] [PASSED] 0x56A3 (DG2)
[11:03:46] [PASSED] 0x56A4 (DG2)
[11:03:46] [PASSED] 0x56B2 (DG2)
[11:03:46] [PASSED] 0x56B3 (DG2)
[11:03:46] [PASSED] 0x5696 (DG2)
[11:03:46] [PASSED] 0x5697 (DG2)
[11:03:46] [PASSED] 0xB69 (PVC)
[11:03:46] [PASSED] 0xB6E (PVC)
[11:03:46] [PASSED] 0xBD4 (PVC)
[11:03:46] [PASSED] 0xBD5 (PVC)
[11:03:46] [PASSED] 0xBD6 (PVC)
[11:03:46] [PASSED] 0xBD7 (PVC)
[11:03:46] [PASSED] 0xBD8 (PVC)
[11:03:46] [PASSED] 0xBD9 (PVC)
[11:03:46] [PASSED] 0xBDA (PVC)
[11:03:46] [PASSED] 0xBDB (PVC)
[11:03:46] [PASSED] 0xBE0 (PVC)
[11:03:46] [PASSED] 0xBE1 (PVC)
[11:03:46] [PASSED] 0xBE5 (PVC)
[11:03:46] [PASSED] 0x7D40 (METEORLAKE)
[11:03:46] [PASSED] 0x7D45 (METEORLAKE)
[11:03:46] [PASSED] 0x7D55 (METEORLAKE)
[11:03:46] [PASSED] 0x7D60 (METEORLAKE)
[11:03:46] [PASSED] 0x7DD5 (METEORLAKE)
[11:03:46] [PASSED] 0x6420 (LUNARLAKE)
[11:03:46] [PASSED] 0x64A0 (LUNARLAKE)
[11:03:46] [PASSED] 0x64B0 (LUNARLAKE)
[11:03:46] [PASSED] 0xE202 (BATTLEMAGE)
[11:03:46] [PASSED] 0xE209 (BATTLEMAGE)
[11:03:46] [PASSED] 0xE20B (BATTLEMAGE)
[11:03:46] [PASSED] 0xE20C (BATTLEMAGE)
[11:03:46] [PASSED] 0xE20D (BATTLEMAGE)
[11:03:46] [PASSED] 0xE210 (BATTLEMAGE)
[11:03:46] [PASSED] 0xE211 (BATTLEMAGE)
[11:03:46] [PASSED] 0xE212 (BATTLEMAGE)
[11:03:46] [PASSED] 0xE216 (BATTLEMAGE)
[11:03:46] [PASSED] 0xE220 (BATTLEMAGE)
[11:03:46] [PASSED] 0xE221 (BATTLEMAGE)
[11:03:46] [PASSED] 0xE222 (BATTLEMAGE)
[11:03:46] [PASSED] 0xE223 (BATTLEMAGE)
[11:03:46] [PASSED] 0xB080 (PANTHERLAKE)
[11:03:46] [PASSED] 0xB081 (PANTHERLAKE)
[11:03:46] [PASSED] 0xB082 (PANTHERLAKE)
[11:03:46] [PASSED] 0xB083 (PANTHERLAKE)
[11:03:46] [PASSED] 0xB084 (PANTHERLAKE)
[11:03:46] [PASSED] 0xB085 (PANTHERLAKE)
[11:03:46] [PASSED] 0xB086 (PANTHERLAKE)
[11:03:46] [PASSED] 0xB087 (PANTHERLAKE)
[11:03:46] [PASSED] 0xB08F (PANTHERLAKE)
[11:03:46] [PASSED] 0xB090 (PANTHERLAKE)
[11:03:46] [PASSED] 0xB0A0 (PANTHERLAKE)
[11:03:46] [PASSED] 0xB0B0 (PANTHERLAKE)
[11:03:46] [PASSED] 0xFD80 (PANTHERLAKE)
[11:03:46] [PASSED] 0xFD81 (PANTHERLAKE)
[11:03:46] [PASSED] 0xD740 (NOVALAKE_S)
[11:03:46] [PASSED] 0xD741 (NOVALAKE_S)
[11:03:46] [PASSED] 0xD742 (NOVALAKE_S)
[11:03:46] [PASSED] 0xD743 (NOVALAKE_S)
[11:03:46] [PASSED] 0xD744 (NOVALAKE_S)
[11:03:46] [PASSED] 0xD745 (NOVALAKE_S)
[11:03:46] [PASSED] 0x674C (CRESCENTISLAND)
[11:03:46] =============== [PASSED] check_platform_desc ===============
[11:03:46] ===================== [PASSED] xe_pci ======================
[11:03:46] =================== xe_rtp (2 subtests) ====================
[11:03:46] =============== xe_rtp_process_to_sr_tests  ================
[11:03:46] [PASSED] coalesce-same-reg
[11:03:46] [PASSED] no-match-no-add
[11:03:46] [PASSED] match-or
[11:03:46] [PASSED] match-or-xfail
[11:03:46] [PASSED] no-match-no-add-multiple-rules
[11:03:46] [PASSED] two-regs-two-entries
[11:03:46] [PASSED] clr-one-set-other
[11:03:46] [PASSED] set-field
[11:03:46] [PASSED] conflict-duplicate
[11:03:46] [PASSED] conflict-not-disjoint
[11:03:46] [PASSED] conflict-reg-type
[11:03:46] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[11:03:46] ================== xe_rtp_process_tests  ===================
[11:03:46] [PASSED] active1
[11:03:46] [PASSED] active2
[11:03:46] [PASSED] active-inactive
[11:03:46] [PASSED] inactive-active
[11:03:46] [PASSED] inactive-1st_or_active-inactive
[11:03:46] [PASSED] inactive-2nd_or_active-inactive
[11:03:46] [PASSED] inactive-last_or_active-inactive
[11:03:46] [PASSED] inactive-no_or_active-inactive
[11:03:46] ============== [PASSED] xe_rtp_process_tests ===============
[11:03:46] ===================== [PASSED] xe_rtp ======================
[11:03:46] ==================== xe_wa (1 subtest) =====================
[11:03:46] ======================== xe_wa_gt  =========================
[11:03:46] [PASSED] TIGERLAKE B0
[11:03:46] [PASSED] DG1 A0
[11:03:46] [PASSED] DG1 B0
[11:03:46] [PASSED] ALDERLAKE_S A0
[11:03:46] [PASSED] ALDERLAKE_S B0
[11:03:46] [PASSED] ALDERLAKE_S C0
[11:03:46] [PASSED] ALDERLAKE_S D0
[11:03:46] [PASSED] ALDERLAKE_P A0
[11:03:46] [PASSED] ALDERLAKE_P B0
[11:03:46] [PASSED] ALDERLAKE_P C0
[11:03:46] [PASSED] ALDERLAKE_S RPLS D0
[11:03:46] [PASSED] ALDERLAKE_P RPLU E0
[11:03:46] [PASSED] DG2 G10 C0
[11:03:46] [PASSED] DG2 G11 B1
[11:03:46] [PASSED] DG2 G12 A1
[11:03:46] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:03:46] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:03:46] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[11:03:46] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[11:03:46] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[11:03:46] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[11:03:46] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[11:03:46] ==================== [PASSED] xe_wa_gt =====================
[11:03:46] ====================== [PASSED] xe_wa ======================
[11:03:46] ============================================================
[11:03:46] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[11:03:46] Elapsed time: 36.000s total, 4.218s configuring, 31.309s building, 0.461s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[11:03:46] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:03:48] 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
[11:04:13] Starting KUnit Kernel (1/1)...
[11:04:13] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:04:13] ============ drm_test_pick_cmdline (2 subtests) ============
[11:04:13] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[11:04:13] =============== drm_test_pick_cmdline_named  ===============
[11:04:13] [PASSED] NTSC
[11:04:13] [PASSED] NTSC-J
[11:04:13] [PASSED] PAL
[11:04:13] [PASSED] PAL-M
[11:04:13] =========== [PASSED] drm_test_pick_cmdline_named ===========
[11:04:13] ============== [PASSED] drm_test_pick_cmdline ==============
[11:04:13] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[11:04:13] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[11:04:13] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[11:04:13] =========== drm_validate_clone_mode (2 subtests) ===========
[11:04:13] ============== drm_test_check_in_clone_mode  ===============
[11:04:13] [PASSED] in_clone_mode
[11:04:13] [PASSED] not_in_clone_mode
[11:04:13] ========== [PASSED] drm_test_check_in_clone_mode ===========
[11:04:13] =============== drm_test_check_valid_clones  ===============
[11:04:13] [PASSED] not_in_clone_mode
[11:04:13] [PASSED] valid_clone
[11:04:13] [PASSED] invalid_clone
[11:04:13] =========== [PASSED] drm_test_check_valid_clones ===========
[11:04:13] ============= [PASSED] drm_validate_clone_mode =============
[11:04:13] ============= drm_validate_modeset (1 subtest) =============
[11:04:13] [PASSED] drm_test_check_connector_changed_modeset
[11:04:13] ============== [PASSED] drm_validate_modeset ===============
[11:04:13] ====== drm_test_bridge_get_current_state (2 subtests) ======
[11:04:13] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[11:04:13] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[11:04:13] ======== [PASSED] drm_test_bridge_get_current_state ========
[11:04:13] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[11:04:13] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[11:04:13] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[11:04:13] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[11:04:13] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[11:04:13] ============== drm_bridge_alloc (2 subtests) ===============
[11:04:13] [PASSED] drm_test_drm_bridge_alloc_basic
[11:04:13] [PASSED] drm_test_drm_bridge_alloc_get_put
[11:04:13] ================ [PASSED] drm_bridge_alloc =================
[11:04:13] ================== drm_buddy (8 subtests) ==================
[11:04:13] [PASSED] drm_test_buddy_alloc_limit
[11:04:13] [PASSED] drm_test_buddy_alloc_optimistic
[11:04:13] [PASSED] drm_test_buddy_alloc_pessimistic
[11:04:13] [PASSED] drm_test_buddy_alloc_pathological
[11:04:13] [PASSED] drm_test_buddy_alloc_contiguous
[11:04:13] [PASSED] drm_test_buddy_alloc_clear
[11:04:13] [PASSED] drm_test_buddy_alloc_range_bias
[11:04:14] [PASSED] drm_test_buddy_fragmentation_performance
[11:04:14] ==================== [PASSED] drm_buddy ====================
[11:04:14] ============= drm_cmdline_parser (40 subtests) =============
[11:04:14] [PASSED] drm_test_cmdline_force_d_only
[11:04:14] [PASSED] drm_test_cmdline_force_D_only_dvi
[11:04:14] [PASSED] drm_test_cmdline_force_D_only_hdmi
[11:04:14] [PASSED] drm_test_cmdline_force_D_only_not_digital
[11:04:14] [PASSED] drm_test_cmdline_force_e_only
[11:04:14] [PASSED] drm_test_cmdline_res
[11:04:14] [PASSED] drm_test_cmdline_res_vesa
[11:04:14] [PASSED] drm_test_cmdline_res_vesa_rblank
[11:04:14] [PASSED] drm_test_cmdline_res_rblank
[11:04:14] [PASSED] drm_test_cmdline_res_bpp
[11:04:14] [PASSED] drm_test_cmdline_res_refresh
[11:04:14] [PASSED] drm_test_cmdline_res_bpp_refresh
[11:04:14] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[11:04:14] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[11:04:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[11:04:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[11:04:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[11:04:14] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[11:04:14] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[11:04:14] [PASSED] drm_test_cmdline_res_margins_force_on
[11:04:14] [PASSED] drm_test_cmdline_res_vesa_margins
[11:04:14] [PASSED] drm_test_cmdline_name
[11:04:14] [PASSED] drm_test_cmdline_name_bpp
[11:04:14] [PASSED] drm_test_cmdline_name_option
[11:04:14] [PASSED] drm_test_cmdline_name_bpp_option
[11:04:14] [PASSED] drm_test_cmdline_rotate_0
[11:04:14] [PASSED] drm_test_cmdline_rotate_90
[11:04:14] [PASSED] drm_test_cmdline_rotate_180
[11:04:14] [PASSED] drm_test_cmdline_rotate_270
[11:04:14] [PASSED] drm_test_cmdline_hmirror
[11:04:14] [PASSED] drm_test_cmdline_vmirror
[11:04:14] [PASSED] drm_test_cmdline_margin_options
[11:04:14] [PASSED] drm_test_cmdline_multiple_options
[11:04:14] [PASSED] drm_test_cmdline_bpp_extra_and_option
[11:04:14] [PASSED] drm_test_cmdline_extra_and_option
[11:04:14] [PASSED] drm_test_cmdline_freestanding_options
[11:04:14] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[11:04:14] [PASSED] drm_test_cmdline_panel_orientation
[11:04:14] ================ drm_test_cmdline_invalid  =================
[11:04:14] [PASSED] margin_only
[11:04:14] [PASSED] interlace_only
[11:04:14] [PASSED] res_missing_x
[11:04:14] [PASSED] res_missing_y
[11:04:14] [PASSED] res_bad_y
[11:04:14] [PASSED] res_missing_y_bpp
[11:04:14] [PASSED] res_bad_bpp
[11:04:14] [PASSED] res_bad_refresh
[11:04:14] [PASSED] res_bpp_refresh_force_on_off
[11:04:14] [PASSED] res_invalid_mode
[11:04:14] [PASSED] res_bpp_wrong_place_mode
[11:04:14] [PASSED] name_bpp_refresh
[11:04:14] [PASSED] name_refresh
[11:04:14] [PASSED] name_refresh_wrong_mode
[11:04:14] [PASSED] name_refresh_invalid_mode
[11:04:14] [PASSED] rotate_multiple
[11:04:14] [PASSED] rotate_invalid_val
[11:04:14] [PASSED] rotate_truncated
[11:04:14] [PASSED] invalid_option
[11:04:14] [PASSED] invalid_tv_option
[11:04:14] [PASSED] truncated_tv_option
[11:04:14] ============ [PASSED] drm_test_cmdline_invalid =============
[11:04:14] =============== drm_test_cmdline_tv_options  ===============
[11:04:14] [PASSED] NTSC
[11:04:14] [PASSED] NTSC_443
[11:04:14] [PASSED] NTSC_J
[11:04:14] [PASSED] PAL
[11:04:14] [PASSED] PAL_M
[11:04:14] [PASSED] PAL_N
[11:04:14] [PASSED] SECAM
[11:04:14] [PASSED] MONO_525
[11:04:14] [PASSED] MONO_625
[11:04:14] =========== [PASSED] drm_test_cmdline_tv_options ===========
[11:04:14] =============== [PASSED] drm_cmdline_parser ================
[11:04:14] ========== drmm_connector_hdmi_init (20 subtests) ==========
[11:04:14] [PASSED] drm_test_connector_hdmi_init_valid
[11:04:14] [PASSED] drm_test_connector_hdmi_init_bpc_8
[11:04:14] [PASSED] drm_test_connector_hdmi_init_bpc_10
[11:04:14] [PASSED] drm_test_connector_hdmi_init_bpc_12
[11:04:14] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[11:04:14] [PASSED] drm_test_connector_hdmi_init_bpc_null
[11:04:14] [PASSED] drm_test_connector_hdmi_init_formats_empty
[11:04:14] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[11:04:14] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[11:04:14] [PASSED] supported_formats=0x9 yuv420_allowed=1
[11:04:14] [PASSED] supported_formats=0x9 yuv420_allowed=0
[11:04:14] [PASSED] supported_formats=0x3 yuv420_allowed=1
[11:04:14] [PASSED] supported_formats=0x3 yuv420_allowed=0
[11:04:14] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[11:04:14] [PASSED] drm_test_connector_hdmi_init_null_ddc
[11:04:14] [PASSED] drm_test_connector_hdmi_init_null_product
[11:04:14] [PASSED] drm_test_connector_hdmi_init_null_vendor
[11:04:14] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[11:04:14] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[11:04:14] [PASSED] drm_test_connector_hdmi_init_product_valid
[11:04:14] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[11:04:14] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[11:04:14] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[11:04:14] ========= drm_test_connector_hdmi_init_type_valid  =========
[11:04:14] [PASSED] HDMI-A
[11:04:14] [PASSED] HDMI-B
[11:04:14] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[11:04:14] ======== drm_test_connector_hdmi_init_type_invalid  ========
[11:04:14] [PASSED] Unknown
[11:04:14] [PASSED] VGA
[11:04:14] [PASSED] DVI-I
[11:04:14] [PASSED] DVI-D
[11:04:14] [PASSED] DVI-A
[11:04:14] [PASSED] Composite
[11:04:14] [PASSED] SVIDEO
[11:04:14] [PASSED] LVDS
[11:04:14] [PASSED] Component
[11:04:14] [PASSED] DIN
[11:04:14] [PASSED] DP
[11:04:14] [PASSED] TV
[11:04:14] [PASSED] eDP
[11:04:14] [PASSED] Virtual
[11:04:14] [PASSED] DSI
[11:04:14] [PASSED] DPI
[11:04:14] [PASSED] Writeback
[11:04:14] [PASSED] SPI
[11:04:14] [PASSED] USB
[11:04:14] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[11:04:14] ============ [PASSED] drmm_connector_hdmi_init =============
[11:04:14] ============= drmm_connector_init (3 subtests) =============
[11:04:14] [PASSED] drm_test_drmm_connector_init
[11:04:14] [PASSED] drm_test_drmm_connector_init_null_ddc
[11:04:14] ========= drm_test_drmm_connector_init_type_valid  =========
[11:04:14] [PASSED] Unknown
[11:04:14] [PASSED] VGA
[11:04:14] [PASSED] DVI-I
[11:04:14] [PASSED] DVI-D
[11:04:14] [PASSED] DVI-A
[11:04:14] [PASSED] Composite
[11:04:14] [PASSED] SVIDEO
[11:04:14] [PASSED] LVDS
[11:04:14] [PASSED] Component
[11:04:14] [PASSED] DIN
[11:04:14] [PASSED] DP
[11:04:14] [PASSED] HDMI-A
[11:04:14] [PASSED] HDMI-B
[11:04:14] [PASSED] TV
[11:04:14] [PASSED] eDP
[11:04:14] [PASSED] Virtual
[11:04:14] [PASSED] DSI
[11:04:14] [PASSED] DPI
[11:04:14] [PASSED] Writeback
[11:04:14] [PASSED] SPI
[11:04:14] [PASSED] USB
[11:04:14] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[11:04:14] =============== [PASSED] drmm_connector_init ===============
[11:04:14] ========= drm_connector_dynamic_init (6 subtests) ==========
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_init
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_init_properties
[11:04:14] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[11:04:14] [PASSED] Unknown
[11:04:14] [PASSED] VGA
[11:04:14] [PASSED] DVI-I
[11:04:14] [PASSED] DVI-D
[11:04:14] [PASSED] DVI-A
[11:04:14] [PASSED] Composite
[11:04:14] [PASSED] SVIDEO
[11:04:14] [PASSED] LVDS
[11:04:14] [PASSED] Component
[11:04:14] [PASSED] DIN
[11:04:14] [PASSED] DP
[11:04:14] [PASSED] HDMI-A
[11:04:14] [PASSED] HDMI-B
[11:04:14] [PASSED] TV
[11:04:14] [PASSED] eDP
[11:04:14] [PASSED] Virtual
[11:04:14] [PASSED] DSI
[11:04:14] [PASSED] DPI
[11:04:14] [PASSED] Writeback
[11:04:14] [PASSED] SPI
[11:04:14] [PASSED] USB
[11:04:14] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[11:04:14] ======== drm_test_drm_connector_dynamic_init_name  =========
[11:04:14] [PASSED] Unknown
[11:04:14] [PASSED] VGA
[11:04:14] [PASSED] DVI-I
[11:04:14] [PASSED] DVI-D
[11:04:14] [PASSED] DVI-A
[11:04:14] [PASSED] Composite
[11:04:14] [PASSED] SVIDEO
[11:04:14] [PASSED] LVDS
[11:04:14] [PASSED] Component
[11:04:14] [PASSED] DIN
[11:04:14] [PASSED] DP
[11:04:14] [PASSED] HDMI-A
[11:04:14] [PASSED] HDMI-B
[11:04:14] [PASSED] TV
[11:04:14] [PASSED] eDP
[11:04:14] [PASSED] Virtual
[11:04:14] [PASSED] DSI
[11:04:14] [PASSED] DPI
[11:04:14] [PASSED] Writeback
[11:04:14] [PASSED] SPI
[11:04:14] [PASSED] USB
[11:04:14] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[11:04:14] =========== [PASSED] drm_connector_dynamic_init ============
[11:04:14] ==== drm_connector_dynamic_register_early (4 subtests) =====
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[11:04:14] ====== [PASSED] drm_connector_dynamic_register_early =======
[11:04:14] ======= drm_connector_dynamic_register (7 subtests) ========
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[11:04:14] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[11:04:14] ========= [PASSED] drm_connector_dynamic_register ==========
[11:04:14] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[11:04:14] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[11:04:14] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[11:04:14] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[11:04:14] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[11:04:14] ========== drm_test_get_tv_mode_from_name_valid  ===========
[11:04:14] [PASSED] NTSC
[11:04:14] [PASSED] NTSC-443
[11:04:14] [PASSED] NTSC-J
[11:04:14] [PASSED] PAL
[11:04:14] [PASSED] PAL-M
[11:04:14] [PASSED] PAL-N
[11:04:14] [PASSED] SECAM
[11:04:14] [PASSED] Mono
[11:04:14] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[11:04:14] [PASSED] drm_test_get_tv_mode_from_name_truncated
[11:04:14] ============ [PASSED] drm_get_tv_mode_from_name ============
[11:04:14] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[11:04:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[11:04:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[11:04:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[11:04:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[11:04:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[11:04:14] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[11:04:14] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[11:04:14] [PASSED] VIC 96
[11:04:14] [PASSED] VIC 97
[11:04:14] [PASSED] VIC 101
[11:04:14] [PASSED] VIC 102
[11:04:14] [PASSED] VIC 106
[11:04:14] [PASSED] VIC 107
[11:04:14] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[11:04:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[11:04:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[11:04:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[11:04:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[11:04:14] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[11:04:14] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[11:04:14] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[11:04:14] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[11:04:14] [PASSED] Automatic
[11:04:14] [PASSED] Full
[11:04:14] [PASSED] Limited 16:235
[11:04:14] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[11:04:14] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[11:04:14] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[11:04:14] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[11:04:14] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[11:04:14] [PASSED] RGB
[11:04:14] [PASSED] YUV 4:2:0
[11:04:14] [PASSED] YUV 4:2:2
[11:04:14] [PASSED] YUV 4:4:4
[11:04:14] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[11:04:14] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[11:04:14] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[11:04:14] ============= drm_damage_helper (21 subtests) ==============
[11:04:14] [PASSED] drm_test_damage_iter_no_damage
[11:04:14] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[11:04:14] [PASSED] drm_test_damage_iter_no_damage_src_moved
[11:04:14] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[11:04:14] [PASSED] drm_test_damage_iter_no_damage_not_visible
[11:04:14] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[11:04:14] [PASSED] drm_test_damage_iter_no_damage_no_fb
[11:04:14] [PASSED] drm_test_damage_iter_simple_damage
[11:04:14] [PASSED] drm_test_damage_iter_single_damage
[11:04:14] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[11:04:14] [PASSED] drm_test_damage_iter_single_damage_outside_src
[11:04:14] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[11:04:14] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[11:04:14] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[11:04:14] [PASSED] drm_test_damage_iter_single_damage_src_moved
[11:04:14] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[11:04:14] [PASSED] drm_test_damage_iter_damage
[11:04:14] [PASSED] drm_test_damage_iter_damage_one_intersect
[11:04:14] [PASSED] drm_test_damage_iter_damage_one_outside
[11:04:14] [PASSED] drm_test_damage_iter_damage_src_moved
[11:04:14] [PASSED] drm_test_damage_iter_damage_not_visible
[11:04:14] ================ [PASSED] drm_damage_helper ================
[11:04:14] ============== drm_dp_mst_helper (3 subtests) ==============
[11:04:14] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[11:04:14] [PASSED] Clock 154000 BPP 30 DSC disabled
[11:04:14] [PASSED] Clock 234000 BPP 30 DSC disabled
[11:04:14] [PASSED] Clock 297000 BPP 24 DSC disabled
[11:04:14] [PASSED] Clock 332880 BPP 24 DSC enabled
[11:04:14] [PASSED] Clock 324540 BPP 24 DSC enabled
[11:04:14] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[11:04:14] ============== drm_test_dp_mst_calc_pbn_div  ===============
[11:04:14] [PASSED] Link rate 2000000 lane count 4
[11:04:14] [PASSED] Link rate 2000000 lane count 2
[11:04:14] [PASSED] Link rate 2000000 lane count 1
[11:04:14] [PASSED] Link rate 1350000 lane count 4
[11:04:14] [PASSED] Link rate 1350000 lane count 2
[11:04:14] [PASSED] Link rate 1350000 lane count 1
[11:04:14] [PASSED] Link rate 1000000 lane count 4
[11:04:14] [PASSED] Link rate 1000000 lane count 2
[11:04:14] [PASSED] Link rate 1000000 lane count 1
[11:04:14] [PASSED] Link rate 810000 lane count 4
[11:04:14] [PASSED] Link rate 810000 lane count 2
[11:04:14] [PASSED] Link rate 810000 lane count 1
[11:04:14] [PASSED] Link rate 540000 lane count 4
[11:04:14] [PASSED] Link rate 540000 lane count 2
[11:04:14] [PASSED] Link rate 540000 lane count 1
[11:04:14] [PASSED] Link rate 270000 lane count 4
[11:04:14] [PASSED] Link rate 270000 lane count 2
[11:04:14] [PASSED] Link rate 270000 lane count 1
[11:04:14] [PASSED] Link rate 162000 lane count 4
[11:04:14] [PASSED] Link rate 162000 lane count 2
[11:04:14] [PASSED] Link rate 162000 lane count 1
[11:04:14] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[11:04:14] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[11:04:14] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[11:04:14] [PASSED] DP_POWER_UP_PHY with port number
[11:04:14] [PASSED] DP_POWER_DOWN_PHY with port number
[11:04:14] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[11:04:14] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[11:04:14] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[11:04:14] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[11:04:14] [PASSED] DP_QUERY_PAYLOAD with port number
[11:04:14] [PASSED] DP_QUERY_PAYLOAD with VCPI
[11:04:14] [PASSED] DP_REMOTE_DPCD_READ with port number
[11:04:14] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[11:04:14] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[11:04:14] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[11:04:14] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[11:04:14] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[11:04:14] [PASSED] DP_REMOTE_I2C_READ with port number
[11:04:14] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[11:04:14] [PASSED] DP_REMOTE_I2C_READ with transactions array
[11:04:14] [PASSED] DP_REMOTE_I2C_WRITE with port number
[11:04:14] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[11:04:14] [PASSED] DP_REMOTE_I2C_WRITE with data array
[11:04:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[11:04:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[11:04:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[11:04:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[11:04:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[11:04:14] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[11:04:14] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[11:04:14] ================ [PASSED] drm_dp_mst_helper ================
[11:04:14] ================== drm_exec (7 subtests) ===================
[11:04:14] [PASSED] sanitycheck
[11:04:14] [PASSED] test_lock
[11:04:14] [PASSED] test_lock_unlock
[11:04:14] [PASSED] test_duplicates
[11:04:14] [PASSED] test_prepare
[11:04:14] [PASSED] test_prepare_array
[11:04:14] [PASSED] test_multiple_loops
[11:04:14] ==================== [PASSED] drm_exec =====================
[11:04:14] =========== drm_format_helper_test (17 subtests) ===========
[11:04:14] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[11:04:14] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[11:04:14] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[11:04:14] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[11:04:14] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[11:04:14] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[11:04:14] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[11:04:14] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[11:04:14] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[11:04:14] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[11:04:14] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[11:04:14] ============== drm_test_fb_xrgb8888_to_mono  ===============
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[11:04:14] ==================== drm_test_fb_swab  =====================
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ================ [PASSED] drm_test_fb_swab =================
[11:04:14] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[11:04:14] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[11:04:14] [PASSED] single_pixel_source_buffer
[11:04:14] [PASSED] single_pixel_clip_rectangle
[11:04:14] [PASSED] well_known_colors
[11:04:14] [PASSED] destination_pitch
[11:04:14] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[11:04:14] ================= drm_test_fb_clip_offset  =================
[11:04:14] [PASSED] pass through
[11:04:14] [PASSED] horizontal offset
[11:04:14] [PASSED] vertical offset
[11:04:14] [PASSED] horizontal and vertical offset
[11:04:14] [PASSED] horizontal offset (custom pitch)
[11:04:14] [PASSED] vertical offset (custom pitch)
[11:04:14] [PASSED] horizontal and vertical offset (custom pitch)
[11:04:14] ============= [PASSED] drm_test_fb_clip_offset =============
[11:04:14] =================== drm_test_fb_memcpy  ====================
[11:04:14] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[11:04:14] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[11:04:14] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[11:04:14] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[11:04:14] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[11:04:14] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[11:04:14] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[11:04:14] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[11:04:14] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[11:04:14] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[11:04:14] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[11:04:14] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[11:04:14] =============== [PASSED] drm_test_fb_memcpy ================
[11:04:14] ============= [PASSED] drm_format_helper_test ==============
[11:04:14] ================= drm_format (18 subtests) =================
[11:04:14] [PASSED] drm_test_format_block_width_invalid
[11:04:14] [PASSED] drm_test_format_block_width_one_plane
[11:04:14] [PASSED] drm_test_format_block_width_two_plane
[11:04:14] [PASSED] drm_test_format_block_width_three_plane
[11:04:14] [PASSED] drm_test_format_block_width_tiled
[11:04:14] [PASSED] drm_test_format_block_height_invalid
[11:04:14] [PASSED] drm_test_format_block_height_one_plane
[11:04:14] [PASSED] drm_test_format_block_height_two_plane
[11:04:14] [PASSED] drm_test_format_block_height_three_plane
[11:04:14] [PASSED] drm_test_format_block_height_tiled
[11:04:14] [PASSED] drm_test_format_min_pitch_invalid
[11:04:14] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[11:04:14] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[11:04:14] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[11:04:14] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[11:04:14] [PASSED] drm_test_format_min_pitch_two_plane
[11:04:14] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[11:04:14] [PASSED] drm_test_format_min_pitch_tiled
[11:04:14] =================== [PASSED] drm_format ====================
[11:04:14] ============== drm_framebuffer (10 subtests) ===============
[11:04:14] ========== drm_test_framebuffer_check_src_coords  ==========
[11:04:14] [PASSED] Success: source fits into fb
[11:04:14] [PASSED] Fail: overflowing fb with x-axis coordinate
[11:04:14] [PASSED] Fail: overflowing fb with y-axis coordinate
[11:04:14] [PASSED] Fail: overflowing fb with source width
[11:04:14] [PASSED] Fail: overflowing fb with source height
[11:04:14] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[11:04:14] [PASSED] drm_test_framebuffer_cleanup
[11:04:14] =============== drm_test_framebuffer_create  ===============
[11:04:14] [PASSED] ABGR8888 normal sizes
[11:04:14] [PASSED] ABGR8888 max sizes
[11:04:14] [PASSED] ABGR8888 pitch greater than min required
[11:04:14] [PASSED] ABGR8888 pitch less than min required
[11:04:14] [PASSED] ABGR8888 Invalid width
[11:04:14] [PASSED] ABGR8888 Invalid buffer handle
[11:04:14] [PASSED] No pixel format
[11:04:14] [PASSED] ABGR8888 Width 0
[11:04:14] [PASSED] ABGR8888 Height 0
[11:04:14] [PASSED] ABGR8888 Out of bound height * pitch combination
[11:04:14] [PASSED] ABGR8888 Large buffer offset
[11:04:14] [PASSED] ABGR8888 Buffer offset for inexistent plane
[11:04:14] [PASSED] ABGR8888 Invalid flag
[11:04:14] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[11:04:14] [PASSED] ABGR8888 Valid buffer modifier
[11:04:14] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[11:04:14] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[11:04:14] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[11:04:14] [PASSED] NV12 Normal sizes
[11:04:14] [PASSED] NV12 Max sizes
[11:04:14] [PASSED] NV12 Invalid pitch
[11:04:14] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[11:04:14] [PASSED] NV12 different  modifier per-plane
[11:04:14] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[11:04:14] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[11:04:14] [PASSED] NV12 Modifier for inexistent plane
[11:04:14] [PASSED] NV12 Handle for inexistent plane
[11:04:14] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[11:04:14] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[11:04:14] [PASSED] YVU420 Normal sizes
[11:04:14] [PASSED] YVU420 Max sizes
[11:04:14] [PASSED] YVU420 Invalid pitch
[11:04:14] [PASSED] YVU420 Different pitches
[11:04:14] [PASSED] YVU420 Different buffer offsets/pitches
[11:04:14] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[11:04:14] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[11:04:14] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[11:04:14] [PASSED] YVU420 Valid modifier
[11:04:14] [PASSED] YVU420 Different modifiers per plane
[11:04:14] [PASSED] YVU420 Modifier for inexistent plane
[11:04:14] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[11:04:14] [PASSED] X0L2 Normal sizes
[11:04:14] [PASSED] X0L2 Max sizes
[11:04:14] [PASSED] X0L2 Invalid pitch
[11:04:14] [PASSED] X0L2 Pitch greater than minimum required
[11:04:14] [PASSED] X0L2 Handle for inexistent plane
[11:04:14] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[11:04:14] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[11:04:14] [PASSED] X0L2 Valid modifier
[11:04:14] [PASSED] X0L2 Modifier for inexistent plane
[11:04:14] =========== [PASSED] drm_test_framebuffer_create ===========
[11:04:14] [PASSED] drm_test_framebuffer_free
[11:04:14] [PASSED] drm_test_framebuffer_init
[11:04:14] [PASSED] drm_test_framebuffer_init_bad_format
[11:04:14] [PASSED] drm_test_framebuffer_init_dev_mismatch
[11:04:14] [PASSED] drm_test_framebuffer_lookup
[11:04:14] [PASSED] drm_test_framebuffer_lookup_inexistent
[11:04:14] [PASSED] drm_test_framebuffer_modifiers_not_supported
[11:04:14] ================= [PASSED] drm_framebuffer =================
[11:04:14] ================ drm_gem_shmem (8 subtests) ================
[11:04:14] [PASSED] drm_gem_shmem_test_obj_create
[11:04:14] [PASSED] drm_gem_shmem_test_obj_create_private
[11:04:14] [PASSED] drm_gem_shmem_test_pin_pages
[11:04:14] [PASSED] drm_gem_shmem_test_vmap
[11:04:14] [PASSED] drm_gem_shmem_test_get_pages_sgt
[11:04:14] [PASSED] drm_gem_shmem_test_get_sg_table
[11:04:14] [PASSED] drm_gem_shmem_test_madvise
[11:04:14] [PASSED] drm_gem_shmem_test_purge
[11:04:14] ================== [PASSED] drm_gem_shmem ==================
[11:04:14] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[11:04:14] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[11:04:14] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[11:04:14] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[11:04:14] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[11:04:14] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[11:04:14] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[11:04:14] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[11:04:14] [PASSED] Automatic
[11:04:14] [PASSED] Full
[11:04:14] [PASSED] Limited 16:235
[11:04:14] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[11:04:14] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[11:04:14] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[11:04:14] [PASSED] drm_test_check_disable_connector
[11:04:14] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[11:04:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[11:04:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[11:04:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[11:04:14] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[11:04:14] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[11:04:14] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[11:04:14] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[11:04:14] [PASSED] drm_test_check_output_bpc_dvi
[11:04:14] [PASSED] drm_test_check_output_bpc_format_vic_1
[11:04:14] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[11:04:14] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[11:04:14] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[11:04:14] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[11:04:14] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[11:04:14] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[11:04:14] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[11:04:14] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[11:04:14] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[11:04:14] [PASSED] drm_test_check_broadcast_rgb_value
[11:04:14] [PASSED] drm_test_check_bpc_8_value
[11:04:14] [PASSED] drm_test_check_bpc_10_value
[11:04:14] [PASSED] drm_test_check_bpc_12_value
[11:04:14] [PASSED] drm_test_check_format_value
[11:04:14] [PASSED] drm_test_check_tmds_char_value
[11:04:14] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[11:04:14] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[11:04:14] [PASSED] drm_test_check_mode_valid
[11:04:14] [PASSED] drm_test_check_mode_valid_reject
[11:04:14] [PASSED] drm_test_check_mode_valid_reject_rate
[11:04:14] [PASSED] drm_test_check_mode_valid_reject_max_clock
[11:04:14] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[11:04:14] ================= drm_managed (2 subtests) =================
[11:04:14] [PASSED] drm_test_managed_release_action
[11:04:14] [PASSED] drm_test_managed_run_action
[11:04:14] =================== [PASSED] drm_managed ===================
[11:04:14] =================== drm_mm (6 subtests) ====================
[11:04:14] [PASSED] drm_test_mm_init
[11:04:14] [PASSED] drm_test_mm_debug
[11:04:14] [PASSED] drm_test_mm_align32
[11:04:14] [PASSED] drm_test_mm_align64
[11:04:14] [PASSED] drm_test_mm_lowest
[11:04:14] [PASSED] drm_test_mm_highest
[11:04:14] ===================== [PASSED] drm_mm ======================
[11:04:14] ============= drm_modes_analog_tv (5 subtests) =============
[11:04:14] [PASSED] drm_test_modes_analog_tv_mono_576i
[11:04:14] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[11:04:14] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[11:04:14] [PASSED] drm_test_modes_analog_tv_pal_576i
[11:04:14] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[11:04:14] =============== [PASSED] drm_modes_analog_tv ===============
[11:04:14] ============== drm_plane_helper (2 subtests) ===============
[11:04:14] =============== drm_test_check_plane_state  ================
[11:04:14] [PASSED] clipping_simple
[11:04:14] [PASSED] clipping_rotate_reflect
[11:04:14] [PASSED] positioning_simple
[11:04:14] [PASSED] upscaling
[11:04:14] [PASSED] downscaling
[11:04:14] [PASSED] rounding1
[11:04:14] [PASSED] rounding2
[11:04:14] [PASSED] rounding3
[11:04:14] [PASSED] rounding4
[11:04:14] =========== [PASSED] drm_test_check_plane_state ============
[11:04:14] =========== drm_test_check_invalid_plane_state  ============
[11:04:14] [PASSED] positioning_invalid
[11:04:14] [PASSED] upscaling_invalid
[11:04:14] [PASSED] downscaling_invalid
[11:04:14] ======= [PASSED] drm_test_check_invalid_plane_state ========
[11:04:14] ================ [PASSED] drm_plane_helper =================
[11:04:14] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[11:04:14] ====== drm_test_connector_helper_tv_get_modes_check  =======
[11:04:14] [PASSED] None
[11:04:14] [PASSED] PAL
[11:04:14] [PASSED] NTSC
[11:04:14] [PASSED] Both, NTSC Default
[11:04:14] [PASSED] Both, PAL Default
[11:04:14] [PASSED] Both, NTSC Default, with PAL on command-line
[11:04:14] [PASSED] Both, PAL Default, with NTSC on command-line
[11:04:14] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[11:04:14] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[11:04:14] ================== drm_rect (9 subtests) ===================
[11:04:14] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[11:04:14] [PASSED] drm_test_rect_clip_scaled_not_clipped
[11:04:14] [PASSED] drm_test_rect_clip_scaled_clipped
[11:04:14] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[11:04:14] ================= drm_test_rect_intersect  =================
[11:04:14] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[11:04:14] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[11:04:14] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[11:04:14] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[11:04:14] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[11:04:14] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[11:04:14] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[11:04:14] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[11:04:14] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[11:04:14] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[11:04:14] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[11:04:14] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[11:04:14] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[11:04:14] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[11:04:14] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[11:04:14] ============= [PASSED] drm_test_rect_intersect =============
[11:04:14] ================ drm_test_rect_calc_hscale  ================
[11:04:14] [PASSED] normal use
[11:04:14] [PASSED] out of max range
[11:04:14] [PASSED] out of min range
[11:04:14] [PASSED] zero dst
[11:04:14] [PASSED] negative src
[11:04:14] [PASSED] negative dst
[11:04:14] ============ [PASSED] drm_test_rect_calc_hscale ============
[11:04:14] ================ drm_test_rect_calc_vscale  ================
[11:04:14] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[11:04:14] [PASSED] out of max range
[11:04:14] [PASSED] out of min range
[11:04:14] [PASSED] zero dst
[11:04:14] [PASSED] negative src
[11:04:14] [PASSED] negative dst
[11:04:14] ============ [PASSED] drm_test_rect_calc_vscale ============
[11:04:14] ================== drm_test_rect_rotate  ===================
[11:04:14] [PASSED] reflect-x
[11:04:14] [PASSED] reflect-y
[11:04:14] [PASSED] rotate-0
[11:04:14] [PASSED] rotate-90
[11:04:14] [PASSED] rotate-180
[11:04:14] [PASSED] rotate-270
[11:04:14] ============== [PASSED] drm_test_rect_rotate ===============
[11:04:14] ================ drm_test_rect_rotate_inv  =================
[11:04:14] [PASSED] reflect-x
[11:04:14] [PASSED] reflect-y
[11:04:14] [PASSED] rotate-0
[11:04:14] [PASSED] rotate-90
[11:04:14] [PASSED] rotate-180
[11:04:14] [PASSED] rotate-270
[11:04:14] ============ [PASSED] drm_test_rect_rotate_inv =============
[11:04:14] ==================== [PASSED] drm_rect =====================
[11:04:14] ============ drm_sysfb_modeset_test (1 subtest) ============
[11:04:14] ============ drm_test_sysfb_build_fourcc_list  =============
[11:04:14] [PASSED] no native formats
[11:04:14] [PASSED] XRGB8888 as native format
[11:04:14] [PASSED] remove duplicates
[11:04:14] [PASSED] convert alpha formats
[11:04:14] [PASSED] random formats
[11:04:14] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[11:04:14] ============= [PASSED] drm_sysfb_modeset_test ==============
[11:04:14] ================== drm_fixp (2 subtests) ===================
[11:04:14] [PASSED] drm_test_int2fixp
[11:04:14] [PASSED] drm_test_sm2fixp
[11:04:14] ==================== [PASSED] drm_fixp =====================
[11:04:14] ============================================================
[11:04:14] Testing complete. Ran 624 tests: passed: 624
[11:04:14] Elapsed time: 27.499s total, 1.676s configuring, 25.404s building, 0.381s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[11:04:14] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:04:15] 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
[11:04:25] Starting KUnit Kernel (1/1)...
[11:04:25] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:04:25] ================= ttm_device (5 subtests) ==================
[11:04:25] [PASSED] ttm_device_init_basic
[11:04:25] [PASSED] ttm_device_init_multiple
[11:04:25] [PASSED] ttm_device_fini_basic
[11:04:25] [PASSED] ttm_device_init_no_vma_man
[11:04:25] ================== ttm_device_init_pools  ==================
[11:04:25] [PASSED] No DMA allocations, no DMA32 required
[11:04:25] [PASSED] DMA allocations, DMA32 required
[11:04:25] [PASSED] No DMA allocations, DMA32 required
[11:04:25] [PASSED] DMA allocations, no DMA32 required
[11:04:25] ============== [PASSED] ttm_device_init_pools ==============
[11:04:25] =================== [PASSED] ttm_device ====================
[11:04:25] ================== ttm_pool (8 subtests) ===================
[11:04:25] ================== ttm_pool_alloc_basic  ===================
[11:04:25] [PASSED] One page
[11:04:25] [PASSED] More than one page
[11:04:25] [PASSED] Above the allocation limit
[11:04:25] [PASSED] One page, with coherent DMA mappings enabled
[11:04:25] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:04:25] ============== [PASSED] ttm_pool_alloc_basic ===============
[11:04:25] ============== ttm_pool_alloc_basic_dma_addr  ==============
[11:04:25] [PASSED] One page
[11:04:25] [PASSED] More than one page
[11:04:25] [PASSED] Above the allocation limit
[11:04:25] [PASSED] One page, with coherent DMA mappings enabled
[11:04:25] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:04:25] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[11:04:25] [PASSED] ttm_pool_alloc_order_caching_match
[11:04:25] [PASSED] ttm_pool_alloc_caching_mismatch
[11:04:25] [PASSED] ttm_pool_alloc_order_mismatch
[11:04:25] [PASSED] ttm_pool_free_dma_alloc
[11:04:25] [PASSED] ttm_pool_free_no_dma_alloc
[11:04:25] [PASSED] ttm_pool_fini_basic
[11:04:25] ==================== [PASSED] ttm_pool =====================
[11:04:25] ================ ttm_resource (8 subtests) =================
[11:04:25] ================= ttm_resource_init_basic  =================
[11:04:25] [PASSED] Init resource in TTM_PL_SYSTEM
[11:04:25] [PASSED] Init resource in TTM_PL_VRAM
[11:04:25] [PASSED] Init resource in a private placement
[11:04:25] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[11:04:25] ============= [PASSED] ttm_resource_init_basic =============
[11:04:25] [PASSED] ttm_resource_init_pinned
[11:04:25] [PASSED] ttm_resource_fini_basic
[11:04:25] [PASSED] ttm_resource_manager_init_basic
[11:04:25] [PASSED] ttm_resource_manager_usage_basic
[11:04:25] [PASSED] ttm_resource_manager_set_used_basic
[11:04:25] [PASSED] ttm_sys_man_alloc_basic
[11:04:25] [PASSED] ttm_sys_man_free_basic
[11:04:25] ================== [PASSED] ttm_resource ===================
[11:04:25] =================== ttm_tt (15 subtests) ===================
[11:04:25] ==================== ttm_tt_init_basic  ====================
[11:04:25] [PASSED] Page-aligned size
[11:04:25] [PASSED] Extra pages requested
[11:04:25] ================ [PASSED] ttm_tt_init_basic ================
[11:04:25] [PASSED] ttm_tt_init_misaligned
[11:04:25] [PASSED] ttm_tt_fini_basic
[11:04:25] [PASSED] ttm_tt_fini_sg
[11:04:25] [PASSED] ttm_tt_fini_shmem
[11:04:25] [PASSED] ttm_tt_create_basic
[11:04:25] [PASSED] ttm_tt_create_invalid_bo_type
[11:04:25] [PASSED] ttm_tt_create_ttm_exists
[11:04:25] [PASSED] ttm_tt_create_failed
[11:04:25] [PASSED] ttm_tt_destroy_basic
[11:04:25] [PASSED] ttm_tt_populate_null_ttm
[11:04:25] [PASSED] ttm_tt_populate_populated_ttm
[11:04:25] [PASSED] ttm_tt_unpopulate_basic
[11:04:25] [PASSED] ttm_tt_unpopulate_empty_ttm
[11:04:25] [PASSED] ttm_tt_swapin_basic
[11:04:25] ===================== [PASSED] ttm_tt ======================
[11:04:25] =================== ttm_bo (14 subtests) ===================
[11:04:25] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[11:04:25] [PASSED] Cannot be interrupted and sleeps
[11:04:25] [PASSED] Cannot be interrupted, locks straight away
[11:04:25] [PASSED] Can be interrupted, sleeps
[11:04:25] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[11:04:25] [PASSED] ttm_bo_reserve_locked_no_sleep
[11:04:25] [PASSED] ttm_bo_reserve_no_wait_ticket
[11:04:25] [PASSED] ttm_bo_reserve_double_resv
[11:04:25] [PASSED] ttm_bo_reserve_interrupted
[11:04:25] [PASSED] ttm_bo_reserve_deadlock
[11:04:25] [PASSED] ttm_bo_unreserve_basic
[11:04:25] [PASSED] ttm_bo_unreserve_pinned
[11:04:25] [PASSED] ttm_bo_unreserve_bulk
[11:04:25] [PASSED] ttm_bo_fini_basic
[11:04:25] [PASSED] ttm_bo_fini_shared_resv
[11:04:25] [PASSED] ttm_bo_pin_basic
[11:04:25] [PASSED] ttm_bo_pin_unpin_resource
[11:04:25] [PASSED] ttm_bo_multiple_pin_one_unpin
[11:04:25] ===================== [PASSED] ttm_bo ======================
[11:04:25] ============== ttm_bo_validate (21 subtests) ===============
[11:04:25] ============== ttm_bo_init_reserved_sys_man  ===============
[11:04:25] [PASSED] Buffer object for userspace
[11:04:25] [PASSED] Kernel buffer object
[11:04:25] [PASSED] Shared buffer object
[11:04:25] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[11:04:25] ============== ttm_bo_init_reserved_mock_man  ==============
[11:04:25] [PASSED] Buffer object for userspace
[11:04:25] [PASSED] Kernel buffer object
[11:04:25] [PASSED] Shared buffer object
[11:04:25] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[11:04:25] [PASSED] ttm_bo_init_reserved_resv
[11:04:25] ================== ttm_bo_validate_basic  ==================
[11:04:25] [PASSED] Buffer object for userspace
[11:04:25] [PASSED] Kernel buffer object
[11:04:25] [PASSED] Shared buffer object
[11:04:25] ============== [PASSED] ttm_bo_validate_basic ==============
[11:04:25] [PASSED] ttm_bo_validate_invalid_placement
[11:04:25] ============= ttm_bo_validate_same_placement  ==============
[11:04:25] [PASSED] System manager
[11:04:25] [PASSED] VRAM manager
[11:04:25] ========= [PASSED] ttm_bo_validate_same_placement ==========
[11:04:25] [PASSED] ttm_bo_validate_failed_alloc
[11:04:25] [PASSED] ttm_bo_validate_pinned
[11:04:25] [PASSED] ttm_bo_validate_busy_placement
[11:04:25] ================ ttm_bo_validate_multihop  =================
[11:04:25] [PASSED] Buffer object for userspace
[11:04:25] [PASSED] Kernel buffer object
[11:04:25] [PASSED] Shared buffer object
[11:04:25] ============ [PASSED] ttm_bo_validate_multihop =============
[11:04:25] ========== ttm_bo_validate_no_placement_signaled  ==========
[11:04:25] [PASSED] Buffer object in system domain, no page vector
[11:04:25] [PASSED] Buffer object in system domain with an existing page vector
[11:04:25] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[11:04:25] ======== ttm_bo_validate_no_placement_not_signaled  ========
[11:04:25] [PASSED] Buffer object for userspace
[11:04:25] [PASSED] Kernel buffer object
[11:04:25] [PASSED] Shared buffer object
[11:04:25] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[11:04:25] [PASSED] ttm_bo_validate_move_fence_signaled
[11:04:25] ========= ttm_bo_validate_move_fence_not_signaled  =========
[11:04:25] [PASSED] Waits for GPU
[11:04:25] [PASSED] Tries to lock straight away
[11:04:25] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[11:04:25] [PASSED] ttm_bo_validate_happy_evict
[11:04:25] [PASSED] ttm_bo_validate_all_pinned_evict
[11:04:25] [PASSED] ttm_bo_validate_allowed_only_evict
[11:04:25] [PASSED] ttm_bo_validate_deleted_evict
[11:04:25] [PASSED] ttm_bo_validate_busy_domain_evict
[11:04:25] [PASSED] ttm_bo_validate_evict_gutting
[11:04:25] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[11:04:25] ================= [PASSED] ttm_bo_validate =================
[11:04:25] ============================================================
[11:04:25] Testing complete. Ran 101 tests: passed: 101
[11:04:25] Elapsed time: 11.358s total, 1.657s configuring, 9.485s building, 0.184s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✓ Xe.CI.BAT: success for drm/xe: Drop preempt-fences when destroying imported dma-bufs.
  2025-12-17  9:34 [PATCH] drm/xe: Drop preempt-fences when destroying imported dma-bufs Thomas Hellström
  2025-12-17 11:04 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-12-17 12:05 ` Patchwork
  2025-12-17 20:18 ` [PATCH] " Matthew Brost
  2025-12-18  8:09 ` ✗ Xe.CI.Full: failure for " Patchwork
  3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-12-17 12:05 UTC (permalink / raw)
  To: Thomas Hellström; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 1647 bytes --]

== Series Details ==

Series: drm/xe: Drop preempt-fences when destroying imported dma-bufs.
URL   : https://patchwork.freedesktop.org/series/159143/
State : success

== Summary ==

CI Bug Log - changes from xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0_BAT -> xe-pw-159143v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-159143v1_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_module_load@load:
    - bat-bmg-1:          [PASS][1] -> [ABORT][2] ([Intel XE#6887])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/bat-bmg-1/igt@xe_module_load@load.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/bat-bmg-1/igt@xe_module_load@load.html

  
  [Intel XE#6887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6887


Build changes
-------------

  * IGT: IGT_8668 -> IGT_8669
  * Linux: xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0 -> xe-pw-159143v1

  IGT_8668: 906681747a312ef11ef9af8ab1fa6eff28b4cbd0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8669: 319db2ffba419f9711acc72895f065a818905efa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0: 2eb2f8746a879f1c0e4c56b715c179424dafd8e0
  xe-pw-159143v1: 159143v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/index.html

[-- Attachment #2: Type: text/html, Size: 2226 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm/xe: Drop preempt-fences when destroying imported dma-bufs.
  2025-12-17  9:34 [PATCH] drm/xe: Drop preempt-fences when destroying imported dma-bufs Thomas Hellström
  2025-12-17 11:04 ` ✓ CI.KUnit: success for " Patchwork
  2025-12-17 12:05 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-12-17 20:18 ` Matthew Brost
  2025-12-17 20:51   ` Thomas Hellström
  2025-12-18  8:09 ` ✗ Xe.CI.Full: failure for " Patchwork
  3 siblings, 1 reply; 8+ messages in thread
From: Matthew Brost @ 2025-12-17 20:18 UTC (permalink / raw)
  To: Thomas Hellström; +Cc: intel-xe, stable

On Wed, Dec 17, 2025 at 10:34:41AM +0100, Thomas Hellström wrote:
> When imported dma-bufs are destroyed, TTM is not fully
> individualizing the dma-resv, but it *is* copying the fences that
> need to be waited for before declaring idle. So in the case where
> the bo->resv != bo->_resv we can still drop the preempt-fences, but
> make sure we do that on bo->_resv which contains the fence-pointer
> copy.
> 
> In the case where the copying fails, bo->_resv will typically not
> contain any fences pointers at all, so there will be nothing to
> drop. In that case, TTM would have ensured all fences that would
> have been copied are signaled, including any remaining preempt
> fences.
> 

Is this enough, though? There seems to be some incongruence in TTM
regarding resv vs. _resv handling, which still looks problematic.

For example:

- ttm_bo_flush_all_fences operates on '_resv', which seems correct.

- ttm_bo_delayed_delete waits on 'resv', which doesn’t seem right or at 
  least I’m reasoning that preempt fences will get triggered there too.

- the test in ttm_bo_release for dma-resv being idle uses 'resv', which
  also doesn't look right.

I suppose I can test this out since I have a solid test case and report
back.

Matt

> Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: <stable@vger.kernel.org> # v6.8+
> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> ---
>  drivers/gpu/drm/xe/xe_bo.c | 15 ++++-----------
>  1 file changed, 4 insertions(+), 11 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
> index 6280e6a013ff..8b6474cd3eaf 100644
> --- a/drivers/gpu/drm/xe/xe_bo.c
> +++ b/drivers/gpu/drm/xe/xe_bo.c
> @@ -1526,7 +1526,7 @@ static bool xe_ttm_bo_lock_in_destructor(struct ttm_buffer_object *ttm_bo)
>  	 * always succeed here, as long as we hold the lru lock.
>  	 */
>  	spin_lock(&ttm_bo->bdev->lru_lock);
> -	locked = dma_resv_trylock(ttm_bo->base.resv);
> +	locked = dma_resv_trylock(&ttm_bo->base._resv);
>  	spin_unlock(&ttm_bo->bdev->lru_lock);
>  	xe_assert(xe, locked);
>  
> @@ -1546,13 +1546,6 @@ static void xe_ttm_bo_release_notify(struct ttm_buffer_object *ttm_bo)
>  	bo = ttm_to_xe_bo(ttm_bo);
>  	xe_assert(xe_bo_device(bo), !(bo->created && kref_read(&ttm_bo->base.refcount)));
>  
> -	/*
> -	 * Corner case where TTM fails to allocate memory and this BOs resv
> -	 * still points the VMs resv
> -	 */
> -	if (ttm_bo->base.resv != &ttm_bo->base._resv)
> -		return;
> -
>  	if (!xe_ttm_bo_lock_in_destructor(ttm_bo))
>  		return;
>  
> @@ -1562,14 +1555,14 @@ static void xe_ttm_bo_release_notify(struct ttm_buffer_object *ttm_bo)
>  	 * TODO: Don't do this for external bos once we scrub them after
>  	 * unbind.
>  	 */
> -	dma_resv_for_each_fence(&cursor, ttm_bo->base.resv,
> +	dma_resv_for_each_fence(&cursor, &ttm_bo->base._resv,
>  				DMA_RESV_USAGE_BOOKKEEP, fence) {
>  		if (xe_fence_is_xe_preempt(fence) &&
>  		    !dma_fence_is_signaled(fence)) {
>  			if (!replacement)
>  				replacement = dma_fence_get_stub();
>  
> -			dma_resv_replace_fences(ttm_bo->base.resv,
> +			dma_resv_replace_fences(&ttm_bo->base._resv,
>  						fence->context,
>  						replacement,
>  						DMA_RESV_USAGE_BOOKKEEP);
> @@ -1577,7 +1570,7 @@ static void xe_ttm_bo_release_notify(struct ttm_buffer_object *ttm_bo)
>  	}
>  	dma_fence_put(replacement);
>  
> -	dma_resv_unlock(ttm_bo->base.resv);
> +	dma_resv_unlock(&ttm_bo->base._resv);
>  }
>  
>  static void xe_ttm_bo_delete_mem_notify(struct ttm_buffer_object *ttm_bo)
> -- 
> 2.51.1
> 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm/xe: Drop preempt-fences when destroying imported dma-bufs.
  2025-12-17 20:18 ` [PATCH] " Matthew Brost
@ 2025-12-17 20:51   ` Thomas Hellström
  2025-12-17 21:21     ` Matthew Brost
  0 siblings, 1 reply; 8+ messages in thread
From: Thomas Hellström @ 2025-12-17 20:51 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe, stable

On Wed, 2025-12-17 at 12:18 -0800, Matthew Brost wrote:
> On Wed, Dec 17, 2025 at 10:34:41AM +0100, Thomas Hellström wrote:
> > When imported dma-bufs are destroyed, TTM is not fully
> > individualizing the dma-resv, but it *is* copying the fences that
> > need to be waited for before declaring idle. So in the case where
> > the bo->resv != bo->_resv we can still drop the preempt-fences, but
> > make sure we do that on bo->_resv which contains the fence-pointer
> > copy.
> > 
> > In the case where the copying fails, bo->_resv will typically not
> > contain any fences pointers at all, so there will be nothing to
> > drop. In that case, TTM would have ensured all fences that would
> > have been copied are signaled, including any remaining preempt
> > fences.
> > 
> 
> Is this enough, though? There seems to be some incongruence in TTM
> regarding resv vs. _resv handling, which still looks problematic.
> 
> For example:
> 
> - ttm_bo_flush_all_fences operates on '_resv', which seems correct.

Yes, correct.

> 
> - ttm_bo_delayed_delete waits on 'resv', which doesn’t seem right or
> at 
>   least I’m reasoning that preempt fences will get triggered there
> too.

No it waits for _resv, but then locks resv (the shared lock) to be able
to correctly release the attachments. So this appears correct to me.

> 
> - the test in ttm_bo_release for dma-resv being idle uses 'resv',
> which
>   also doesn't look right.

		if (!dma_resv_test_signaled(&bo->base._resv,
					    DMA_RESV_USAGE_BOOKKEEP)
||
		    (want_init_on_free() && (bo->ttm != NULL)) ||
		    bo->type == ttm_bo_type_sg ||
		    !dma_resv_trylock(bo->base.resv)) {

Again, waiting for _resv but trylocking resv, which is the correct
approach for sg bo's afaict.

> 
> I suppose I can test this out since I have a solid test case and
> report
> back.

Please do.
Thanks,
Thomas


> 
> Matt
> 
> > Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel
> > GPUs")
> > Cc: Matthew Brost <matthew.brost@intel.com>
> > Cc: <stable@vger.kernel.org> # v6.8+
> > Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > ---
> >  drivers/gpu/drm/xe/xe_bo.c | 15 ++++-----------
> >  1 file changed, 4 insertions(+), 11 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/xe/xe_bo.c
> > b/drivers/gpu/drm/xe/xe_bo.c
> > index 6280e6a013ff..8b6474cd3eaf 100644
> > --- a/drivers/gpu/drm/xe/xe_bo.c
> > +++ b/drivers/gpu/drm/xe/xe_bo.c
> > @@ -1526,7 +1526,7 @@ static bool
> > xe_ttm_bo_lock_in_destructor(struct ttm_buffer_object *ttm_bo)
> >  	 * always succeed here, as long as we hold the lru lock.
> >  	 */
> >  	spin_lock(&ttm_bo->bdev->lru_lock);
> > -	locked = dma_resv_trylock(ttm_bo->base.resv);
> > +	locked = dma_resv_trylock(&ttm_bo->base._resv);
> >  	spin_unlock(&ttm_bo->bdev->lru_lock);
> >  	xe_assert(xe, locked);
> >  
> > @@ -1546,13 +1546,6 @@ static void xe_ttm_bo_release_notify(struct
> > ttm_buffer_object *ttm_bo)
> >  	bo = ttm_to_xe_bo(ttm_bo);
> >  	xe_assert(xe_bo_device(bo), !(bo->created &&
> > kref_read(&ttm_bo->base.refcount)));
> >  
> > -	/*
> > -	 * Corner case where TTM fails to allocate memory and this
> > BOs resv
> > -	 * still points the VMs resv
> > -	 */
> > -	if (ttm_bo->base.resv != &ttm_bo->base._resv)
> > -		return;
> > -
> >  	if (!xe_ttm_bo_lock_in_destructor(ttm_bo))
> >  		return;
> >  
> > @@ -1562,14 +1555,14 @@ static void xe_ttm_bo_release_notify(struct
> > ttm_buffer_object *ttm_bo)
> >  	 * TODO: Don't do this for external bos once we scrub them
> > after
> >  	 * unbind.
> >  	 */
> > -	dma_resv_for_each_fence(&cursor, ttm_bo->base.resv,
> > +	dma_resv_for_each_fence(&cursor, &ttm_bo->base._resv,
> >  				DMA_RESV_USAGE_BOOKKEEP, fence) {
> >  		if (xe_fence_is_xe_preempt(fence) &&
> >  		    !dma_fence_is_signaled(fence)) {
> >  			if (!replacement)
> >  				replacement =
> > dma_fence_get_stub();
> >  
> > -			dma_resv_replace_fences(ttm_bo->base.resv,
> > +			dma_resv_replace_fences(&ttm_bo-
> > >base._resv,
> >  						fence->context,
> >  						replacement,
> >  						DMA_RESV_USAGE_BOO
> > KKEEP);
> > @@ -1577,7 +1570,7 @@ static void xe_ttm_bo_release_notify(struct
> > ttm_buffer_object *ttm_bo)
> >  	}
> >  	dma_fence_put(replacement);
> >  
> > -	dma_resv_unlock(ttm_bo->base.resv);
> > +	dma_resv_unlock(&ttm_bo->base._resv);
> >  }
> >  
> >  static void xe_ttm_bo_delete_mem_notify(struct ttm_buffer_object
> > *ttm_bo)
> > -- 
> > 2.51.1
> > 


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm/xe: Drop preempt-fences when destroying imported dma-bufs.
  2025-12-17 20:51   ` Thomas Hellström
@ 2025-12-17 21:21     ` Matthew Brost
  2025-12-17 22:13       ` Matthew Brost
  0 siblings, 1 reply; 8+ messages in thread
From: Matthew Brost @ 2025-12-17 21:21 UTC (permalink / raw)
  To: Thomas Hellström; +Cc: intel-xe, stable

On Wed, Dec 17, 2025 at 09:51:38PM +0100, Thomas Hellström wrote:
> On Wed, 2025-12-17 at 12:18 -0800, Matthew Brost wrote:
> > On Wed, Dec 17, 2025 at 10:34:41AM +0100, Thomas Hellström wrote:
> > > When imported dma-bufs are destroyed, TTM is not fully
> > > individualizing the dma-resv, but it *is* copying the fences that
> > > need to be waited for before declaring idle. So in the case where
> > > the bo->resv != bo->_resv we can still drop the preempt-fences, but
> > > make sure we do that on bo->_resv which contains the fence-pointer
> > > copy.
> > > 
> > > In the case where the copying fails, bo->_resv will typically not
> > > contain any fences pointers at all, so there will be nothing to
> > > drop. In that case, TTM would have ensured all fences that would
> > > have been copied are signaled, including any remaining preempt
> > > fences.
> > > 
> > 
> > Is this enough, though? There seems to be some incongruence in TTM
> > regarding resv vs. _resv handling, which still looks problematic.
> > 
> > For example:
> > 
> > - ttm_bo_flush_all_fences operates on '_resv', which seems correct.
> 
> Yes, correct.
> 
> > 
> > - ttm_bo_delayed_delete waits on 'resv', which doesn’t seem right or
> > at 
> >   least I’m reasoning that preempt fences will get triggered there
> > too.
> 
> No it waits for _resv, but then locks resv (the shared lock) to be able
> to correctly release the attachments. So this appears correct to me.
> 

It does. Sorry I looking at 6.14 Ubuntu backport branch. It is wrong
there, but drm-tip looks correct.
 
> > 
> > - the test in ttm_bo_release for dma-resv being idle uses 'resv',
> > which
> >   also doesn't look right.
> 
> 		if (!dma_resv_test_signaled(&bo->base._resv,
> 					    DMA_RESV_USAGE_BOOKKEEP)
> ||
> 		    (want_init_on_free() && (bo->ttm != NULL)) ||
> 		    bo->type == ttm_bo_type_sg ||
> 		    !dma_resv_trylock(bo->base.resv)) {
> 
> Again, waiting for _resv but trylocking resv, which is the correct
> approach for sg bo's afaict.

Again same above, 6.14 Ubuntu backport branch has this wrong.

So again agree drm-tip looks correct.

> 
> > 
> > I suppose I can test this out since I have a solid test case and
> > report
> > back.
> 

Look like I'll need to pull in some TTM fixes in the 6.14 backport
branch to test this too. Sorry for the noise.

Matt

> Please do.
> Thanks,
> Thomas
> 
> 
> > 
> > Matt
> > 
> > > Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel
> > > GPUs")
> > > Cc: Matthew Brost <matthew.brost@intel.com>
> > > Cc: <stable@vger.kernel.org> # v6.8+
> > > Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > > ---
> > >  drivers/gpu/drm/xe/xe_bo.c | 15 ++++-----------
> > >  1 file changed, 4 insertions(+), 11 deletions(-)
> > > 
> > > diff --git a/drivers/gpu/drm/xe/xe_bo.c
> > > b/drivers/gpu/drm/xe/xe_bo.c
> > > index 6280e6a013ff..8b6474cd3eaf 100644
> > > --- a/drivers/gpu/drm/xe/xe_bo.c
> > > +++ b/drivers/gpu/drm/xe/xe_bo.c
> > > @@ -1526,7 +1526,7 @@ static bool
> > > xe_ttm_bo_lock_in_destructor(struct ttm_buffer_object *ttm_bo)
> > >  	 * always succeed here, as long as we hold the lru lock.
> > >  	 */
> > >  	spin_lock(&ttm_bo->bdev->lru_lock);
> > > -	locked = dma_resv_trylock(ttm_bo->base.resv);
> > > +	locked = dma_resv_trylock(&ttm_bo->base._resv);
> > >  	spin_unlock(&ttm_bo->bdev->lru_lock);
> > >  	xe_assert(xe, locked);
> > >  
> > > @@ -1546,13 +1546,6 @@ static void xe_ttm_bo_release_notify(struct
> > > ttm_buffer_object *ttm_bo)
> > >  	bo = ttm_to_xe_bo(ttm_bo);
> > >  	xe_assert(xe_bo_device(bo), !(bo->created &&
> > > kref_read(&ttm_bo->base.refcount)));
> > >  
> > > -	/*
> > > -	 * Corner case where TTM fails to allocate memory and this
> > > BOs resv
> > > -	 * still points the VMs resv
> > > -	 */
> > > -	if (ttm_bo->base.resv != &ttm_bo->base._resv)
> > > -		return;
> > > -
> > >  	if (!xe_ttm_bo_lock_in_destructor(ttm_bo))
> > >  		return;
> > >  
> > > @@ -1562,14 +1555,14 @@ static void xe_ttm_bo_release_notify(struct
> > > ttm_buffer_object *ttm_bo)
> > >  	 * TODO: Don't do this for external bos once we scrub them
> > > after
> > >  	 * unbind.
> > >  	 */
> > > -	dma_resv_for_each_fence(&cursor, ttm_bo->base.resv,
> > > +	dma_resv_for_each_fence(&cursor, &ttm_bo->base._resv,
> > >  				DMA_RESV_USAGE_BOOKKEEP, fence) {
> > >  		if (xe_fence_is_xe_preempt(fence) &&
> > >  		    !dma_fence_is_signaled(fence)) {
> > >  			if (!replacement)
> > >  				replacement =
> > > dma_fence_get_stub();
> > >  
> > > -			dma_resv_replace_fences(ttm_bo->base.resv,
> > > +			dma_resv_replace_fences(&ttm_bo-
> > > >base._resv,
> > >  						fence->context,
> > >  						replacement,
> > >  						DMA_RESV_USAGE_BOO
> > > KKEEP);
> > > @@ -1577,7 +1570,7 @@ static void xe_ttm_bo_release_notify(struct
> > > ttm_buffer_object *ttm_bo)
> > >  	}
> > >  	dma_fence_put(replacement);
> > >  
> > > -	dma_resv_unlock(ttm_bo->base.resv);
> > > +	dma_resv_unlock(&ttm_bo->base._resv);
> > >  }
> > >  
> > >  static void xe_ttm_bo_delete_mem_notify(struct ttm_buffer_object
> > > *ttm_bo)
> > > -- 
> > > 2.51.1
> > > 
> 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm/xe: Drop preempt-fences when destroying imported dma-bufs.
  2025-12-17 21:21     ` Matthew Brost
@ 2025-12-17 22:13       ` Matthew Brost
  0 siblings, 0 replies; 8+ messages in thread
From: Matthew Brost @ 2025-12-17 22:13 UTC (permalink / raw)
  To: Thomas Hellström; +Cc: intel-xe, stable

On Wed, Dec 17, 2025 at 01:21:35PM -0800, Matthew Brost wrote:
> On Wed, Dec 17, 2025 at 09:51:38PM +0100, Thomas Hellström wrote:
> > On Wed, 2025-12-17 at 12:18 -0800, Matthew Brost wrote:
> > > On Wed, Dec 17, 2025 at 10:34:41AM +0100, Thomas Hellström wrote:
> > > > When imported dma-bufs are destroyed, TTM is not fully
> > > > individualizing the dma-resv, but it *is* copying the fences that
> > > > need to be waited for before declaring idle. So in the case where
> > > > the bo->resv != bo->_resv we can still drop the preempt-fences, but
> > > > make sure we do that on bo->_resv which contains the fence-pointer
> > > > copy.
> > > > 
> > > > In the case where the copying fails, bo->_resv will typically not
> > > > contain any fences pointers at all, so there will be nothing to
> > > > drop. In that case, TTM would have ensured all fences that would
> > > > have been copied are signaled, including any remaining preempt
> > > > fences.
> > > > 
> > > 
> > > Is this enough, though? There seems to be some incongruence in TTM
> > > regarding resv vs. _resv handling, which still looks problematic.
> > > 
> > > For example:
> > > 
> > > - ttm_bo_flush_all_fences operates on '_resv', which seems correct.
> > 
> > Yes, correct.
> > 
> > > 
> > > - ttm_bo_delayed_delete waits on 'resv', which doesn’t seem right or
> > > at 
> > >   least I’m reasoning that preempt fences will get triggered there
> > > too.
> > 
> > No it waits for _resv, but then locks resv (the shared lock) to be able
> > to correctly release the attachments. So this appears correct to me.
> > 
> 
> It does. Sorry I looking at 6.14 Ubuntu backport branch. It is wrong
> there, but drm-tip looks correct.
>  
> > > 
> > > - the test in ttm_bo_release for dma-resv being idle uses 'resv',
> > > which
> > >   also doesn't look right.
> > 
> > 		if (!dma_resv_test_signaled(&bo->base._resv,
> > 					    DMA_RESV_USAGE_BOOKKEEP)
> > ||
> > 		    (want_init_on_free() && (bo->ttm != NULL)) ||
> > 		    bo->type == ttm_bo_type_sg ||
> > 		    !dma_resv_trylock(bo->base.resv)) {
> > 
> > Again, waiting for _resv but trylocking resv, which is the correct
> > approach for sg bo's afaict.
> 
> Again same above, 6.14 Ubuntu backport branch has this wrong.
> 
> So again agree drm-tip looks correct.
> 
> > 
> > > 
> > > I suppose I can test this out since I have a solid test case and
> > > report
> > > back.
> > 
> 
> Look like I'll need to pull in some TTM fixes in the 6.14 backport
> branch to test this too. Sorry for the noise.
> 
> Matt
> 
> > Please do.

This looks to have resolved the issue. Thanks!

With that:
Tested-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>

> > Thanks,
> > Thomas
> > 
> > 
> > > 
> > > Matt
> > > 
> > > > Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel
> > > > GPUs")
> > > > Cc: Matthew Brost <matthew.brost@intel.com>
> > > > Cc: <stable@vger.kernel.org> # v6.8+
> > > > Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > > > ---
> > > >  drivers/gpu/drm/xe/xe_bo.c | 15 ++++-----------
> > > >  1 file changed, 4 insertions(+), 11 deletions(-)
> > > > 
> > > > diff --git a/drivers/gpu/drm/xe/xe_bo.c
> > > > b/drivers/gpu/drm/xe/xe_bo.c
> > > > index 6280e6a013ff..8b6474cd3eaf 100644
> > > > --- a/drivers/gpu/drm/xe/xe_bo.c
> > > > +++ b/drivers/gpu/drm/xe/xe_bo.c
> > > > @@ -1526,7 +1526,7 @@ static bool
> > > > xe_ttm_bo_lock_in_destructor(struct ttm_buffer_object *ttm_bo)
> > > >  	 * always succeed here, as long as we hold the lru lock.
> > > >  	 */
> > > >  	spin_lock(&ttm_bo->bdev->lru_lock);
> > > > -	locked = dma_resv_trylock(ttm_bo->base.resv);
> > > > +	locked = dma_resv_trylock(&ttm_bo->base._resv);
> > > >  	spin_unlock(&ttm_bo->bdev->lru_lock);
> > > >  	xe_assert(xe, locked);
> > > >  
> > > > @@ -1546,13 +1546,6 @@ static void xe_ttm_bo_release_notify(struct
> > > > ttm_buffer_object *ttm_bo)
> > > >  	bo = ttm_to_xe_bo(ttm_bo);
> > > >  	xe_assert(xe_bo_device(bo), !(bo->created &&
> > > > kref_read(&ttm_bo->base.refcount)));
> > > >  
> > > > -	/*
> > > > -	 * Corner case where TTM fails to allocate memory and this
> > > > BOs resv
> > > > -	 * still points the VMs resv
> > > > -	 */
> > > > -	if (ttm_bo->base.resv != &ttm_bo->base._resv)
> > > > -		return;
> > > > -
> > > >  	if (!xe_ttm_bo_lock_in_destructor(ttm_bo))
> > > >  		return;
> > > >  
> > > > @@ -1562,14 +1555,14 @@ static void xe_ttm_bo_release_notify(struct
> > > > ttm_buffer_object *ttm_bo)
> > > >  	 * TODO: Don't do this for external bos once we scrub them
> > > > after
> > > >  	 * unbind.
> > > >  	 */
> > > > -	dma_resv_for_each_fence(&cursor, ttm_bo->base.resv,
> > > > +	dma_resv_for_each_fence(&cursor, &ttm_bo->base._resv,
> > > >  				DMA_RESV_USAGE_BOOKKEEP, fence) {
> > > >  		if (xe_fence_is_xe_preempt(fence) &&
> > > >  		    !dma_fence_is_signaled(fence)) {
> > > >  			if (!replacement)
> > > >  				replacement =
> > > > dma_fence_get_stub();
> > > >  
> > > > -			dma_resv_replace_fences(ttm_bo->base.resv,
> > > > +			dma_resv_replace_fences(&ttm_bo-
> > > > >base._resv,
> > > >  						fence->context,
> > > >  						replacement,
> > > >  						DMA_RESV_USAGE_BOO
> > > > KKEEP);
> > > > @@ -1577,7 +1570,7 @@ static void xe_ttm_bo_release_notify(struct
> > > > ttm_buffer_object *ttm_bo)
> > > >  	}
> > > >  	dma_fence_put(replacement);
> > > >  
> > > > -	dma_resv_unlock(ttm_bo->base.resv);
> > > > +	dma_resv_unlock(&ttm_bo->base._resv);
> > > >  }
> > > >  
> > > >  static void xe_ttm_bo_delete_mem_notify(struct ttm_buffer_object
> > > > *ttm_bo)
> > > > -- 
> > > > 2.51.1
> > > > 
> > 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✗ Xe.CI.Full: failure for drm/xe: Drop preempt-fences when destroying imported dma-bufs.
  2025-12-17  9:34 [PATCH] drm/xe: Drop preempt-fences when destroying imported dma-bufs Thomas Hellström
                   ` (2 preceding siblings ...)
  2025-12-17 20:18 ` [PATCH] " Matthew Brost
@ 2025-12-18  8:09 ` Patchwork
  3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-12-18  8:09 UTC (permalink / raw)
  To: Thomas Hellström; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 97603 bytes --]

== Series Details ==

Series: drm/xe: Drop preempt-fences when destroying imported dma-bufs.
URL   : https://patchwork.freedesktop.org/series/159143/
State : failure

== Summary ==

CI Bug Log - changes from xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0_FULL -> xe-pw-159143v1_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-159143v1_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-159143v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-159143v1_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
    - shard-bmg:          [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render:
    - shard-lnl:          [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][5]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_vblank@wait-forked@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][6] +2 other tests fail
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@kms_vblank@wait-forked@pipe-a-dp-2.html

  
#### Warnings ####

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-bmg:          [SKIP][7] ([Intel XE#2934] / [Intel XE#6590]) -> [SKIP][8]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-3/igt@kms_joiner@basic-force-ultra-joiner.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_vblank@wait-forked:
    - shard-bmg:          [SKIP][9] ([Intel XE#6703]) -> [FAIL][10] +1 other test fail
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_vblank@wait-forked.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@kms_vblank@wait-forked.html

  
Known issues
------------

  Here are the changes found in xe-pw-159143v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@hotrebind:
    - shard-bmg:          [PASS][11] -> [SKIP][12] ([Intel XE#6779])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@core_hotunplug@hotrebind.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@core_hotunplug@hotrebind.html

  * igt@device_reset@unbind-reset-rebind:
    - shard-bmg:          [PASS][13] -> [SKIP][14] ([Intel XE#6815])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@device_reset@unbind-reset-rebind.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@device_reset@unbind-reset-rebind.html

  * igt@intel_hwmon@hwmon-write:
    - shard-bmg:          [PASS][15] -> [SKIP][16] ([Intel XE#5177] / [Intel XE#6703])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@intel_hwmon@hwmon-write.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@intel_hwmon@hwmon-write.html

  * igt@kms_3d@basic:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#6011])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-4/igt@kms_3d@basic.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2327])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#1124]) +2 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_bw@linear-tiling-4-displays-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#367]) +2 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#2887]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2887]) +10 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2652] / [Intel XE#787]) +21 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#3432])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2325])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2252]) +3 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html

  * igt@kms_content_protection@srm@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][27] ([Intel XE#1178]) +3 other tests fail
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@kms_content_protection@srm@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2320]) +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-64x21.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-bmg:          [PASS][29] -> [SKIP][30] ([Intel XE#2291]) +3 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#4302])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2244]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#776])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#1421])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-3/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2316]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-bmg:          [PASS][36] -> [SKIP][37] ([Intel XE#2316]) +2 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
    - shard-lnl:          [PASS][38] -> [FAIL][39] ([Intel XE#301] / [Intel XE#3149])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#2293]) +8 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#2311]) +14 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#4141]) +7 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#656]) +2 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#651]) +2 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2313]) +11 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2312]) +9 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [ABORT][48] ([Intel XE#6740]) +1 other test abort
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-7/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2393])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#5020])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-4/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#6886]) +12 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@package-g7:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#6693])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_pm_rpm@package-g7.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-bmg:          [PASS][54] -> [SKIP][55] ([Intel XE#6693]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_pm_rpm@universal-planes-dpms.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#1406] / [Intel XE#6703]) +4 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#1406] / [Intel XE#2387])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@kms_psr@fbc-psr-suspend.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2330])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_sequence@get-busy@pipe-b-dp-2:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][62] ([Intel XE#5254])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_sequence@get-busy@pipe-b-dp-2.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [PASS][63] -> [SKIP][64] ([Intel XE#1435])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@kms_setmode@clone-exclusive-crtc.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#6503])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#1499]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-7/igt@kms_vrr@flip-basic.html

  * igt@xe_configfs@survivability-mode:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#6010])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-7/igt@xe_configfs@survivability-mode.html

  * igt@xe_eudebug@discovery-empty:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#4837]) +4 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@xe_eudebug@discovery-empty.html

  * igt@xe_eudebug@discovery-empty-clients:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#4837])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-4/igt@xe_eudebug@discovery-empty-clients.html

  * igt@xe_eudebug_online@interrupt-all:
    - shard-lnl:          NOTRUN -> [SKIP][70] ([Intel XE#4837] / [Intel XE#6665])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-3/igt@xe_eudebug_online@interrupt-all.html

  * igt@xe_eudebug_online@pagefault-write-stress:
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#6665] / [Intel XE#6681])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@xe_eudebug_online@pagefault-write-stress.html

  * igt@xe_eudebug_online@single-step:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@xe_eudebug_online@single-step.html

  * igt@xe_evict@evict-beng-small-external-cm:
    - shard-lnl:          NOTRUN -> [SKIP][73] ([Intel XE#688])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-3/igt@xe_evict@evict-beng-small-external-cm.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#2322]) +3 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-null:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#1392])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-null.html

  * igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race:
    - shard-bmg:          [PASS][76] -> [SKIP][77] ([Intel XE#6703]) +490 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-basic-smem:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#6874])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-2/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-basic-smem.html

  * igt@xe_exec_multi_queue@two-queues-priority:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#6874]) +16 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@xe_exec_multi_queue@two-queues-priority.html

  * igt@xe_exec_system_allocator@many-stride-malloc-prefetch:
    - shard-bmg:          [PASS][80] -> [WARN][81] ([Intel XE#5786])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html

  * igt@xe_exec_system_allocator@process-many-large-new-nomemset:
    - shard-bmg:          [PASS][82] -> [SKIP][83] ([Intel XE#6557] / [Intel XE#6703]) +8 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@xe_exec_system_allocator@process-many-large-new-nomemset.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-new-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-mmap-free-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#4943]) +11 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#4943]) +3 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][86] ([Intel XE#6557] / [Intel XE#6703]) +4 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch.html

  * igt@xe_live_ktest@xe_bo:
    - shard-bmg:          [PASS][87] -> [SKIP][88] ([Intel XE#2229]) +1 other test skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@xe_live_ktest@xe_bo.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_live_ktest@xe_bo.html

  * igt@xe_pat@pat-index-xelp:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#2245])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@xe_pat@pat-index-xelp.html

  * igt@xe_peer2peer@write:
    - shard-bmg:          NOTRUN -> [SKIP][90] ([Intel XE#2427])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@xe_peer2peer@write.html

  * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0:
    - shard-lnl:          [PASS][91] -> [FAIL][92] ([Intel XE#6251])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#6703]) +240 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-invalid-size:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#944]) +1 other test skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@xe_query@multigpu-query-invalid-size.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unplug-rescan:
    - shard-bmg:          [SKIP][95] ([Intel XE#6779]) -> [PASS][96]
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@core_hotunplug@unplug-rescan.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@core_hotunplug@unplug-rescan.html

  * igt@core_setmaster@master-drop-set-shared-fd:
    - shard-bmg:          [SKIP][97] -> [PASS][98]
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@core_setmaster@master-drop-set-shared-fd.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@core_setmaster@master-drop-set-shared-fd.html

  * igt@fbdev@eof:
    - shard-bmg:          [SKIP][99] ([Intel XE#2134]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@fbdev@eof.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@fbdev@eof.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-bmg:          [SKIP][101] ([Intel XE#2316]) -> [PASS][102] +3 other tests pass
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [FAIL][103] ([Intel XE#301]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip@flip-vs-suspend@c-hdmi-a3:
    - shard-bmg:          [INCOMPLETE][105] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][106] +1 other test pass
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-3/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-bmg:          [SKIP][107] ([Intel XE#6693]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-lnl:          [SKIP][109] ([Intel XE#1406] / [Intel XE#4692]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-lnl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@testdisplay:
    - shard-bmg:          [ABORT][111] -> [PASS][112]
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@testdisplay.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@testdisplay.html

  * igt@xe_drm_fdinfo@parallel-utilization-single-idle:
    - shard-bmg:          [SKIP][113] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][114] +2 other tests pass
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_drm_fdinfo@parallel-utilization-single-idle.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@xe_drm_fdinfo@parallel-utilization-single-idle.html

  * igt@xe_exec_basic@many-execqueues-null-defer-bind:
    - shard-bmg:          [SKIP][115] ([Intel XE#6703]) -> [PASS][116] +330 other tests pass
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_exec_basic@many-execqueues-null-defer-bind.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@xe_exec_basic@many-execqueues-null-defer-bind.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
    - shard-lnl:          [FAIL][117] ([Intel XE#5625]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html

  * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0:
    - shard-lnl:          [FAIL][119] ([Intel XE#6251]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-bmg:          [SKIP][121] ([Intel XE#6703]) -> [SKIP][122] ([Intel XE#2233])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-bmg:          [SKIP][123] ([Intel XE#2370]) -> [SKIP][124] ([Intel XE#6703])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-bmg:          [SKIP][125] ([Intel XE#2327]) -> [SKIP][126] ([Intel XE#6703]) +6 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          [SKIP][127] ([Intel XE#2328]) -> [SKIP][128] ([Intel XE#6703])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-bmg:          [SKIP][129] ([Intel XE#607]) -> [SKIP][130] ([Intel XE#6703])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [SKIP][131] ([Intel XE#6703]) -> [SKIP][132] ([Intel XE#1124]) +6 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][133] ([Intel XE#1124]) -> [SKIP][134] ([Intel XE#6703]) +7 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [SKIP][135] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][136] ([Intel XE#6703])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-bmg:          [SKIP][137] ([Intel XE#6703]) -> [SKIP][138] ([Intel XE#2314] / [Intel XE#2894])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [SKIP][139] ([Intel XE#367]) -> [SKIP][140] ([Intel XE#6703]) +1 other test skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-bmg:          [SKIP][141] ([Intel XE#6703]) -> [SKIP][142] ([Intel XE#367])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
    - shard-bmg:          [SKIP][143] ([Intel XE#6703]) -> [SKIP][144] ([Intel XE#2887]) +5 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
    - shard-bmg:          [SKIP][145] ([Intel XE#2887]) -> [SKIP][146] ([Intel XE#6703]) +9 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][147] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][148] ([Intel XE#6703])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][149] ([Intel XE#6703]) -> [SKIP][150] ([Intel XE#2652] / [Intel XE#787])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          [SKIP][151] ([Intel XE#6703]) -> [SKIP][152] ([Intel XE#3432]) +1 other test skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-bmg:          [SKIP][153] ([Intel XE#3432]) -> [SKIP][154] ([Intel XE#6703]) +3 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-bmg:          [SKIP][155] ([Intel XE#2724]) -> [SKIP][156] ([Intel XE#6703])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-1/igt@kms_cdclk@plane-scaling.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-bmg:          [SKIP][157] ([Intel XE#6703]) -> [SKIP][158] ([Intel XE#2325]) +2 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_chamelium_color@ctm-blue-to-red.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@degamma:
    - shard-bmg:          [SKIP][159] ([Intel XE#2325]) -> [SKIP][160] ([Intel XE#6703]) +1 other test skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@kms_chamelium_color@degamma.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_edid@dp-edid-read:
    - shard-bmg:          [SKIP][161] ([Intel XE#2252]) -> [SKIP][162] ([Intel XE#6703]) +8 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-read.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-read.html

  * igt@kms_chamelium_hpd@dp-hpd-storm-disable:
    - shard-bmg:          [SKIP][163] ([Intel XE#6703]) -> [SKIP][164] ([Intel XE#2252]) +4 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          [SKIP][165] ([Intel XE#2341]) -> [SKIP][166] ([Intel XE#6703]) +1 other test skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@kms_content_protection@content-type-change.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-bmg:          [SKIP][167] ([Intel XE#2390]) -> [SKIP][168] ([Intel XE#6703]) +1 other test skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-1.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-bmg:          [SKIP][169] ([Intel XE#2320]) -> [SKIP][170] ([Intel XE#6703]) +5 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-128x42.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_crc@cursor-offscreen-256x85:
    - shard-bmg:          [SKIP][171] ([Intel XE#6703]) -> [SKIP][172] ([Intel XE#2320]) +2 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-256x85.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-256x85.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-bmg:          [SKIP][173] ([Intel XE#2321]) -> [SKIP][174] ([Intel XE#6703]) +2 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
    - shard-bmg:          [SKIP][175] ([Intel XE#2291]) -> [SKIP][176] ([Intel XE#6703]) +1 other test skip
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [SKIP][177] ([Intel XE#6703]) -> [FAIL][178] ([Intel XE#6715])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][179] ([Intel XE#6703]) -> [SKIP][180] ([Intel XE#1508])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][181] ([Intel XE#4210]) -> [SKIP][182] ([Intel XE#6703])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          [SKIP][183] ([Intel XE#4331]) -> [SKIP][184] ([Intel XE#6703])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-basic:
    - shard-bmg:          [SKIP][185] ([Intel XE#2244]) -> [SKIP][186] ([Intel XE#6703])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_dsc@dsc-basic.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_dsc@dsc-basic.html

  * igt@kms_feature_discovery@chamelium:
    - shard-bmg:          [SKIP][187] ([Intel XE#2372]) -> [SKIP][188] ([Intel XE#6703])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@kms_feature_discovery@chamelium.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-3x:
    - shard-bmg:          [SKIP][189] ([Intel XE#2373]) -> [SKIP][190] ([Intel XE#6703])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@kms_feature_discovery@display-3x.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
    - shard-bmg:          [SKIP][191] ([Intel XE#2316]) -> [SKIP][192] ([Intel XE#6703]) +2 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-bmg:          [SKIP][193] ([Intel XE#6703]) -> [SKIP][194] ([Intel XE#2316]) +3 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip@absolute-wf_vblank-interruptible:
    - shard-bmg:          [FAIL][195] ([Intel XE#3149] / [Intel XE#5352]) -> [SKIP][196] ([Intel XE#6703])
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@kms_flip@absolute-wf_vblank-interruptible.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_flip@absolute-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-lnl:          [FAIL][197] ([Intel XE#301]) -> [FAIL][198] ([Intel XE#301] / [Intel XE#3149])
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-bmg:          [SKIP][199] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][200] ([Intel XE#6703]) +3 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          [SKIP][201] ([Intel XE#2380]) -> [SKIP][202] ([Intel XE#6703])
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
    - shard-bmg:          [SKIP][203] ([Intel XE#6703]) -> [SKIP][204] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][205] ([Intel XE#6703]) -> [SKIP][206] ([Intel XE#2312]) +6 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][207] ([Intel XE#2312]) -> [SKIP][208] ([Intel XE#6703]) +13 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][209] ([Intel XE#2312]) -> [SKIP][210] ([Intel XE#2311]) +5 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
    - shard-bmg:          [SKIP][211] ([Intel XE#6703]) -> [SKIP][212] ([Intel XE#2311]) +11 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
    - shard-bmg:          [SKIP][213] ([Intel XE#2311]) -> [SKIP][214] ([Intel XE#6703]) +20 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][215] ([Intel XE#2312]) -> [SKIP][216] ([Intel XE#4141]) +2 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][217] ([Intel XE#4141]) -> [SKIP][218] ([Intel XE#2312])
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][219] ([Intel XE#4141]) -> [SKIP][220] ([Intel XE#6703]) +9 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-linear:
    - shard-bmg:          [SKIP][221] ([Intel XE#6703]) -> [SKIP][222] ([Intel XE#4141]) +6 other tests skip
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][223] ([Intel XE#2311]) -> [SKIP][224] ([Intel XE#2312]) +4 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
    - shard-bmg:          [SKIP][225] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][226] ([Intel XE#2311])
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][227] ([Intel XE#2313]) -> [SKIP][228] ([Intel XE#6557] / [Intel XE#6703])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][229] ([Intel XE#2313]) -> [SKIP][230] ([Intel XE#6703]) +15 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][231] ([Intel XE#2313]) -> [SKIP][232] ([Intel XE#2312]) +5 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][233] ([Intel XE#6703]) -> [SKIP][234] ([Intel XE#2313]) +13 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][235] ([Intel XE#2312]) -> [SKIP][236] ([Intel XE#2313]) +7 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-bmg:          [ABORT][237] ([Intel XE#6740]) -> [SKIP][238] ([Intel XE#6703]) +1 other test skip
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@kms_hdr@bpc-switch-dpms.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][239] ([Intel XE#3544]) -> [SKIP][240] ([Intel XE#3374] / [Intel XE#3544])
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-lnl:          [SKIP][241] ([Intel XE#2925] / [Intel XE#346]) -> [SKIP][242] ([Intel XE#6901]) +1 other test skip
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-lnl-4/igt@kms_joiner@basic-big-joiner.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-2/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-lnl:          [SKIP][243] ([Intel XE#2925]) -> [SKIP][244] ([Intel XE#4298])
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-lnl-5/igt@kms_joiner@basic-max-non-joiner.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-8/igt@kms_joiner@basic-max-non-joiner.html
    - shard-bmg:          [SKIP][245] ([Intel XE#6590]) -> [SKIP][246] ([Intel XE#4298])
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@kms_joiner@basic-max-non-joiner.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [SKIP][247] ([Intel XE#3012] / [Intel XE#6590]) -> [SKIP][248] ([Intel XE#6703])
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          [SKIP][249] ([Intel XE#2934] / [Intel XE#6590]) -> [SKIP][250] ([Intel XE#6703])
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
    - shard-lnl:          [SKIP][251] ([Intel XE#2925]) -> [SKIP][252] ([Intel XE#6900]) +1 other test skip
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-lnl-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-lnl:          [SKIP][253] ([Intel XE#2925] / [Intel XE#2927]) -> [SKIP][254] ([Intel XE#6900])
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-lnl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-lnl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
    - shard-bmg:          [SKIP][255] ([Intel XE#2927] / [Intel XE#6590]) -> [SKIP][256] ([Intel XE#6703])
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          [SKIP][257] ([Intel XE#2486]) -> [SKIP][258] ([Intel XE#6703])
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-1/igt@kms_panel_fitting@legacy.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          [SKIP][259] ([Intel XE#2393]) -> [SKIP][260] ([Intel XE#6703])
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@kms_plane_lowres@tiling-yf.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][261] ([Intel XE#4596]) -> [SKIP][262] ([Intel XE#6703])
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-y.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
    - shard-bmg:          [SKIP][263] ([Intel XE#6703]) -> [SKIP][264] ([Intel XE#6886]) +1 other test skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-bmg:          [SKIP][265] ([Intel XE#6703]) -> [SKIP][266] ([Intel XE#870])
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_pm_backlight@bad-brightness.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          [SKIP][267] ([Intel XE#2499]) -> [SKIP][268] ([Intel XE#6703])
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@kms_pm_lpsp@kms-lpsp.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-bmg:          [SKIP][269] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][270] ([Intel XE#6693])
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_pm_rpm@dpms-lpsp.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-bmg:          [SKIP][271] ([Intel XE#6693]) -> [DMESG-WARN][272] ([Intel XE#3428])
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_pm_rpm@system-suspend-modeset.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
    - shard-bmg:          [SKIP][273] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][274] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
    - shard-bmg:          [SKIP][275] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][276] ([Intel XE#1406] / [Intel XE#6703]) +9 other tests skip
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-bmg:          [SKIP][277] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][278] ([Intel XE#1406] / [Intel XE#2387])
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@psr2-no-drrs:
    - shard-bmg:          [SKIP][279] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][280] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_psr@psr2-no-drrs.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@kms_psr@psr2-no-drrs.html

  * igt@kms_psr@psr2-sprite-blt:
    - shard-bmg:          [SKIP][281] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][282] ([Intel XE#1406] / [Intel XE#6703]) +9 other tests skip
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@kms_psr@psr2-sprite-blt.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_psr@psr2-sprite-blt.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          [SKIP][283] ([Intel XE#1406] / [Intel XE#2414]) -> [SKIP][284] ([Intel XE#1406] / [Intel XE#6703])
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          [SKIP][285] ([Intel XE#2330]) -> [SKIP][286] ([Intel XE#6703]) +1 other test skip
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-bmg:          [SKIP][287] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][288] ([Intel XE#6703]) +1 other test skip
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-bmg:          [SKIP][289] ([Intel XE#6703]) -> [SKIP][290] ([Intel XE#3414] / [Intel XE#3904])
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_sequence@get-busy:
    - shard-bmg:          [SKIP][291] ([Intel XE#6703]) -> [DMESG-WARN][292] ([Intel XE#5254])
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_sequence@get-busy.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@kms_sequence@get-busy.html

  * igt@kms_sharpness_filter@filter-formats:
    - shard-bmg:          [SKIP][293] ([Intel XE#6503]) -> [SKIP][294] ([Intel XE#6703]) +3 other tests skip
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-3/igt@kms_sharpness_filter@filter-formats.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_sharpness_filter@filter-formats.html

  * igt@kms_sharpness_filter@invalid-filter-with-plane:
    - shard-bmg:          [SKIP][295] ([Intel XE#6703]) -> [SKIP][296] ([Intel XE#6503]) +1 other test skip
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-plane.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@kms_sharpness_filter@invalid-filter-with-plane.html

  * igt@kms_vrr@cmrr:
    - shard-bmg:          [SKIP][297] ([Intel XE#2168]) -> [SKIP][298] ([Intel XE#6703])
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@kms_vrr@cmrr.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_vrr@cmrr.html

  * igt@kms_vrr@flip-dpms:
    - shard-bmg:          [SKIP][299] ([Intel XE#6703]) -> [SKIP][300] ([Intel XE#1499])
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@kms_vrr@flip-dpms.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-bmg:          [SKIP][301] ([Intel XE#1499]) -> [SKIP][302] ([Intel XE#6703])
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-drrs.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@xe_eudebug@basic-vm-access-userptr:
    - shard-bmg:          [SKIP][303] ([Intel XE#4837]) -> [SKIP][304] ([Intel XE#6703]) +6 other tests skip
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@xe_eudebug@basic-vm-access-userptr.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_eudebug@basic-vm-access-userptr.html

  * igt@xe_eudebug@basic-vm-bind-extended:
    - shard-bmg:          [SKIP][305] ([Intel XE#6703]) -> [SKIP][306] ([Intel XE#4837]) +2 other tests skip
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-extended.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-extended.html

  * igt@xe_eudebug_online@basic-breakpoint:
    - shard-bmg:          [SKIP][307] ([Intel XE#6703]) -> [SKIP][308] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_eudebug_online@basic-breakpoint.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@xe_eudebug_online@basic-breakpoint.html

  * igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
    - shard-bmg:          [SKIP][309] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][310] ([Intel XE#6703]) +5 other tests skip
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-1/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html

  * igt@xe_eudebug_online@pagefault-read-stress:
    - shard-bmg:          [SKIP][311] ([Intel XE#6703]) -> [SKIP][312] ([Intel XE#6665] / [Intel XE#6681])
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_eudebug_online@pagefault-read-stress.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@xe_eudebug_online@pagefault-read-stress.html

  * igt@xe_eudebug_sriov@deny-eudebug:
    - shard-bmg:          [SKIP][313] ([Intel XE#5793]) -> [SKIP][314] ([Intel XE#6703])
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-1/igt@xe_eudebug_sriov@deny-eudebug.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_eudebug_sriov@deny-eudebug.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-bmg:          [SKIP][315] ([Intel XE#2322]) -> [SKIP][316] ([Intel XE#6703]) +5 other tests skip
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
    - shard-bmg:          [SKIP][317] ([Intel XE#6703]) -> [SKIP][318] ([Intel XE#2322]) +3 other tests skip
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic:
    - shard-bmg:          [SKIP][319] ([Intel XE#6703]) -> [SKIP][320] ([Intel XE#6874]) +15 other tests skip
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic.html

  * igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate:
    - shard-bmg:          [SKIP][321] ([Intel XE#6874]) -> [SKIP][322] ([Intel XE#6703]) +26 other tests skip
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html

  * igt@xe_exec_system_allocator@many-64k-mmap-huge:
    - shard-bmg:          [SKIP][323] ([Intel XE#6703]) -> [SKIP][324] ([Intel XE#5007]) +1 other test skip
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-mmap-huge.html

  * igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
    - shard-bmg:          [SKIP][325] ([Intel XE#5007]) -> [SKIP][326] ([Intel XE#6703]) +1 other test skip
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html

  * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
    - shard-bmg:          [SKIP][327] ([Intel XE#4943]) -> [SKIP][328] ([Intel XE#6703]) +13 other tests skip
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-3/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-new-huge:
    - shard-bmg:          [SKIP][329] ([Intel XE#6703]) -> [SKIP][330] ([Intel XE#4943]) +14 other tests skip
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-new-huge.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-new-huge.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-bmg:          [SKIP][331] ([Intel XE#6703]) -> [ABORT][332] ([Intel XE#5466])
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [SKIP][339], [PASS][340], [ABORT][341], [ABORT][342], [PASS][343], [ABORT][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]) ([Intel XE#2457] / [Intel XE#6887]) -> ([PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [SKIP][376], [PASS][377], [ABORT][378], [ABORT][379], [ABORT][380], [PASS][381], [PASS][382]) ([Intel XE#2457] / [Intel XE#6818])
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-1/igt@xe_module_load@load.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_module_load@load.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@xe_module_load@load.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@xe_module_load@load.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@xe_module_load@load.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@xe_module_load@load.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@xe_module_load@load.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-3/igt@xe_module_load@load.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-6/igt@xe_module_load@load.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-6/igt@xe_module_load@load.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-7/igt@xe_module_load@load.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-6/igt@xe_module_load@load.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-3/igt@xe_module_load@load.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@xe_module_load@load.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@xe_module_load@load.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_module_load@load.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@xe_module_load@load.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_module_load@load.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_module_load@load.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_module_load@load.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@xe_module_load@load.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-1/igt@xe_module_load@load.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@xe_module_load@load.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@xe_module_load@load.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-2/igt@xe_module_load@load.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@xe_module_load@load.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@xe_module_load@load.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@xe_module_load@load.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@xe_module_load@load.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_module_load@load.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_module_load@load.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_module_load@load.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@xe_module_load@load.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@xe_module_load@load.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@xe_module_load@load.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_module_load@load.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_module_load@load.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@xe_module_load@load.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@xe_module_load@load.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-1/igt@xe_module_load@load.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_module_load@load.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-3/igt@xe_module_load@load.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@xe_module_load@load.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_module_load@load.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@xe_module_load@load.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-6/igt@xe_module_load@load.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-6/igt@xe_module_load@load.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-6/igt@xe_module_load@load.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-7/igt@xe_module_load@load.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-7/igt@xe_module_load@load.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-bmg:          [SKIP][383] ([Intel XE#6703]) -> [SKIP][384] ([Intel XE#2236])
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_pat@pat-index-xelpg.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@d3cold-i2c:
    - shard-bmg:          [SKIP][385] ([Intel XE#6703]) -> [SKIP][386] ([Intel XE#5694])
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_pm@d3cold-i2c.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-8/igt@xe_pm@d3cold-i2c.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-bmg:          [SKIP][387] ([Intel XE#2284]) -> [SKIP][388] ([Intel XE#6703])
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-1/igt@xe_pm@d3cold-mmap-vram.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-bmg:          [SKIP][389] ([Intel XE#6703]) -> [SKIP][390] ([Intel XE#2284])
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_pm@s2idle-d3cold-basic-exec.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-bmg:          [SKIP][391] ([Intel XE#4733]) -> [SKIP][392] ([Intel XE#6703]) +2 other tests skip
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-8/igt@xe_pxp@display-pxp-fb.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_pxp@pxp-optout:
    - shard-bmg:          [SKIP][393] ([Intel XE#6703]) -> [SKIP][394] ([Intel XE#4733]) +1 other test skip
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_pxp@pxp-optout.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-4/igt@xe_pxp@pxp-optout.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - shard-bmg:          [SKIP][395] ([Intel XE#944]) -> [SKIP][396] ([Intel XE#6703]) +1 other test skip
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-4/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-5/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  * igt@xe_query@multigpu-query-pxp-status:
    - shard-bmg:          [SKIP][397] ([Intel XE#6703]) -> [SKIP][398] ([Intel XE#944])
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/shard-bmg-5/igt@xe_query@multigpu-query-pxp-status.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/shard-bmg-2/igt@xe_query@multigpu-query-pxp-status.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [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#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5177
  [Intel XE#5254]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5254
  [Intel XE#5352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5352
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
  [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
  [Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
  [Intel XE#6011]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6011
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6590
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
  [Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715
  [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
  [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
  [Intel XE#6815]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6815
  [Intel XE#6818]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6818
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6887
  [Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [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#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


Build changes
-------------

  * IGT: IGT_8668 -> IGT_8669
  * Linux: xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0 -> xe-pw-159143v1

  IGT_8668: 906681747a312ef11ef9af8ab1fa6eff28b4cbd0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8669: 319db2ffba419f9711acc72895f065a818905efa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0: 2eb2f8746a879f1c0e4c56b715c179424dafd8e0
  xe-pw-159143v1: 159143v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159143v1/index.html

[-- Attachment #2: Type: text/html, Size: 121424 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2025-12-18  8:09 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-17  9:34 [PATCH] drm/xe: Drop preempt-fences when destroying imported dma-bufs Thomas Hellström
2025-12-17 11:04 ` ✓ CI.KUnit: success for " Patchwork
2025-12-17 12:05 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-17 20:18 ` [PATCH] " Matthew Brost
2025-12-17 20:51   ` Thomas Hellström
2025-12-17 21:21     ` Matthew Brost
2025-12-17 22:13       ` Matthew Brost
2025-12-18  8:09 ` ✗ Xe.CI.Full: failure for " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox