intel-xe.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only
@ 2025-08-27 10:10 Sanjay Yadav
  2025-08-27 10:18 ` ✓ CI.KUnit: success for " Patchwork
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Sanjay Yadav @ 2025-08-27 10:10 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.auld

In xe_migrate_copy(), when copy_only_ccs is true, we only need two
emit_pte() calls—one for the BO and one for the raw CCS storage.
However, the current implementation issues three emit_pte() calls,
resulting in an unnecessary PTE programming job.

This fix removes the redundant emit_pte() call to avoid programming
the same PTEs twice and reducing overhead during CCS-only migration.

Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
Suggested-by: Matthew Auld <matthew.auld@intel.com>
---
 drivers/gpu/drm/xe/xe_migrate.c | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
index ddfad7506a82..9541a8fe4637 100644
--- a/drivers/gpu/drm/xe/xe_migrate.c
+++ b/drivers/gpu/drm/xe/xe_migrate.c
@@ -843,11 +843,6 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
 					      &src_L0_ofs, &src_L0_pt, 0, 0,
 					      avail_pts);
 
-		pte_flags = dst_is_vram ? PTE_UPDATE_FLAG_IS_VRAM : 0;
-		batch_size += pte_update_size(m, pte_flags, dst, &dst_it, &src_L0,
-					      &dst_L0_ofs, &dst_L0_pt, 0,
-					      avail_pts, avail_pts);
-
 		if (copy_system_ccs) {
 			xe_assert(xe, type_device);
 			ccs_size = xe_device_ccs_bytes(xe, src_L0);
@@ -855,7 +850,14 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
 						      &ccs_ofs, &ccs_pt, 0,
 						      2 * avail_pts,
 						      avail_pts);
+			dst_L0_ofs = src_L0_ofs;
 			xe_assert(xe, IS_ALIGNED(ccs_it.start, PAGE_SIZE));
+		} else {
+			pte_flags = dst_is_vram ? PTE_UPDATE_FLAG_IS_VRAM : 0;
+			batch_size += pte_update_size(m, pte_flags, dst,
+					&dst_it, &src_L0,
+					&dst_L0_ofs, &dst_L0_pt,
+					0, avail_pts, avail_pts);
 		}
 
 		/* Add copy commands size here */
@@ -876,13 +878,12 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
 
 		if (dst_is_vram && xe_migrate_allow_identity(src_L0, &dst_it))
 			xe_res_next(&dst_it, src_L0);
+		else if (copy_system_ccs)
+			emit_pte(m, bb, ccs_pt, false, false, &ccs_it, ccs_size, src);
 		else
 			emit_pte(m, bb, dst_L0_pt, dst_is_vram, copy_system_ccs,
 				 &dst_it, src_L0, dst);
 
-		if (copy_system_ccs)
-			emit_pte(m, bb, ccs_pt, false, false, &ccs_it, ccs_size, src);
-
 		bb->cs[bb->len++] = MI_BATCH_BUFFER_END;
 		update_idx = bb->len;
 
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only
  2025-08-27 10:10 [PATCH] drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only Sanjay Yadav
@ 2025-08-27 10:18 ` Patchwork
  2025-08-27 10:38 ` [PATCH] " Matthew Auld
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-08-27 10:18 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: intel-xe

== Series Details ==

Series: drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only
URL   : https://patchwork.freedesktop.org/series/153561/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[10:16:56] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:17:00] 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
[10:17:29] Starting KUnit Kernel (1/1)...
[10:17:29] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:17:29] ================== guc_buf (11 subtests) ===================
[10:17:29] [PASSED] test_smallest
[10:17:29] [PASSED] test_largest
[10:17:29] [PASSED] test_granular
[10:17:29] [PASSED] test_unique
[10:17:29] [PASSED] test_overlap
[10:17:29] [PASSED] test_reusable
[10:17:29] [PASSED] test_too_big
[10:17:29] [PASSED] test_flush
[10:17:29] [PASSED] test_lookup
[10:17:29] [PASSED] test_data
[10:17:29] [PASSED] test_class
[10:17:29] ===================== [PASSED] guc_buf =====================
[10:17:29] =================== guc_dbm (7 subtests) ===================
[10:17:29] [PASSED] test_empty
[10:17:29] [PASSED] test_default
[10:17:29] ======================== test_size  ========================
[10:17:29] [PASSED] 4
[10:17:29] [PASSED] 8
[10:17:29] [PASSED] 32
[10:17:29] [PASSED] 256
[10:17:29] ==================== [PASSED] test_size ====================
[10:17:29] ======================= test_reuse  ========================
[10:17:29] [PASSED] 4
[10:17:29] [PASSED] 8
[10:17:29] [PASSED] 32
[10:17:29] [PASSED] 256
[10:17:29] =================== [PASSED] test_reuse ====================
[10:17:29] =================== test_range_overlap  ====================
[10:17:29] [PASSED] 4
[10:17:29] [PASSED] 8
[10:17:29] [PASSED] 32
[10:17:29] [PASSED] 256
[10:17:29] =============== [PASSED] test_range_overlap ================
[10:17:29] =================== test_range_compact  ====================
[10:17:29] [PASSED] 4
[10:17:29] [PASSED] 8
[10:17:29] [PASSED] 32
[10:17:29] [PASSED] 256
[10:17:29] =============== [PASSED] test_range_compact ================
[10:17:29] ==================== test_range_spare  =====================
[10:17:29] [PASSED] 4
[10:17:29] [PASSED] 8
[10:17:29] [PASSED] 32
[10:17:29] [PASSED] 256
[10:17:29] ================ [PASSED] test_range_spare =================
[10:17:29] ===================== [PASSED] guc_dbm =====================
[10:17:29] =================== guc_idm (6 subtests) ===================
[10:17:29] [PASSED] bad_init
[10:17:29] [PASSED] no_init
[10:17:29] [PASSED] init_fini
[10:17:29] [PASSED] check_used
[10:17:29] [PASSED] check_quota
[10:17:29] [PASSED] check_all
[10:17:29] ===================== [PASSED] guc_idm =====================
[10:17:29] ================== no_relay (3 subtests) ===================
[10:17:29] [PASSED] xe_drops_guc2pf_if_not_ready
[10:17:29] [PASSED] xe_drops_guc2vf_if_not_ready
[10:17:29] [PASSED] xe_rejects_send_if_not_ready
[10:17:29] ==================== [PASSED] no_relay =====================
[10:17:29] ================== pf_relay (14 subtests) ==================
[10:17:29] [PASSED] pf_rejects_guc2pf_too_short
[10:17:29] [PASSED] pf_rejects_guc2pf_too_long
[10:17:29] [PASSED] pf_rejects_guc2pf_no_payload
[10:17:29] [PASSED] pf_fails_no_payload
[10:17:29] [PASSED] pf_fails_bad_origin
[10:17:29] [PASSED] pf_fails_bad_type
[10:17:29] [PASSED] pf_txn_reports_error
[10:17:29] [PASSED] pf_txn_sends_pf2guc
[10:17:29] [PASSED] pf_sends_pf2guc
[10:17:29] [SKIPPED] pf_loopback_nop
[10:17:29] [SKIPPED] pf_loopback_echo
[10:17:29] [SKIPPED] pf_loopback_fail
[10:17:29] [SKIPPED] pf_loopback_busy
[10:17:29] [SKIPPED] pf_loopback_retry
[10:17:29] ==================== [PASSED] pf_relay =====================
[10:17:29] ================== vf_relay (3 subtests) ===================
[10:17:29] [PASSED] vf_rejects_guc2vf_too_short
[10:17:29] [PASSED] vf_rejects_guc2vf_too_long
[10:17:29] [PASSED] vf_rejects_guc2vf_no_payload
[10:17:29] ==================== [PASSED] vf_relay =====================
[10:17:29] ===================== lmtt (1 subtest) =====================
[10:17:29] ======================== test_ops  =========================
[10:17:29] [PASSED] 2-level
[10:17:29] [PASSED] multi-level
[10:17:29] ==================== [PASSED] test_ops =====================
[10:17:29] ====================== [PASSED] lmtt =======================
[10:17:29] ================= pf_service (11 subtests) =================
[10:17:29] [PASSED] pf_negotiate_any
[10:17:29] [PASSED] pf_negotiate_base_match
[10:17:29] [PASSED] pf_negotiate_base_newer
[10:17:29] [PASSED] pf_negotiate_base_next
[10:17:29] [SKIPPED] pf_negotiate_base_older
[10:17:29] [PASSED] pf_negotiate_base_prev
[10:17:29] [PASSED] pf_negotiate_latest_match
[10:17:29] [PASSED] pf_negotiate_latest_newer
[10:17:29] [PASSED] pf_negotiate_latest_next
[10:17:29] [SKIPPED] pf_negotiate_latest_older
[10:17:29] [SKIPPED] pf_negotiate_latest_prev
[10:17:29] =================== [PASSED] pf_service ====================
[10:17:29] =================== xe_mocs (2 subtests) ===================
[10:17:29] ================ xe_live_mocs_kernel_kunit  ================
[10:17:29] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[10:17:29] ================ xe_live_mocs_reset_kunit  =================
[10:17:29] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[10:17:29] ==================== [SKIPPED] xe_mocs =====================
[10:17:29] ================= xe_migrate (2 subtests) ==================
[10:17:29] ================= xe_migrate_sanity_kunit  =================
[10:17:29] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[10:17:29] ================== xe_validate_ccs_kunit  ==================
[10:17:29] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[10:17:29] =================== [SKIPPED] xe_migrate ===================
[10:17:29] ================== xe_dma_buf (1 subtest) ==================
[10:17:29] ==================== xe_dma_buf_kunit  =====================
[10:17:29] ================ [SKIPPED] xe_dma_buf_kunit ================
[10:17:29] =================== [SKIPPED] xe_dma_buf ===================
[10:17:29] ================= xe_bo_shrink (1 subtest) =================
[10:17:29] =================== xe_bo_shrink_kunit  ====================
[10:17:29] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[10:17:29] ================== [SKIPPED] xe_bo_shrink ==================
[10:17:29] ==================== xe_bo (2 subtests) ====================
[10:17:29] ================== xe_ccs_migrate_kunit  ===================
[10:17:29] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[10:17:29] ==================== xe_bo_evict_kunit  ====================
[10:17:29] =============== [SKIPPED] xe_bo_evict_kunit ================
[10:17:29] ===================== [SKIPPED] xe_bo ======================
[10:17:29] ==================== args (11 subtests) ====================
[10:17:29] [PASSED] count_args_test
[10:17:29] [PASSED] call_args_example
[10:17:29] [PASSED] call_args_test
[10:17:29] [PASSED] drop_first_arg_example
[10:17:29] [PASSED] drop_first_arg_test
[10:17:29] [PASSED] first_arg_example
[10:17:29] [PASSED] first_arg_test
[10:17:29] [PASSED] last_arg_example
[10:17:29] [PASSED] last_arg_test
[10:17:29] [PASSED] pick_arg_example
[10:17:29] [PASSED] sep_comma_example
[10:17:29] ====================== [PASSED] args =======================
[10:17:29] =================== xe_pci (3 subtests) ====================
[10:17:29] ==================== check_graphics_ip  ====================
[10:17:29] [PASSED] 12.70 Xe_LPG
[10:17:29] [PASSED] 12.71 Xe_LPG
[10:17:29] [PASSED] 12.74 Xe_LPG+
[10:17:29] [PASSED] 20.01 Xe2_HPG
[10:17:29] [PASSED] 20.02 Xe2_HPG
[10:17:29] [PASSED] 20.04 Xe2_LPG
[10:17:29] [PASSED] 30.00 Xe3_LPG
[10:17:29] [PASSED] 30.01 Xe3_LPG
[10:17:29] [PASSED] 30.03 Xe3_LPG
[10:17:29] ================ [PASSED] check_graphics_ip ================
[10:17:29] ===================== check_media_ip  ======================
[10:17:29] [PASSED] 13.00 Xe_LPM+
[10:17:29] [PASSED] 13.01 Xe2_HPM
[10:17:29] [PASSED] 20.00 Xe2_LPM
[10:17:29] [PASSED] 30.00 Xe3_LPM
[10:17:29] [PASSED] 30.02 Xe3_LPM
[10:17:29] ================= [PASSED] check_media_ip ==================
[10:17:29] ================= check_platform_gt_count  =================
[10:17:29] [PASSED] 0x9A60 (TIGERLAKE)
[10:17:29] [PASSED] 0x9A68 (TIGERLAKE)
[10:17:29] [PASSED] 0x9A70 (TIGERLAKE)
[10:17:29] [PASSED] 0x9A40 (TIGERLAKE)
[10:17:29] [PASSED] 0x9A49 (TIGERLAKE)
[10:17:29] [PASSED] 0x9A59 (TIGERLAKE)
[10:17:29] [PASSED] 0x9A78 (TIGERLAKE)
[10:17:29] [PASSED] 0x9AC0 (TIGERLAKE)
[10:17:29] [PASSED] 0x9AC9 (TIGERLAKE)
[10:17:29] [PASSED] 0x9AD9 (TIGERLAKE)
[10:17:29] [PASSED] 0x9AF8 (TIGERLAKE)
[10:17:29] [PASSED] 0x4C80 (ROCKETLAKE)
[10:17:29] [PASSED] 0x4C8A (ROCKETLAKE)
[10:17:29] [PASSED] 0x4C8B (ROCKETLAKE)
[10:17:29] [PASSED] 0x4C8C (ROCKETLAKE)
[10:17:29] [PASSED] 0x4C90 (ROCKETLAKE)
[10:17:29] [PASSED] 0x4C9A (ROCKETLAKE)
[10:17:29] [PASSED] 0x4680 (ALDERLAKE_S)
[10:17:29] [PASSED] 0x4682 (ALDERLAKE_S)
[10:17:29] [PASSED] 0x4688 (ALDERLAKE_S)
[10:17:29] [PASSED] 0x468A (ALDERLAKE_S)
[10:17:29] [PASSED] 0x468B (ALDERLAKE_S)
[10:17:29] [PASSED] 0x4690 (ALDERLAKE_S)
[10:17:29] [PASSED] 0x4692 (ALDERLAKE_S)
[10:17:29] [PASSED] 0x4693 (ALDERLAKE_S)
[10:17:29] [PASSED] 0x46A0 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46A1 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46A2 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46A3 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46A6 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46A8 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46AA (ALDERLAKE_P)
[10:17:29] [PASSED] 0x462A (ALDERLAKE_P)
[10:17:29] [PASSED] 0x4626 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x4628 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46B0 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46B1 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46B2 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46B3 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46C0 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46C1 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46C2 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46C3 (ALDERLAKE_P)
[10:17:29] [PASSED] 0x46D0 (ALDERLAKE_N)
[10:17:29] [PASSED] 0x46D1 (ALDERLAKE_N)
[10:17:29] [PASSED] 0x46D2 (ALDERLAKE_N)
[10:17:29] [PASSED] 0x46D3 (ALDERLAKE_N)
[10:17:29] [PASSED] 0x46D4 (ALDERLAKE_N)
[10:17:29] [PASSED] 0xA721 (ALDERLAKE_P)
[10:17:29] [PASSED] 0xA7A1 (ALDERLAKE_P)
[10:17:29] [PASSED] 0xA7A9 (ALDERLAKE_P)
[10:17:29] [PASSED] 0xA7AC (ALDERLAKE_P)
[10:17:29] [PASSED] 0xA7AD (ALDERLAKE_P)
[10:17:29] [PASSED] 0xA720 (ALDERLAKE_P)
[10:17:29] [PASSED] 0xA7A0 (ALDERLAKE_P)
[10:17:29] [PASSED] 0xA7A8 (ALDERLAKE_P)
[10:17:29] [PASSED] 0xA7AA (ALDERLAKE_P)
[10:17:29] [PASSED] 0xA7AB (ALDERLAKE_P)
[10:17:29] [PASSED] 0xA780 (ALDERLAKE_S)
[10:17:29] [PASSED] 0xA781 (ALDERLAKE_S)
[10:17:29] [PASSED] 0xA782 (ALDERLAKE_S)
[10:17:29] [PASSED] 0xA783 (ALDERLAKE_S)
[10:17:29] [PASSED] 0xA788 (ALDERLAKE_S)
[10:17:29] [PASSED] 0xA789 (ALDERLAKE_S)
[10:17:29] [PASSED] 0xA78A (ALDERLAKE_S)
[10:17:29] [PASSED] 0xA78B (ALDERLAKE_S)
[10:17:29] [PASSED] 0x4905 (DG1)
[10:17:29] [PASSED] 0x4906 (DG1)
[10:17:29] [PASSED] 0x4907 (DG1)
[10:17:29] [PASSED] 0x4908 (DG1)
[10:17:29] [PASSED] 0x4909 (DG1)
[10:17:29] [PASSED] 0x56C0 (DG2)
[10:17:29] [PASSED] 0x56C2 (DG2)
[10:17:29] [PASSED] 0x56C1 (DG2)
[10:17:29] [PASSED] 0x7D51 (METEORLAKE)
[10:17:29] [PASSED] 0x7DD1 (METEORLAKE)
[10:17:29] [PASSED] 0x7D41 (METEORLAKE)
[10:17:29] [PASSED] 0x7D67 (METEORLAKE)
[10:17:29] [PASSED] 0xB640 (METEORLAKE)
[10:17:29] [PASSED] 0x56A0 (DG2)
[10:17:29] [PASSED] 0x56A1 (DG2)
[10:17:29] [PASSED] 0x56A2 (DG2)
[10:17:29] [PASSED] 0x56BE (DG2)
[10:17:29] [PASSED] 0x56BF (DG2)
[10:17:29] [PASSED] 0x5690 (DG2)
[10:17:29] [PASSED] 0x5691 (DG2)
[10:17:29] [PASSED] 0x5692 (DG2)
[10:17:29] [PASSED] 0x56A5 (DG2)
[10:17:29] [PASSED] 0x56A6 (DG2)
[10:17:29] [PASSED] 0x56B0 (DG2)
[10:17:29] [PASSED] 0x56B1 (DG2)
[10:17:29] [PASSED] 0x56BA (DG2)
[10:17:29] [PASSED] 0x56BB (DG2)
[10:17:29] [PASSED] 0x56BC (DG2)
[10:17:29] [PASSED] 0x56BD (DG2)
[10:17:29] [PASSED] 0x5693 (DG2)
[10:17:29] [PASSED] 0x5694 (DG2)
[10:17:29] [PASSED] 0x5695 (DG2)
[10:17:29] [PASSED] 0x56A3 (DG2)
[10:17:29] [PASSED] 0x56A4 (DG2)
[10:17:29] [PASSED] 0x56B2 (DG2)
[10:17:29] [PASSED] 0x56B3 (DG2)
[10:17:29] [PASSED] 0x5696 (DG2)
[10:17:29] [PASSED] 0x5697 (DG2)
[10:17:29] [PASSED] 0xB69 (PVC)
[10:17:29] [PASSED] 0xB6E (PVC)
[10:17:29] [PASSED] 0xBD4 (PVC)
[10:17:29] [PASSED] 0xBD5 (PVC)
[10:17:29] [PASSED] 0xBD6 (PVC)
[10:17:29] [PASSED] 0xBD7 (PVC)
[10:17:29] [PASSED] 0xBD8 (PVC)
[10:17:29] [PASSED] 0xBD9 (PVC)
[10:17:29] [PASSED] 0xBDA (PVC)
[10:17:29] [PASSED] 0xBDB (PVC)
[10:17:29] [PASSED] 0xBE0 (PVC)
[10:17:29] [PASSED] 0xBE1 (PVC)
[10:17:29] [PASSED] 0xBE5 (PVC)
[10:17:29] [PASSED] 0x7D40 (METEORLAKE)
[10:17:29] [PASSED] 0x7D45 (METEORLAKE)
[10:17:29] [PASSED] 0x7D55 (METEORLAKE)
[10:17:29] [PASSED] 0x7D60 (METEORLAKE)
[10:17:29] [PASSED] 0x7DD5 (METEORLAKE)
[10:17:29] [PASSED] 0x6420 (LUNARLAKE)
[10:17:29] [PASSED] 0x64A0 (LUNARLAKE)
[10:17:29] [PASSED] 0x64B0 (LUNARLAKE)
[10:17:29] [PASSED] 0xE202 (BATTLEMAGE)
[10:17:29] [PASSED] 0xE209 (BATTLEMAGE)
[10:17:29] [PASSED] 0xE20B (BATTLEMAGE)
[10:17:29] [PASSED] 0xE20C (BATTLEMAGE)
[10:17:29] [PASSED] 0xE20D (BATTLEMAGE)
[10:17:29] [PASSED] 0xE210 (BATTLEMAGE)
[10:17:29] [PASSED] 0xE211 (BATTLEMAGE)
[10:17:29] [PASSED] 0xE212 (BATTLEMAGE)
[10:17:29] [PASSED] 0xE216 (BATTLEMAGE)
[10:17:29] [PASSED] 0xE220 (BATTLEMAGE)
[10:17:29] [PASSED] 0xE221 (BATTLEMAGE)
[10:17:29] [PASSED] 0xE222 (BATTLEMAGE)
[10:17:29] [PASSED] 0xE223 (BATTLEMAGE)
[10:17:29] [PASSED] 0xB080 (PANTHERLAKE)
[10:17:29] [PASSED] 0xB081 (PANTHERLAKE)
[10:17:29] [PASSED] 0xB082 (PANTHERLAKE)
[10:17:29] [PASSED] 0xB083 (PANTHERLAKE)
[10:17:29] [PASSED] 0xB084 (PANTHERLAKE)
[10:17:29] [PASSED] 0xB085 (PANTHERLAKE)
[10:17:29] [PASSED] 0xB086 (PANTHERLAKE)
[10:17:29] [PASSED] 0xB087 (PANTHERLAKE)
[10:17:29] [PASSED] 0xB08F (PANTHERLAKE)
[10:17:29] [PASSED] 0xB090 (PANTHERLAKE)
[10:17:29] [PASSED] 0xB0A0 (PANTHERLAKE)
[10:17:29] [PASSED] 0xB0B0 (PANTHERLAKE)
[10:17:29] [PASSED] 0xFD80 (PANTHERLAKE)
[10:17:29] [PASSED] 0xFD81 (PANTHERLAKE)
[10:17:29] ============= [PASSED] check_platform_gt_count =============
[10:17:29] ===================== [PASSED] xe_pci ======================
[10:17:29] =================== xe_rtp (2 subtests) ====================
[10:17:29] =============== xe_rtp_process_to_sr_tests  ================
[10:17:29] [PASSED] coalesce-same-reg
[10:17:29] [PASSED] no-match-no-add
[10:17:29] [PASSED] match-or
[10:17:29] [PASSED] match-or-xfail
[10:17:29] [PASSED] no-match-no-add-multiple-rules
[10:17:29] [PASSED] two-regs-two-entries
[10:17:29] [PASSED] clr-one-set-other
[10:17:29] [PASSED] set-field
[10:17:29] [PASSED] conflict-duplicate
[10:17:29] [PASSED] conflict-not-disjoint
[10:17:29] [PASSED] conflict-reg-type
[10:17:29] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[10:17:29] ================== xe_rtp_process_tests  ===================
[10:17:29] [PASSED] active1
[10:17:29] [PASSED] active2
[10:17:29] [PASSED] active-inactive
[10:17:29] [PASSED] inactive-active
[10:17:29] [PASSED] inactive-1st_or_active-inactive
[10:17:29] [PASSED] inactive-2nd_or_active-inactive
[10:17:29] [PASSED] inactive-last_or_active-inactive
[10:17:29] [PASSED] inactive-no_or_active-inactive
[10:17:29] ============== [PASSED] xe_rtp_process_tests ===============
[10:17:29] ===================== [PASSED] xe_rtp ======================
[10:17:29] ==================== xe_wa (1 subtest) =====================
[10:17:29] ======================== xe_wa_gt  =========================
[10:17:29] [PASSED] TIGERLAKE (B0)
[10:17:29] [PASSED] DG1 (A0)
[10:17:29] [PASSED] DG1 (B0)
[10:17:29] [PASSED] ALDERLAKE_S (A0)
[10:17:29] [PASSED] ALDERLAKE_S (B0)
[10:17:29] [PASSED] ALDERLAKE_S (C0)
[10:17:29] [PASSED] ALDERLAKE_S (D0)
[10:17:29] [PASSED] ALDERLAKE_P (A0)
[10:17:29] [PASSED] ALDERLAKE_P (B0)
[10:17:29] [PASSED] ALDERLAKE_P (C0)
[10:17:29] [PASSED] ALDERLAKE_S_RPLS (D0)
[10:17:29] [PASSED] ALDERLAKE_P_RPLU (E0)
[10:17:29] [PASSED] DG2_G10 (C0)
[10:17:29] [PASSED] DG2_G11 (B1)
[10:17:29] [PASSED] DG2_G12 (A1)
[10:17:29] [PASSED] METEORLAKE (g:A0, m:A0)
[10:17:29] [PASSED] METEORLAKE (g:A0, m:A0)
[10:17:29] [PASSED] METEORLAKE (g:A0, m:A0)
[10:17:29] [PASSED] LUNARLAKE (g:A0, m:A0)
[10:17:29] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[10:17:29] [PASSED] BATTLEMAGE (g:A0, m:A1)
[10:17:29] [PASSED] PANTHERLAKE (g:A0, m:A0)
[10:17:29] ==================== [PASSED] xe_wa_gt =====================
[10:17:29] ====================== [PASSED] xe_wa ======================
[10:17:29] ============================================================
[10:17:29] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[10:17:29] Elapsed time: 33.431s total, 4.261s configuring, 28.803s building, 0.329s running

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

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

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



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

* Re: [PATCH] drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only
  2025-08-27 10:10 [PATCH] drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only Sanjay Yadav
  2025-08-27 10:18 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-08-27 10:38 ` Matthew Auld
  2025-08-27 10:58 ` ✗ Xe.CI.BAT: failure for " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Matthew Auld @ 2025-08-27 10:38 UTC (permalink / raw)
  To: Sanjay Yadav, intel-xe

On 27/08/2025 11:10, Sanjay Yadav wrote:
> In xe_migrate_copy(), when copy_only_ccs is true, we only need two
> emit_pte() calls—one for the BO and one for the raw CCS storage.
> However, the current implementation issues three emit_pte() calls,
> resulting in an unnecessary PTE programming job.
> 
> This fix removes the redundant emit_pte() call to avoid programming
> the same PTEs twice and reducing overhead during CCS-only migration.
> 
> Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
> Suggested-by: Matthew Auld <matthew.auld@intel.com>

Reviewed-by: Matthew Auld <matthew.auld@intel.com>

> ---
>   drivers/gpu/drm/xe/xe_migrate.c | 17 +++++++++--------
>   1 file changed, 9 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
> index ddfad7506a82..9541a8fe4637 100644
> --- a/drivers/gpu/drm/xe/xe_migrate.c
> +++ b/drivers/gpu/drm/xe/xe_migrate.c
> @@ -843,11 +843,6 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
>   					      &src_L0_ofs, &src_L0_pt, 0, 0,
>   					      avail_pts);
>   
> -		pte_flags = dst_is_vram ? PTE_UPDATE_FLAG_IS_VRAM : 0;
> -		batch_size += pte_update_size(m, pte_flags, dst, &dst_it, &src_L0,
> -					      &dst_L0_ofs, &dst_L0_pt, 0,
> -					      avail_pts, avail_pts);
> -
>   		if (copy_system_ccs) {
>   			xe_assert(xe, type_device);
>   			ccs_size = xe_device_ccs_bytes(xe, src_L0);
> @@ -855,7 +850,14 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
>   						      &ccs_ofs, &ccs_pt, 0,
>   						      2 * avail_pts,
>   						      avail_pts);
> +			dst_L0_ofs = src_L0_ofs;
>   			xe_assert(xe, IS_ALIGNED(ccs_it.start, PAGE_SIZE));
> +		} else {
> +			pte_flags = dst_is_vram ? PTE_UPDATE_FLAG_IS_VRAM : 0;
> +			batch_size += pte_update_size(m, pte_flags, dst,
> +					&dst_it, &src_L0,
> +					&dst_L0_ofs, &dst_L0_pt,
> +					0, avail_pts, avail_pts);
>   		}
>   
>   		/* Add copy commands size here */
> @@ -876,13 +878,12 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
>   
>   		if (dst_is_vram && xe_migrate_allow_identity(src_L0, &dst_it))
>   			xe_res_next(&dst_it, src_L0);
> +		else if (copy_system_ccs)
> +			emit_pte(m, bb, ccs_pt, false, false, &ccs_it, ccs_size, src);
>   		else
>   			emit_pte(m, bb, dst_L0_pt, dst_is_vram, copy_system_ccs,
>   				 &dst_it, src_L0, dst);
>   
> -		if (copy_system_ccs)
> -			emit_pte(m, bb, ccs_pt, false, false, &ccs_it, ccs_size, src);
> -
>   		bb->cs[bb->len++] = MI_BATCH_BUFFER_END;
>   		update_idx = bb->len;
>   


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

* ✗ Xe.CI.BAT: failure for drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only
  2025-08-27 10:10 [PATCH] drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only Sanjay Yadav
  2025-08-27 10:18 ` ✓ CI.KUnit: success for " Patchwork
  2025-08-27 10:38 ` [PATCH] " Matthew Auld
@ 2025-08-27 10:58 ` Patchwork
  2025-08-27 13:14 ` [PATCH] " Matthew Auld
  2025-08-27 13:30 ` ✗ Xe.CI.Full: failure for " Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-08-27 10:58 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only
URL   : https://patchwork.freedesktop.org/series/153561/
State : failure

== Summary ==

CI Bug Log - changes from xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578_BAT -> xe-pw-153561v1_BAT
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-153561v1_BAT absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-153561v1_BAT, 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 (11 -> 11)
------------------------------

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-153561v1_BAT:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - bat-dg2-oem2:       [PASS][1] -> [FAIL][2] +3 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
    - bat-atsm-2:         [PASS][3] -> [FAIL][4] +3 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/bat-atsm-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/bat-atsm-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - bat-adlp-7:         [DMESG-WARN][5] ([Intel XE#4543]) -> [PASS][6] +1 other test pass
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html

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


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

  * IGT: IGT_8511 -> IGT_8512
  * Linux: xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578 -> xe-pw-153561v1

  IGT_8511: 8511
  IGT_8512: 8512
  xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578: 3a2760f3080e5188b19cdb4640cec5eb0926d578
  xe-pw-153561v1: 153561v1

== Logs ==

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

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

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

* Re: [PATCH] drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only
  2025-08-27 10:10 [PATCH] drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only Sanjay Yadav
                   ` (2 preceding siblings ...)
  2025-08-27 10:58 ` ✗ Xe.CI.BAT: failure for " Patchwork
@ 2025-08-27 13:14 ` Matthew Auld
  2025-08-27 13:30 ` ✗ Xe.CI.Full: failure for " Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Matthew Auld @ 2025-08-27 13:14 UTC (permalink / raw)
  To: Sanjay Yadav, intel-xe

On 27/08/2025 11:10, Sanjay Yadav wrote:
> In xe_migrate_copy(), when copy_only_ccs is true, we only need two
> emit_pte() calls—one for the BO and one for the raw CCS storage.
> However, the current implementation issues three emit_pte() calls,
> resulting in an unnecessary PTE programming job.
> 
> This fix removes the redundant emit_pte() call to avoid programming
> the same PTEs twice and reducing overhead during CCS-only migration.
> 
> Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
> Suggested-by: Matthew Auld <matthew.auld@intel.com>
> ---
>   drivers/gpu/drm/xe/xe_migrate.c | 17 +++++++++--------
>   1 file changed, 9 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
> index ddfad7506a82..9541a8fe4637 100644
> --- a/drivers/gpu/drm/xe/xe_migrate.c
> +++ b/drivers/gpu/drm/xe/xe_migrate.c
> @@ -843,11 +843,6 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
>   					      &src_L0_ofs, &src_L0_pt, 0, 0,
>   					      avail_pts);
>   
> -		pte_flags = dst_is_vram ? PTE_UPDATE_FLAG_IS_VRAM : 0;
> -		batch_size += pte_update_size(m, pte_flags, dst, &dst_it, &src_L0,
> -					      &dst_L0_ofs, &dst_L0_pt, 0,
> -					      avail_pts, avail_pts);
> -

Oops, I think we missed the dg2 case, where there is both a ccs copy and 
page copy, which is not the case on xe2+.

I think maybe make the above conditional on copy_only_ccs instead:

if (copy_only_ccs) {
     dst_L0_ofs = src_L0_ofs;
} else {
     pte_flags = dst_is_vram ? PTE_UPDATE_FLAG_IS_VRAM : 0;
     batch_size += pte_update_size(...)
     ...
}

>   		if (copy_system_ccs) {
>   			xe_assert(xe, type_device);
>   			ccs_size = xe_device_ccs_bytes(xe, src_L0);
> @@ -855,7 +850,14 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
>   						      &ccs_ofs, &ccs_pt, 0,
>   						      2 * avail_pts,
>   						      avail_pts);
> +			dst_L0_ofs = src_L0_ofs;
>   			xe_assert(xe, IS_ALIGNED(ccs_it.start, PAGE_SIZE));
> +		} else {
> +			pte_flags = dst_is_vram ? PTE_UPDATE_FLAG_IS_VRAM : 0;
> +			batch_size += pte_update_size(m, pte_flags, dst,
> +					&dst_it, &src_L0,
> +					&dst_L0_ofs, &dst_L0_pt,
> +					0, avail_pts, avail_pts);
>   		}
>   
>   		/* Add copy commands size here */
> @@ -876,13 +878,12 @@ struct dma_fence *xe_migrate_copy(struct xe_migrate *m,
>   
>   		if (dst_is_vram && xe_migrate_allow_identity(src_L0, &dst_it))
>   			xe_res_next(&dst_it, src_L0);
> +		else if (copy_system_ccs)
> +			emit_pte(m, bb, ccs_pt, false, false, &ccs_it, ccs_size, src);
>   		else
>   			emit_pte(m, bb, dst_L0_pt, dst_is_vram, copy_system_ccs,
>   				 &dst_it, src_L0, dst);

And then here drop this change and turn the else into:

else if (!copy_only_ccs)

>   
> -		if (copy_system_ccs)
> -			emit_pte(m, bb, ccs_pt, false, false, &ccs_it, ccs_size, src);

And then keep this here as-is. I think that should work?

> -
>   		bb->cs[bb->len++] = MI_BATCH_BUFFER_END;
>   		update_idx = bb->len;
>   


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

* ✗ Xe.CI.Full: failure for drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only
  2025-08-27 10:10 [PATCH] drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only Sanjay Yadav
                   ` (3 preceding siblings ...)
  2025-08-27 13:14 ` [PATCH] " Matthew Auld
@ 2025-08-27 13:30 ` Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-08-27 13:30 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only
URL   : https://patchwork.freedesktop.org/series/153561/
State : failure

== Summary ==

CI Bug Log - changes from xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578_FULL -> xe-pw-153561v1_FULL
====================================================

Summary
-------

  **FAILURE**

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

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_color@ctm-red-to-blue:
    - shard-bmg:          [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_color@ctm-red-to-blue.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-2/igt@kms_color@ctm-red-to-blue.html

  * igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen:
    - shard-dg2-set2:     [PASS][3] -> [FAIL][4] +1 other test fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen.html

  * igt@xe_pm@s3-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [FAIL][5] +2 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@xe_pm@s3-basic-exec.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
    - shard-bmg:          [PASS][6] -> [FAIL][7] +1 other test fail
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-3/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html

  
#### Warnings ####

  * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
    - shard-dg2-set2:     [SKIP][8] ([Intel XE#4208]) -> [FAIL][9] +3 other tests fail
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([SKIP][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [ABORT][20], [ABORT][21], [ABORT][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34]) ([Intel XE#378]) -> ([PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [ABORT][51], [ABORT][52], [ABORT][53], [ABORT][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_module_load@load.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-1/igt@xe_module_load@load.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-1/igt@xe_module_load@load.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-1/igt@xe_module_load@load.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_module_load@load.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@xe_module_load@load.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-2/igt@xe_module_load@load.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-2/igt@xe_module_load@load.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-2/igt@xe_module_load@load.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-7/igt@xe_module_load@load.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@xe_module_load@load.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@xe_module_load@load.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@xe_module_load@load.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@xe_module_load@load.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@xe_module_load@load.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-3/igt@xe_module_load@load.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-3/igt@xe_module_load@load.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-8/igt@xe_module_load@load.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-5/igt@xe_module_load@load.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-7/igt@xe_module_load@load.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-5/igt@xe_module_load@load.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-7/igt@xe_module_load@load.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-7/igt@xe_module_load@load.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-5/igt@xe_module_load@load.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@xe_module_load@load.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-8/igt@xe_module_load@load.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-8/igt@xe_module_load@load.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@xe_module_load@load.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@xe_module_load@load.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@xe_module_load@load.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-3/igt@xe_module_load@load.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-2/igt@xe_module_load@load.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-2/igt@xe_module_load@load.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-2/igt@xe_module_load@load.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-2/igt@xe_module_load@load.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-3/igt@xe_module_load@load.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@xe_module_load@load.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@xe_module_load@load.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@xe_module_load@load.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@xe_module_load@load.html
    - shard-adlp:         ([PASS][60], [PASS][61], [SKIP][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [ABORT][68], [ABORT][69], [ABORT][70], [ABORT][71], [ABORT][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85]) ([Intel XE#378] / [Intel XE#5612]) -> ([PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [ABORT][96], [ABORT][97], [ABORT][98], [ABORT][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@xe_module_load@load.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@xe_module_load@load.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@xe_module_load@load.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@xe_module_load@load.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-9/igt@xe_module_load@load.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@xe_module_load@load.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@xe_module_load@load.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@xe_module_load@load.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@xe_module_load@load.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_module_load@load.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@xe_module_load@load.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@xe_module_load@load.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_module_load@load.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@xe_module_load@load.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-2/igt@xe_module_load@load.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@xe_module_load@load.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@xe_module_load@load.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@xe_module_load@load.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@xe_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@xe_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@xe_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-1/igt@xe_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-1/igt@xe_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-8/igt@xe_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-2/igt@xe_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-9/igt@xe_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-9/igt@xe_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-9/igt@xe_module_load@load.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-9/igt@xe_module_load@load.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-8/igt@xe_module_load@load.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-2/igt@xe_module_load@load.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-2/igt@xe_module_load@load.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@xe_module_load@load.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@xe_module_load@load.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@xe_module_load@load.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-1/igt@xe_module_load@load.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@xe_module_load@load.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@xe_module_load@load.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-8/igt@xe_module_load@load.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@write:
    - shard-dg2-set2:     [PASS][110] -> [SKIP][111] ([Intel XE#2134])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@fbdev@write.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@fbdev@write.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][112] ([Intel XE#911]) +3 other tests fail
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][113] ([Intel XE#4543]) +12 other tests dmesg-warn
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y.html

  * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
    - shard-adlp:         [PASS][114] -> [FAIL][115] ([Intel XE#3884]) +1 other test fail
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html

  * igt@kms_async_flips@test-cursor:
    - shard-lnl:          NOTRUN -> [SKIP][116] ([Intel XE#664])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_async_flips@test-cursor.html

  * igt@kms_atomic@plane-invalid-params-fence:
    - shard-dg2-set2:     [PASS][117] -> [SKIP][118] ([Intel XE#4208] / [i915#2575]) +86 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_atomic@plane-invalid-params-fence.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_atomic@plane-invalid-params-fence.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][119] ([Intel XE#316]) +3 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
    - shard-lnl:          NOTRUN -> [SKIP][120] ([Intel XE#1407]) +2 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-adlp:         NOTRUN -> [SKIP][121] ([Intel XE#1124]) +11 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

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

  * igt@kms_big_fb@x-tiled-64bpp-rotate-0:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][123] ([Intel XE#4543]) +1 other test dmesg-fail
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][124] ([Intel XE#316]) +4 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][125] ([Intel XE#1124]) +1 other test skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-2/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     NOTRUN -> [SKIP][126] ([Intel XE#607])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-lnl:          NOTRUN -> [SKIP][127] ([Intel XE#1428])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-adlp:         [PASS][128] -> [DMESG-FAIL][129] ([Intel XE#4543]) +9 other tests dmesg-fail
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][130] ([Intel XE#1124]) +3 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html

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

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [PASS][132] -> [SKIP][133] ([Intel XE#2314] / [Intel XE#2894])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-adlp:         NOTRUN -> [SKIP][134] ([Intel XE#2191]) +1 other test skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][135] ([Intel XE#2314] / [Intel XE#2894])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
    - shard-lnl:          NOTRUN -> [SKIP][136] ([Intel XE#2191]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][137] ([Intel XE#2191])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][138] ([Intel XE#367])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-4-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][139] ([Intel XE#367])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][140] ([Intel XE#367]) +2 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
    - shard-lnl:          NOTRUN -> [SKIP][141] ([Intel XE#1512])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-5/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [PASS][142] -> [SKIP][143] ([Intel XE#2351] / [Intel XE#4208]) +8 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][144] ([Intel XE#2887]) +12 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][145] ([Intel XE#787]) +160 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][146] ([Intel XE#2907])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][147] ([Intel XE#3442])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][148] ([Intel XE#455] / [Intel XE#787]) +27 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
    - shard-dg2-set2:     [PASS][149] -> [ABORT][150] ([Intel XE#3970]) +1 other test abort
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [PASS][151] -> [FAIL][152] ([Intel XE#616])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][153] ([Intel XE#3432]) +1 other test skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][154] ([Intel XE#3432]) +1 other test skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][155] ([Intel XE#2907]) +2 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][156] ([Intel XE#455] / [Intel XE#787]) +26 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][157] ([Intel XE#2887]) +3 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-3/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][158] ([Intel XE#787]) +41 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][159] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_cdclk@mode-transition:
    - shard-adlp:         NOTRUN -> [SKIP][160] ([Intel XE#4417] / [Intel XE#455])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][161] ([Intel XE#4417]) +2 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-lnl:          NOTRUN -> [SKIP][162] ([Intel XE#306])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-5/igt@kms_chamelium_color@ctm-max.html
    - shard-adlp:         NOTRUN -> [SKIP][163] ([Intel XE#306])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-8/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
    - shard-adlp:         NOTRUN -> [SKIP][164] ([Intel XE#373]) +8 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html

  * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
    - shard-dg2-set2:     NOTRUN -> [SKIP][165] ([Intel XE#373]) +3 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          NOTRUN -> [SKIP][166] ([Intel XE#2252]) +3 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-lnl:          NOTRUN -> [SKIP][167] ([Intel XE#373]) +5 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-8/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [FAIL][168] ([Intel XE#1178]) +2 other tests fail
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          NOTRUN -> [SKIP][169] ([Intel XE#2341])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_content_protection@content-type-change.html
    - shard-lnl:          NOTRUN -> [SKIP][170] ([Intel XE#3278])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-5/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][171] ([Intel XE#307]) +1 other test skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][172] ([Intel XE#2390])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_content_protection@dp-mst-type-1.html
    - shard-adlp:         NOTRUN -> [SKIP][173] ([Intel XE#307]) +1 other test skip
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@kms_content_protection@dp-mst-type-1.html
    - shard-lnl:          NOTRUN -> [SKIP][174] ([Intel XE#307])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][175] ([Intel XE#1178])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html

  * igt@kms_content_protection@uevent:
    - shard-dg2-set2:     NOTRUN -> [FAIL][176] ([Intel XE#1188]) +1 other test fail
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-lnl:          NOTRUN -> [SKIP][177] ([Intel XE#2321]) +1 other test skip
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
    - shard-adlp:         NOTRUN -> [SKIP][178] ([Intel XE#308])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-128x42:
    - shard-lnl:          NOTRUN -> [SKIP][179] ([Intel XE#1424]) +1 other test skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_cursor_crc@cursor-random-128x42.html

  * igt@kms_cursor_crc@cursor-rapid-movement-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][180] ([Intel XE#2320])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][181] ([Intel XE#308]) +1 other test skip
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-bmg:          [PASS][182] -> [SKIP][183] ([Intel XE#2291]) +2 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
    - shard-lnl:          NOTRUN -> [SKIP][184] ([Intel XE#309]) +4 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@cursor-vs-flip-toggle:
    - shard-bmg:          [PASS][185] -> [DMESG-WARN][186] ([Intel XE#5354])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][187] ([Intel XE#309]) +7 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][188] ([Intel XE#1508])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-bmg:          [PASS][189] -> [SKIP][190] ([Intel XE#4354])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@kms_dp_link_training@non-uhbr-sst.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-adlp:         NOTRUN -> [SKIP][191] ([Intel XE#4331]) +1 other test skip
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
    - shard-lnl:          NOTRUN -> [SKIP][192] ([Intel XE#4294])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-lnl:          NOTRUN -> [SKIP][193] ([Intel XE#4331])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_feature_discovery@chamelium:
    - shard-adlp:         NOTRUN -> [SKIP][194] ([Intel XE#701])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-4x:
    - shard-adlp:         NOTRUN -> [SKIP][195] ([Intel XE#1138])
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@kms_feature_discovery@display-4x.html
    - shard-lnl:          NOTRUN -> [SKIP][196] ([Intel XE#1138])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_feature_discovery@display-4x.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-bmg:          [PASS][197] -> [SKIP][198] ([Intel XE#2316]) +7 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][199] ([Intel XE#310]) +5 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][200] ([Intel XE#1421]) +4 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     NOTRUN -> [ABORT][201] ([Intel XE#3970]) +1 other test abort
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html

  * igt@kms_flip@absolute-wf_vblank:
    - shard-dg2-set2:     NOTRUN -> [SKIP][202] ([Intel XE#4208] / [i915#2575]) +46 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_flip@absolute-wf_vblank.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          NOTRUN -> [FAIL][203] ([Intel XE#301]) +1 other test fail
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [PASS][204] -> [DMESG-WARN][205] ([Intel XE#4543]) +8 other tests dmesg-warn
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a2:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][206] ([Intel XE#2049])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a2.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][207] ([Intel XE#1401]) +2 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][208] ([Intel XE#2293] / [Intel XE#2380])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][209] ([Intel XE#2293])
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][210] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][211] ([Intel XE#1397] / [Intel XE#1745])
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][212] ([Intel XE#1397])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][213] ([Intel XE#455]) +13 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][214] ([Intel XE#2311]) +5 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][215] ([Intel XE#656]) +32 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][216] ([Intel XE#2312])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-modesetfrombusy:
    - shard-bmg:          NOTRUN -> [SKIP][217] ([Intel XE#5390]) +3 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][218] ([Intel XE#651]) +16 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][219] ([Intel XE#2351] / [Intel XE#4208]) +10 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][220] ([Intel XE#651]) +11 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
    - shard-adlp:         NOTRUN -> [SKIP][221] ([Intel XE#651]) +12 other tests skip
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][222] ([Intel XE#2313]) +9 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][223] ([Intel XE#653]) +12 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][224] ([Intel XE#656]) +29 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][225] ([Intel XE#653]) +13 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][226] ([Intel XE#2925])
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][227] ([Intel XE#346])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-bmg:          NOTRUN -> [SKIP][228] ([Intel XE#346])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][229] ([Intel XE#346])
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html
    - shard-lnl:          NOTRUN -> [SKIP][230] ([Intel XE#346])
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_panel_fitting@legacy:
    - shard-adlp:         NOTRUN -> [SKIP][231] ([Intel XE#455]) +16 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
    - shard-dg2-set2:     NOTRUN -> [FAIL][232] ([Intel XE#616]) +1 other test fail
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html

  * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][233] ([Intel XE#599]) +7 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
    - shard-lnl:          NOTRUN -> [SKIP][234] ([Intel XE#2763]) +7 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-dg2-set2:     NOTRUN -> [SKIP][235] ([Intel XE#870])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][236] ([Intel XE#2938])
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-2/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-adlp:         NOTRUN -> [SKIP][237] ([Intel XE#870]) +1 other test skip
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-dg2-set2:     NOTRUN -> [SKIP][238] ([Intel XE#3309])
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html
    - shard-lnl:          NOTRUN -> [SKIP][239] ([Intel XE#3309])
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-3/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [PASS][240] -> [FAIL][241] ([Intel XE#718])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
    - shard-bmg:          NOTRUN -> [SKIP][242] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][243] ([Intel XE#1406] / [Intel XE#4208]) +2 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
    - shard-lnl:          NOTRUN -> [SKIP][244] ([Intel XE#1406] / [Intel XE#2893]) +2 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][245] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][246] ([Intel XE#1406] / [Intel XE#4608]) +2 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@pr-cursor-plane-update-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][247] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-adlp:         NOTRUN -> [SKIP][248] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@fbc-psr2-cursor-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][249] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +3 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html

  * igt@kms_psr@fbc-psr2-sprite-plane-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][250] ([Intel XE#1406]) +3 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html

  * igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][251] ([Intel XE#1406] / [Intel XE#4609])
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1.html

  * igt@kms_psr@pr-primary-page-flip:
    - shard-adlp:         NOTRUN -> [SKIP][252] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +10 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@kms_psr@pr-primary-page-flip.html

  * igt@kms_psr@pr-primary-render:
    - shard-bmg:          NOTRUN -> [SKIP][253] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-2/igt@kms_psr@pr-primary-render.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][254] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-adlp:         NOTRUN -> [SKIP][255] ([Intel XE#3414])
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-8/igt@kms_rotation_crc@primary-rotation-270.html
    - shard-lnl:          NOTRUN -> [SKIP][256] ([Intel XE#3414] / [Intel XE#3904])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-7/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-adlp:         NOTRUN -> [SKIP][257] ([Intel XE#1127])
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@xe_ccs@block-copy-compressed-inc-dimension:
    - shard-adlp:         NOTRUN -> [SKIP][258] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) +1 other test skip
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-2/igt@xe_ccs@block-copy-compressed-inc-dimension.html

  * igt@xe_copy_basic@mem-copy-linear-0xfffe:
    - shard-adlp:         NOTRUN -> [SKIP][259] ([Intel XE#1123])
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@xe_copy_basic@mem-copy-linear-0xfffe.html

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-adlp:         NOTRUN -> [SKIP][260] ([Intel XE#1126])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_eu_stall@invalid-gt-id:
    - shard-dg2-set2:     NOTRUN -> [SKIP][261] ([Intel XE#5626]) +1 other test skip
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@xe_eu_stall@invalid-gt-id.html

  * igt@xe_eu_stall@non-blocking-re-enable:
    - shard-adlp:         NOTRUN -> [SKIP][262] ([Intel XE#5626])
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@xe_eu_stall@non-blocking-re-enable.html

  * igt@xe_eudebug_online@basic-breakpoint:
    - shard-bmg:          NOTRUN -> [SKIP][263] ([Intel XE#4837]) +4 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-1/igt@xe_eudebug_online@basic-breakpoint.html

  * igt@xe_eudebug_online@resume-dss:
    - shard-dg2-set2:     NOTRUN -> [SKIP][264] ([Intel XE#4837]) +3 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@xe_eudebug_online@resume-dss.html

  * igt@xe_eudebug_online@single-step-one:
    - shard-adlp:         NOTRUN -> [SKIP][265] ([Intel XE#4837] / [Intel XE#5565]) +11 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@xe_eudebug_online@single-step-one.html

  * igt@xe_evict@evict-beng-large-cm:
    - shard-lnl:          NOTRUN -> [SKIP][266] ([Intel XE#688]) +2 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@xe_evict@evict-beng-large-cm.html

  * igt@xe_evict@evict-large-external:
    - shard-adlp:         NOTRUN -> [SKIP][267] ([Intel XE#261] / [Intel XE#5564])
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@xe_evict@evict-large-external.html

  * igt@xe_evict@evict-small-external-cm:
    - shard-adlp:         NOTRUN -> [SKIP][268] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +1 other test skip
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@xe_evict@evict-small-external-cm.html

  * igt@xe_exec_basic@multigpu-no-exec-basic:
    - shard-dg2-set2:     NOTRUN -> [SKIP][269] ([Intel XE#1392])
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic.html

  * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
    - shard-adlp:         NOTRUN -> [SKIP][270] ([Intel XE#1392] / [Intel XE#5575]) +5 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html

  * igt@xe_exec_basic@multigpu-no-exec-rebind:
    - shard-dg2-set2:     [PASS][271] -> [SKIP][272] ([Intel XE#1392])
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-rebind.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][273] ([Intel XE#1392]) +5 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][274] ([Intel XE#2322]) +3 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_fault_mode@once-invalid-userptr-fault:
    - shard-dg2-set2:     NOTRUN -> [SKIP][275] ([Intel XE#288]) +11 other tests skip
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html

  * igt@xe_exec_fault_mode@once-userptr-invalidate:
    - shard-adlp:         NOTRUN -> [SKIP][276] ([Intel XE#288] / [Intel XE#5561]) +26 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@xe_exec_fault_mode@once-userptr-invalidate.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][277] ([Intel XE#4208]) +220 other tests skip
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html

  * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
    - shard-dg2-set2:     NOTRUN -> [SKIP][278] ([Intel XE#2360])
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-bmg:          [PASS][279] -> [DMESG-WARN][280] ([Intel XE#3876] / [Intel XE#5213])
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_exec_reset@parallel-gt-reset.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-5/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_sip_eudebug@breakpoint-writesip:
    - shard-lnl:          NOTRUN -> [SKIP][281] ([Intel XE#4837]) +8 other tests skip
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@xe_exec_sip_eudebug@breakpoint-writesip.html

  * igt@xe_exec_system_allocator@process-many-execqueues-free:
    - shard-adlp:         NOTRUN -> [SKIP][282] ([Intel XE#4915]) +230 other tests skip
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-8/igt@xe_exec_system_allocator@process-many-execqueues-free.html

  * igt@xe_exec_system_allocator@process-many-stride-mmap-huge:
    - shard-lnl:          NOTRUN -> [SKIP][283] ([Intel XE#4943]) +13 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-8/igt@xe_exec_system_allocator@process-many-stride-mmap-huge.html

  * igt@xe_exec_system_allocator@process-many-stride-mmap-shared-nomemset:
    - shard-dg2-set2:     NOTRUN -> [SKIP][284] ([Intel XE#4915]) +103 other tests skip
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@xe_exec_system_allocator@process-many-stride-mmap-shared-nomemset.html

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

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-lnl:          NOTRUN -> [ABORT][286] ([Intel XE#4917] / [Intel XE#5466])
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-lnl:          NOTRUN -> [ABORT][287] ([Intel XE#4757])
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_live_ktest@xe_bo:
    - shard-dg2-set2:     NOTRUN -> [SKIP][288] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@xe_live_ktest@xe_bo.html
    - shard-adlp:         NOTRUN -> [SKIP][289] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-1/igt@xe_live_ktest@xe_bo.html

  * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][290] ([Intel XE#2229]) +1 other test skip
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-8/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - shard-dg2-set2:     NOTRUN -> [SKIP][291] ([Intel XE#2229])
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
    - shard-adlp:         NOTRUN -> [SKIP][292] ([Intel XE#2229])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-adlp:         NOTRUN -> [SKIP][293] ([Intel XE#2229] / [Intel XE#5488])
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_mmap@pci-membarrier-bad-object:
    - shard-adlp:         NOTRUN -> [SKIP][294] ([Intel XE#5100]) +1 other test skip
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@xe_mmap@pci-membarrier-bad-object.html

  * igt@xe_noexec_ping_pong:
    - shard-adlp:         NOTRUN -> [SKIP][295] ([Intel XE#379] / [Intel XE#5613])
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-8/igt@xe_noexec_ping_pong.html
    - shard-lnl:          NOTRUN -> [SKIP][296] ([Intel XE#379])
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-7/igt@xe_noexec_ping_pong.html

  * igt@xe_oa@buffer-size:
    - shard-adlp:         NOTRUN -> [SKIP][297] ([Intel XE#5103])
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@xe_oa@buffer-size.html

  * igt@xe_oa@non-system-wide-paranoid:
    - shard-adlp:         NOTRUN -> [SKIP][298] ([Intel XE#3573]) +4 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@xe_oa@non-system-wide-paranoid.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][299] ([Intel XE#3573]) +1 other test skip
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@xe_oa@non-system-wide-paranoid.html

  * igt@xe_pat@pat-index-xe2:
    - shard-adlp:         NOTRUN -> [SKIP][300] ([Intel XE#977])
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-adlp:         NOTRUN -> [SKIP][301] ([Intel XE#979])
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-1/igt@xe_pat@pat-index-xelpg.html
    - shard-lnl:          NOTRUN -> [SKIP][302] ([Intel XE#979])
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-8/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@d3cold-i2c:
    - shard-adlp:         NOTRUN -> [SKIP][303] ([Intel XE#5694])
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@xe_pm@d3cold-i2c.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-dg2-set2:     NOTRUN -> [SKIP][304] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@d3hot-i2c:
    - shard-dg2-set2:     NOTRUN -> [SKIP][305] ([Intel XE#5742])
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@xe_pm@d3hot-i2c.html
    - shard-lnl:          NOTRUN -> [SKIP][306] ([Intel XE#5742])
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@xe_pm@d3hot-i2c.html
    - shard-adlp:         NOTRUN -> [SKIP][307] ([Intel XE#5742])
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pm@d3hot-mmap-vram:
    - shard-lnl:          NOTRUN -> [SKIP][308] ([Intel XE#1948])
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@xe_pm@d3hot-mmap-vram.html

  * igt@xe_pm@s4-d3cold-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][309] ([Intel XE#2284] / [Intel XE#366])
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@xe_pm@s4-d3cold-basic-exec.html
    - shard-adlp:         NOTRUN -> [SKIP][310] ([Intel XE#2284] / [Intel XE#366])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@xe_pm@s4-d3cold-basic-exec.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-dg2-set2:     NOTRUN -> [SKIP][311] ([Intel XE#579])
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
    - shard-dg2-set2:     NOTRUN -> [SKIP][312] ([Intel XE#4733]) +1 other test skip
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html

  * igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
    - shard-adlp:         NOTRUN -> [SKIP][313] ([Intel XE#4733] / [Intel XE#5594]) +1 other test skip
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-1/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html

  * igt@xe_query@multigpu-query-engines:
    - shard-dg2-set2:     NOTRUN -> [SKIP][314] ([Intel XE#944])
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-pxp-status:
    - shard-lnl:          NOTRUN -> [SKIP][315] ([Intel XE#944]) +3 other tests skip
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-4/igt@xe_query@multigpu-query-pxp-status.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-adlp:         NOTRUN -> [SKIP][316] ([Intel XE#944]) +5 other tests skip
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-8/igt@xe_query@multigpu-query-uc-fw-version-huc.html
    - shard-bmg:          NOTRUN -> [SKIP][317] ([Intel XE#944])
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-3/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
    - shard-lnl:          NOTRUN -> [SKIP][318] ([Intel XE#4130])
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html

  * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][319] ([Intel XE#4130])
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html

  * igt@xe_vm@munmap-style-unbind-many-either-side-partial:
    - shard-dg2-set2:     [PASS][320] -> [SKIP][321] ([Intel XE#4208]) +179 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html

  
#### Possible fixes ####

  * igt@core_getversion@all-cards:
    - shard-dg2-set2:     [FAIL][322] ([Intel XE#4208]) -> [PASS][323]
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@core_getversion@all-cards.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@core_getversion@all-cards.html

  * igt@fbdev@unaligned-read:
    - shard-dg2-set2:     [SKIP][324] ([Intel XE#2134]) -> [PASS][325]
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@fbdev@unaligned-read.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@fbdev@unaligned-read.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-dg2-set2:     [SKIP][326] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][327] +11 other tests pass
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [SKIP][328] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][329]
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-bmg:          [SKIP][330] ([Intel XE#2291]) -> [PASS][331] +2 other tests pass
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [SKIP][332] ([Intel XE#4302]) -> [PASS][333]
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3:
    - shard-bmg:          [INCOMPLETE][334] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][335] +3 other tests pass
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-bmg:          [SKIP][336] ([Intel XE#2316]) -> [PASS][337] +7 other tests pass
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-8/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@flip-vs-dpms-on-nop-interruptible:
    - shard-adlp:         [DMESG-WARN][338] ([Intel XE#4543]) -> [PASS][339] +5 other tests pass
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-6/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-6/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
    - shard-lnl:          [FAIL][340] ([Intel XE#301]) -> [PASS][341]
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][342] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][343] +4 other tests pass
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-adlp:         [DMESG-FAIL][344] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][345] +1 other test pass
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
    - shard-adlp:         [DMESG-FAIL][346] ([Intel XE#4543]) -> [PASS][347]
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-bmg:          [SKIP][348] ([Intel XE#1503]) -> [PASS][349]
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [SKIP][350] ([Intel XE#3012]) -> [PASS][351]
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [FAIL][352] ([Intel XE#718]) -> [PASS][353]
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_rotation_crc@sprite-rotation-180:
    - shard-dg2-set2:     [SKIP][354] ([Intel XE#4208] / [i915#2575]) -> [PASS][355] +97 other tests pass
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-180.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-180.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-bmg:          [SKIP][356] ([Intel XE#1435]) -> [PASS][357]
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-2/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [FAIL][358] ([Intel XE#4459]) -> [PASS][359] +1 other test pass
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@xe_exec_basic@many-null-rebind:
    - shard-dg2-set2:     [SKIP][360] ([Intel XE#4208]) -> [PASS][361] +221 other tests pass
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_basic@many-null-rebind.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@xe_exec_basic@many-null-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr:
    - shard-dg2-set2:     [SKIP][362] ([Intel XE#1392]) -> [PASS][363]
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-userptr.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-dg2-set2:     [DMESG-WARN][364] ([Intel XE#3876]) -> [PASS][365]
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [SKIP][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382], [PASS][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387], [PASS][388], [PASS][389], [PASS][390], [PASS][391]) ([Intel XE#2457]) -> ([PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [PASS][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416])
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-3/igt@xe_module_load@load.html
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@xe_module_load@load.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-4/igt@xe_module_load@load.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@xe_module_load@load.html
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-7/igt@xe_module_load@load.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@xe_module_load@load.html
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@xe_module_load@load.html
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-2/igt@xe_module_load@load.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-1/igt@xe_module_load@load.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-1/igt@xe_module_load@load.html
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-1/igt@xe_module_load@load.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-8/igt@xe_module_load@load.html
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-5/igt@xe_module_load@load.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-5/igt@xe_module_load@load.html
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-4/igt@xe_module_load@load.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@xe_module_load@load.html
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-4/igt@xe_module_load@load.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-4/igt@xe_module_load@load.html
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-2/igt@xe_module_load@load.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-7/igt@xe_module_load@load.html
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-7/igt@xe_module_load@load.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-5/igt@xe_module_load@load.html
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-2/igt@xe_module_load@load.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-2/igt@xe_module_load@load.html
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-2/igt@xe_module_load@load.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@xe_module_load@load.html
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@xe_module_load@load.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-8/igt@xe_module_load@load.html
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-1/igt@xe_module_load@load.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-3/igt@xe_module_load@load.html
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-3/igt@xe_module_load@load.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-1/igt@xe_module_load@load.html
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-3/igt@xe_module_load@load.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@xe_module_load@load.html

  * igt@xe_vm@bind-array-enobufs:
    - shard-dg2-set2:     [DMESG-FAIL][417] ([Intel XE#3876]) -> [PASS][418]
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_vm@bind-array-enobufs.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@xe_vm@bind-array-enobufs.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-dg2-set2:     [SKIP][419] ([Intel XE#4208] / [i915#2575]) -> [SKIP][420] ([Intel XE#623])
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][421] ([Intel XE#4208]) -> [SKIP][422] ([Intel XE#316]) +1 other test skip
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][423] ([Intel XE#316]) -> [SKIP][424] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][425] ([Intel XE#1124]) -> [SKIP][426] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-dg2-set2:     [SKIP][427] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][428] ([Intel XE#1124]) +7 other tests skip
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][429] ([Intel XE#4208]) -> [SKIP][430] ([Intel XE#610])
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-dg2-set2:     [SKIP][431] ([Intel XE#4208]) -> [SKIP][432] ([Intel XE#1124]) +7 other tests skip
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][433] ([Intel XE#1124]) -> [SKIP][434] ([Intel XE#4208]) +9 other tests skip
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][435] ([Intel XE#2191]) -> [SKIP][436] ([Intel XE#4208] / [i915#2575])
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][437] ([Intel XE#4208] / [i915#2575]) -> [SKIP][438] ([Intel XE#2191])
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][439] ([Intel XE#4208] / [i915#2575]) -> [SKIP][440] ([Intel XE#367]) +4 other tests skip
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][441] ([Intel XE#367]) -> [SKIP][442] ([Intel XE#4208] / [i915#2575]) +1 other test skip
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][443] ([Intel XE#2907]) -> [SKIP][444] ([Intel XE#4208]) +1 other test skip
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
    - shard-dg2-set2:     [SKIP][445] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][446] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs:
    - shard-dg2-set2:     [SKIP][447] ([Intel XE#4208]) -> [SKIP][448] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][449] ([Intel XE#4208]) -> [SKIP][450] ([Intel XE#2907])
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][451] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [SKIP][452] ([Intel XE#4208])
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][453] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [SKIP][454] ([Intel XE#4208])
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
    - shard-dg2-set2:     [SKIP][455] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][456] ([Intel XE#4208]) +5 other tests skip
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2-set2:     [SKIP][457] ([Intel XE#4418]) -> [SKIP][458] ([Intel XE#2351] / [Intel XE#4208])
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-dg2-set2:     [SKIP][459] ([Intel XE#306]) -> [SKIP][460] ([Intel XE#4208] / [i915#2575])
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_chamelium_color@ctm-max.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2-set2:     [SKIP][461] ([Intel XE#4208] / [i915#2575]) -> [SKIP][462] ([Intel XE#306]) +2 other tests skip
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_chamelium_color@gamma.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-dg2-set2:     [SKIP][463] ([Intel XE#373]) -> [SKIP][464] ([Intel XE#4208] / [i915#2575]) +5 other tests skip
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_chamelium_frames@dp-crc-single.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
    - shard-dg2-set2:     [SKIP][465] ([Intel XE#4208] / [i915#2575]) -> [SKIP][466] ([Intel XE#373]) +10 other tests skip
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html

  * igt@kms_content_protection@legacy:
    - shard-dg2-set2:     [FAIL][467] ([Intel XE#1178]) -> [SKIP][468] ([Intel XE#4208] / [i915#2575])
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_content_protection@legacy.html
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@lic-type-0:
    - shard-dg2-set2:     [SKIP][469] ([Intel XE#4208] / [i915#2575]) -> [FAIL][470] ([Intel XE#1178]) +1 other test fail
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_content_protection@lic-type-0.html
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@kms_content_protection@lic-type-0.html
    - shard-bmg:          [SKIP][471] ([Intel XE#2341]) -> [FAIL][472] ([Intel XE#1178])
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-3/igt@kms_content_protection@lic-type-0.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-set2:     [SKIP][473] ([Intel XE#308]) -> [SKIP][474] ([Intel XE#4208] / [i915#2575])
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-dg2-set2:     [SKIP][475] ([Intel XE#4208] / [i915#2575]) -> [SKIP][476] ([Intel XE#308]) +2 other tests skip
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-dg2-set2:     [SKIP][477] ([Intel XE#4208] / [i915#2575]) -> [SKIP][478] ([Intel XE#455]) +4 other tests skip
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-max-size.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-max-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-dg2-set2:     [SKIP][479] ([Intel XE#4208] / [i915#2575]) -> [SKIP][480] ([Intel XE#323])
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-dg2-set2:     [SKIP][481] ([Intel XE#4356]) -> [SKIP][482] ([Intel XE#4208])
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_dp_link_training@uhbr-sst.html
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-dg2-set2:     [SKIP][483] ([Intel XE#4331]) -> [SKIP][484] ([Intel XE#4208])
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-dg2-set2:     [SKIP][485] ([Intel XE#455]) -> [SKIP][486] ([Intel XE#2351] / [Intel XE#4208])
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_dsc@dsc-with-bpc-formats.html
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-dg2-set2:     [SKIP][487] ([Intel XE#4208]) -> [SKIP][488] ([Intel XE#455]) +3 other tests skip
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-dg2-set2:     [SKIP][489] ([Intel XE#4422]) -> [SKIP][490] ([Intel XE#4208])
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-dg2-set2:     [SKIP][491] ([Intel XE#4208]) -> [SKIP][492] ([Intel XE#4422])
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     [SKIP][493] ([Intel XE#4208]) -> [SKIP][494] ([Intel XE#776])
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_fbcon_fbt@psr.html
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@kms_fbcon_fbt@psr.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-dg2-set2:     [SKIP][495] ([Intel XE#776]) -> [SKIP][496] ([Intel XE#4208])
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-dg2-set2:     [SKIP][497] ([Intel XE#4208] / [i915#2575]) -> [SKIP][498] ([Intel XE#701])
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     [SKIP][499] ([Intel XE#1135]) -> [SKIP][500] ([Intel XE#4208] / [i915#2575])
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_feature_discovery@psr2.html
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [SKIP][501] ([Intel XE#4208] / [i915#2575]) -> [ABORT][502] ([Intel XE#3970]) +1 other test abort
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-dg2-set2:     [SKIP][503] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][504] ([Intel XE#455]) +3 other tests skip
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-dg2-set2:     [SKIP][505] ([Intel XE#455]) -> [SKIP][506] ([Intel XE#4208]) +1 other test skip
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][507] ([Intel XE#4208]) -> [SKIP][508] ([Intel XE#651]) +15 other tests skip
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][509] ([Intel XE#2311]) -> [SKIP][510] ([Intel XE#2312]) +13 other tests skip
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][511] ([Intel XE#2312]) -> [SKIP][512] ([Intel XE#2311]) +10 other tests skip
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
    - shard-dg2-set2:     [SKIP][513] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][514] ([Intel XE#651]) +12 other tests skip
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][515] ([Intel XE#5390]) -> [SKIP][516] ([Intel XE#2312]) +5 other tests skip
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][517] ([Intel XE#2312]) -> [SKIP][518] ([Intel XE#5390]) +5 other tests skip
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][519] ([Intel XE#651]) -> [SKIP][520] ([Intel XE#4208]) +21 other tests skip
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][521] ([Intel XE#651]) -> [SKIP][522] ([Intel XE#2351] / [Intel XE#4208]) +6 other tests skip
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][523] ([Intel XE#4208]) -> [SKIP][524] ([Intel XE#653]) +19 other tests skip
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][525] ([Intel XE#2312]) -> [SKIP][526] ([Intel XE#2313]) +15 other tests skip
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][527] ([Intel XE#653]) -> [SKIP][528] ([Intel XE#4208]) +16 other tests skip
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][529] ([Intel XE#2313]) -> [SKIP][530] ([Intel XE#2312]) +11 other tests skip
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2-set2:     [SKIP][531] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][532] ([Intel XE#658])
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     [SKIP][533] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][534] ([Intel XE#653]) +11 other tests skip
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
    - shard-dg2-set2:     [SKIP][535] ([Intel XE#653]) -> [SKIP][536] ([Intel XE#2351] / [Intel XE#4208]) +6 other tests skip
   [535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
   [536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-dg2-set2:     [SKIP][537] ([Intel XE#2925]) -> [SKIP][538] ([Intel XE#4208])
   [537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_joiner@basic-force-ultra-joiner.html
   [538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-dg2-set2:     [SKIP][539] ([Intel XE#4208]) -> [SKIP][540] ([Intel XE#4298])
   [539]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_joiner@basic-max-non-joiner.html
   [540]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-dg2-set2:     [SKIP][541] ([Intel XE#4208]) -> [SKIP][542] ([Intel XE#2925])
   [541]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [542]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-dg2-set2:     [SKIP][543] ([Intel XE#4208]) -> [SKIP][544] ([Intel XE#2927])
   [543]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [544]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-dg2-set2:     [SKIP][545] ([Intel XE#4208] / [i915#2575]) -> [FAIL][546] ([Intel XE#616])
   [545]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_plane@plane-panning-bottom-right-suspend.html
   [546]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-dg2-set2:     [SKIP][547] ([Intel XE#4208] / [i915#2575]) -> [SKIP][548] ([Intel XE#5021])
   [547]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_plane_multiple@2x-tiling-y.html
   [548]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-dg2-set2:     [SKIP][549] ([Intel XE#5021]) -> [SKIP][550] ([Intel XE#4208] / [i915#2575])
   [549]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-yf.html
   [550]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg2-set2:     [SKIP][551] ([Intel XE#4208]) -> [SKIP][552] ([Intel XE#870])
   [551]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_pm_backlight@bad-brightness.html
   [552]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-dg2-set2:     [SKIP][553] ([Intel XE#4208]) -> [SKIP][554] ([Intel XE#2938])
   [553]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_pm_backlight@brightness-with-dpms.html
   [554]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade:
    - shard-dg2-set2:     [SKIP][555] ([Intel XE#870]) -> [SKIP][556] ([Intel XE#4208])
   [555]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_pm_backlight@fade.html
   [556]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2-set2:     [SKIP][557] ([Intel XE#1129]) -> [SKIP][558] ([Intel XE#4208])
   [557]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html
   [558]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
    - shard-dg2-set2:     [SKIP][559] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][560] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip
   [559]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
   [560]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][561] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][562] ([Intel XE#1406] / [Intel XE#4208]) +5 other tests skip
   [561]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
   [562]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2-set2:     [SKIP][563] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][564] ([Intel XE#1122] / [Intel XE#1406]) +1 other test skip
   [563]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_psr2_su@page_flip-p010.html
   [564]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-pr-cursor-plane-move:
    - shard-dg2-set2:     [SKIP][565] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][566] ([Intel XE#1406] / [Intel XE#4208]) +9 other tests skip
   [565]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@kms_psr@fbc-pr-cursor-plane-move.html
   [566]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_psr@fbc-pr-cursor-plane-move.html

  * igt@kms_psr@fbc-pr-sprite-render:
    - shard-dg2-set2:     [SKIP][567] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][568] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
   [567]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_psr@fbc-pr-sprite-render.html
   [568]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-render.html

  * igt@kms_psr@fbc-psr2-sprite-plane-move:
    - shard-dg2-set2:     [SKIP][569] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][570] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +8 other tests skip
   [569]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html
   [570]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html

  * igt@kms_psr@pr-dpms:
    - shard-dg2-set2:     [SKIP][571] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) -> [SKIP][572] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +6 other tests skip
   [571]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_psr@pr-dpms.html
   [572]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_psr@pr-dpms.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-dg2-set2:     [SKIP][573] ([Intel XE#1406] / [Intel XE#2939]) -> [SKIP][574] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208])
   [573]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [574]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-dg2-set2:     [SKIP][575] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][576] ([Intel XE#1406] / [Intel XE#2939])
   [575]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [576]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-dg2-set2:     [SKIP][577] ([Intel XE#3414]) -> [SKIP][578] ([Intel XE#4208] / [i915#2575]) +1 other test skip
   [577]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-90.html
   [578]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2-set2:     [SKIP][579] ([Intel XE#1127]) -> [SKIP][580] ([Intel XE#4208] / [i915#2575])
   [579]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
   [580]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-dg2-set2:     [SKIP][581] ([Intel XE#4208] / [i915#2575]) -> [SKIP][582] ([Intel XE#1127])
   [581]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
   [582]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@sprite-rotation-270:
    - shard-dg2-set2:     [SKIP][583] ([Intel XE#4208] / [i915#2575]) -> [SKIP][584] ([Intel XE#3414]) +3 other tests skip
   [583]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-270.html
   [584]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-270.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-dg2-set2:     [SKIP][585] ([Intel XE#455]) -> [SKIP][586] ([Intel XE#4208] / [i915#2575]) +5 other tests skip
   [585]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@kms_scaling_modes@scaling-mode-full-aspect.html
   [586]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [FAIL][587] ([Intel XE#1729]) -> [SKIP][588] ([Intel XE#4208] / [i915#2575])
   [587]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
   [588]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     [SKIP][589] ([Intel XE#4208] / [i915#2575]) -> [SKIP][590] ([Intel XE#330])
   [589]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html
   [590]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html

  * igt@xe_compute_preempt@compute-preempt:
    - shard-dg2-set2:     [SKIP][591] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][592] ([Intel XE#4208])
   [591]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
   [592]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@xe_compute_preempt@compute-preempt.html

  * igt@xe_copy_basic@mem-copy-linear-0xfd:
    - shard-dg2-set2:     [SKIP][593] ([Intel XE#4208]) -> [SKIP][594] ([Intel XE#1123])
   [593]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfd.html
   [594]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfd.html

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-dg2-set2:     [SKIP][595] ([Intel XE#1126]) -> [SKIP][596] ([Intel XE#4208]) +1 other test skip
   [595]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfd.html
   [596]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_eu_stall@invalid-event-report-count:
    - shard-dg2-set2:     [SKIP][597] ([Intel XE#4208]) -> [SKIP][598] ([Intel XE#5626]) +2 other tests skip
   [597]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_eu_stall@invalid-event-report-count.html
   [598]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@xe_eu_stall@invalid-event-report-count.html

  * igt@xe_eudebug@basic-close:
    - shard-dg2-set2:     [SKIP][599] ([Intel XE#4208]) -> [SKIP][600] ([Intel XE#4837]) +17 other tests skip
   [599]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_eudebug@basic-close.html
   [600]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@xe_eudebug@basic-close.html

  * igt@xe_eudebug@vm-bind-clear-faultable:
    - shard-dg2-set2:     [SKIP][601] ([Intel XE#4837]) -> [SKIP][602] ([Intel XE#4208]) +11 other tests skip
   [601]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_eudebug@vm-bind-clear-faultable.html
   [602]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@xe_eudebug@vm-bind-clear-faultable.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
    - shard-dg2-set2:     [SKIP][603] ([Intel XE#1392]) -> [SKIP][604] ([Intel XE#4208]) +2 other tests skip
   [603]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
   [604]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm:
    - shard-dg2-set2:     [SKIP][605] ([Intel XE#288]) -> [SKIP][606] ([Intel XE#4208]) +26 other tests skip
   [605]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm.html
   [606]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-imm:
    - shard-dg2-set2:     [SKIP][607] ([Intel XE#4208]) -> [SKIP][608] ([Intel XE#288]) +30 other tests skip
   [607]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
   [608]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset:
    - shard-dg2-set2:     [SKIP][609] ([Intel XE#4208]) -> [SKIP][610] ([Intel XE#4915]) +288 other tests skip
   [609]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset.html
   [610]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc:
    - shard-dg2-set2:     [SKIP][611] ([Intel XE#4915]) -> [SKIP][612] ([Intel XE#4208]) +220 other tests skip
   [611]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-432/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc.html
   [612]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-dg2-set2:     [SKIP][613] ([Intel XE#4208]) -> [ABORT][614] ([Intel XE#4917])
   [613]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [614]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_oa@closed-fd-and-unmapped-access:
    - shard-dg2-set2:     [SKIP][615] ([Intel XE#4208]) -> [SKIP][616] ([Intel XE#3573]) +10 other tests skip
   [615]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html
   [616]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-464/igt@xe_oa@closed-fd-and-unmapped-access.html

  * igt@xe_oa@polling-small-buf:
    - shard-dg2-set2:     [SKIP][617] ([Intel XE#3573]) -> [SKIP][618] ([Intel XE#4208]) +6 other tests skip
   [617]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_oa@polling-small-buf.html
   [618]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@xe_oa@polling-small-buf.html

  * igt@xe_pm@d3cold-basic:
    - shard-dg2-set2:     [SKIP][619] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][620] ([Intel XE#4208])
   [619]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-436/igt@xe_pm@d3cold-basic.html
   [620]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@xe_pm@d3cold-basic.html

  * igt@xe_pm@d3cold-i2c:
    - shard-dg2-set2:     [SKIP][621] ([Intel XE#5694]) -> [SKIP][622] ([Intel XE#4208])
   [621]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_pm@d3cold-i2c.html
   [622]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@xe_pm@d3cold-i2c.html

  * igt@xe_pm@d3cold-mocs:
    - shard-dg2-set2:     [SKIP][623] ([Intel XE#4208]) -> [SKIP][624] ([Intel XE#2284])
   [623]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_pm@d3cold-mocs.html
   [624]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-dg2-set2:     [SKIP][625] ([Intel XE#4208]) -> [SKIP][626] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [625]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html
   [626]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pxp@pxp-stale-queue-post-suspend:
    - shard-dg2-set2:     [SKIP][627] ([Intel XE#4208]) -> [SKIP][628] ([Intel XE#4733])
   [627]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-435/igt@xe_pxp@pxp-stale-queue-post-suspend.html
   [628]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-433/igt@xe_pxp@pxp-stale-queue-post-suspend.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-dg2-set2:     [SKIP][629] ([Intel XE#4208]) -> [SKIP][630] ([Intel XE#944]) +1 other test skip
   [629]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [630]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-436/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-dg2-set2:     [SKIP][631] ([Intel XE#944]) -> [SKIP][632] ([Intel XE#4208]) +3 other tests skip
   [631]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_query@multigpu-query-mem-usage.html
   [632]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-435/igt@xe_query@multigpu-query-mem-usage.html

  * igt@xe_render_copy@render-stress-0-copies:
    - shard-dg2-set2:     [SKIP][633] ([Intel XE#4208]) -> [SKIP][634] ([Intel XE#4814])
   [633]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-434/igt@xe_render_copy@render-stress-0-copies.html
   [634]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-466/igt@xe_render_copy@render-stress-0-copies.html

  * igt@xe_sriov_auto_provisioning@exclusive-ranges:
    - shard-dg2-set2:     [SKIP][635] ([Intel XE#4130]) -> [SKIP][636] ([Intel XE#4208])
   [635]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-464/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
   [636]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@xe_sriov_auto_provisioning@exclusive-ranges.html

  * igt@xe_sriov_scheduling@equal-throughput:
    - shard-dg2-set2:     [SKIP][637] ([Intel XE#4351]) -> [SKIP][638] ([Intel XE#4208])
   [637]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578/shard-dg2-433/igt@xe_sriov_scheduling@equal-throughput.html
   [638]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153561v1/shard-dg2-434/igt@xe_sriov_scheduling@equal-throughput.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
  [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#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4757
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
  [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#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
  [Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
  [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
  [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
  [Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
  [Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
  [Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
  [Intel XE#5613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5613
  [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#5890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5890
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575


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

  * IGT: IGT_8511 -> IGT_8512
  * Linux: xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578 -> xe-pw-153561v1

  IGT_8511: 8511
  IGT_8512: 8512
  xe-3623-3a2760f3080e5188b19cdb4640cec5eb0926d578: 3a2760f3080e5188b19cdb4640cec5eb0926d578
  xe-pw-153561v1: 153561v1

== Logs ==

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

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

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

end of thread, other threads:[~2025-08-27 13:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-27 10:10 [PATCH] drm/xe/migrate: Remove unneeded emit_pte() when copying CCS only Sanjay Yadav
2025-08-27 10:18 ` ✓ CI.KUnit: success for " Patchwork
2025-08-27 10:38 ` [PATCH] " Matthew Auld
2025-08-27 10:58 ` ✗ Xe.CI.BAT: failure for " Patchwork
2025-08-27 13:14 ` [PATCH] " Matthew Auld
2025-08-27 13:30 ` ✗ 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;
as well as URLs for NNTP newsgroup(s).