Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Opportunistically skip TLB invalidaion on unbind
@ 2025-06-13 21:02 Matthew Brost
  2025-06-13 21:02 ` [PATCH v2 1/2] drm/xe: Add xe_vm_has_valid_gpu_pages helper Matthew Brost
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Matthew Brost @ 2025-06-13 21:02 UTC (permalink / raw)
  To: intel-xe; +Cc: francois.dugast, thomas.hellstrom, himal.prasad.ghimiray

Add xe_vm_has_valid_gpu_pages helper and sOpportunistically skip TLB
invalidation on unbind.

Matt

Matthew Brost (2):
  drm/xe: Add xe_vm_has_valid_gpu_pages helper
  drm/xe: Opportunistically skip TLB invalidaion on unbind

 drivers/gpu/drm/xe/xe_gt_pagefault.c |  9 ++-------
 drivers/gpu/drm/xe/xe_pt.c           | 14 +++++++++-----
 drivers/gpu/drm/xe/xe_svm.c          | 16 +++++++---------
 drivers/gpu/drm/xe/xe_vm.c           |  2 +-
 drivers/gpu/drm/xe/xe_vm.h           | 19 +++++++++++++++++++
 5 files changed, 38 insertions(+), 22 deletions(-)

-- 
2.34.1


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

* [PATCH v2 1/2] drm/xe: Add xe_vm_has_valid_gpu_pages helper
  2025-06-13 21:02 [PATCH v2 0/2] Opportunistically skip TLB invalidaion on unbind Matthew Brost
@ 2025-06-13 21:02 ` Matthew Brost
  2025-06-13 21:02 ` [PATCH v2 2/2] drm/xe: Opportunistically skip TLB invalidaion on unbind Matthew Brost
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Matthew Brost @ 2025-06-13 21:02 UTC (permalink / raw)
  To: intel-xe; +Cc: francois.dugast, thomas.hellstrom, himal.prasad.ghimiray

Rather than having multiple READ_ONCE of the tile_* fields and comments
in code, use helper with kernel doc for single access point and clear
rules.

Suggested-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
 drivers/gpu/drm/xe/xe_gt_pagefault.c |  9 ++-------
 drivers/gpu/drm/xe/xe_pt.c           |  6 +++---
 drivers/gpu/drm/xe/xe_svm.c          | 16 +++++++---------
 drivers/gpu/drm/xe/xe_vm.c           |  2 +-
 drivers/gpu/drm/xe/xe_vm.h           | 19 +++++++++++++++++++
 5 files changed, 32 insertions(+), 20 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_gt_pagefault.c b/drivers/gpu/drm/xe/xe_gt_pagefault.c
index e2d975b2fddb..adfd6a26b5d8 100644
--- a/drivers/gpu/drm/xe/xe_gt_pagefault.c
+++ b/drivers/gpu/drm/xe/xe_gt_pagefault.c
@@ -69,15 +69,10 @@ static bool access_is_atomic(enum access_type access_type)
 
 static bool vma_is_valid(struct xe_tile *tile, struct xe_vma *vma)
 {
-	/*
-	 * Advisory only check whether the VMA currently has a valid mapping,
-	 * READ_ONCE pairs with WRITE_ONCE in xe_pt.c
-	 */
-	return BIT(tile->id) & READ_ONCE(vma->tile_present) &&
-		!(BIT(tile->id) & READ_ONCE(vma->tile_invalidated));
+	return xe_vm_has_valid_gpu_pages(tile, vma->tile_present,
+					 vma->tile_invalidated);
 }
 
-
 static int xe_pf_begin(struct drm_exec *exec, struct xe_vma *vma,
 		       bool atomic, unsigned int id)
 {
diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
index f39d5cc9f411..59496c1a1e77 100644
--- a/drivers/gpu/drm/xe/xe_pt.c
+++ b/drivers/gpu/drm/xe/xe_pt.c
@@ -2196,7 +2196,7 @@ static void bind_op_commit(struct xe_vm *vm, struct xe_tile *tile,
 					   DMA_RESV_USAGE_KERNEL :
 					   DMA_RESV_USAGE_BOOKKEEP);
 	}
-	/* All WRITE_ONCE pair with READ_ONCE in xe_gt_pagefault.c */
+	/* All WRITE_ONCE pair with READ_ONCE in xe_vm_has_valid_gpu_pages() */
 	WRITE_ONCE(vma->tile_present, vma->tile_present | BIT(tile->id));
 	if (invalidate_on_bind)
 		WRITE_ONCE(vma->tile_invalidated,
@@ -2255,7 +2255,7 @@ static void range_present_and_invalidated_tile(struct xe_vm *vm,
 					       struct xe_svm_range *range,
 					       u8 tile_id)
 {
-	/* WRITE_ONCE pairs with READ_ONCE in xe_svm.c */
+	/* All WRITE_ONCE pair with READ_ONCE in xe_vm_has_valid_gpu_pages() */
 
 	lockdep_assert_held(&vm->svm.gpusvm.notifier_lock);
 
@@ -2324,7 +2324,7 @@ static void op_commit(struct xe_vm *vm,
 	}
 	case DRM_GPUVA_OP_DRIVER:
 	{
-		/* WRITE_ONCE pairs with READ_ONCE in xe_svm.c */
+		/* WRITE_ONCE pairs with READ_ONCE in xe_vm_has_valid_gpu_pages() */
 		if (op->subop == XE_VMA_SUBOP_MAP_RANGE)
 			range_present_and_invalidated_tile(vm, op->map_range.range, tile->id);
 		else if (op->subop == XE_VMA_SUBOP_UNMAP_RANGE)
diff --git a/drivers/gpu/drm/xe/xe_svm.c b/drivers/gpu/drm/xe/xe_svm.c
index 2fbbd6a604ea..ce6b9e637b16 100644
--- a/drivers/gpu/drm/xe/xe_svm.c
+++ b/drivers/gpu/drm/xe/xe_svm.c
@@ -141,7 +141,10 @@ xe_svm_range_notifier_event_begin(struct xe_vm *vm, struct drm_gpusvm_range *r,
 	for_each_tile(tile, xe, id)
 		if (xe_pt_zap_ptes_range(tile, vm, range)) {
 			tile_mask |= BIT(id);
-			/* Pairs with READ_ONCE in xe_svm_range_is_valid */
+			/*
+			 * WRITE_ONCE pairs with READ_ONCE in
+			 * xe_vm_has_valid_gpu_pages()
+			 */
 			WRITE_ONCE(range->tile_invalidated,
 				   range->tile_invalidated | BIT(id));
 		}
@@ -605,14 +608,9 @@ static bool xe_svm_range_is_valid(struct xe_svm_range *range,
 				  struct xe_tile *tile,
 				  bool devmem_only)
 {
-	/*
-	 * Advisory only check whether the range currently has a valid mapping,
-	 * READ_ONCE pairs with WRITE_ONCE in xe_pt.c,
-	 * xe_svm_range_notifier_event_begin
-	 */
-	return ((READ_ONCE(range->tile_present) &
-		 ~READ_ONCE(range->tile_invalidated)) & BIT(tile->id)) &&
-		(!devmem_only || xe_svm_range_in_vram(range));
+	return (xe_vm_has_valid_gpu_pages(tile, range->tile_present,
+					  range->tile_invalidated) &&
+		(!devmem_only || xe_svm_range_in_vram(range)));
 }
 
 /** xe_svm_range_migrate_to_smem() - Move range pages from VRAM to SMEM
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 6ef8c4dab647..2bef0537a3c9 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -3961,7 +3961,7 @@ int xe_vm_invalidate_vma(struct xe_vma *vma)
 	ret = xe_vm_range_tilemask_tlb_invalidation(xe_vma_vm(vma), xe_vma_start(vma),
 						    xe_vma_end(vma), tile_mask);
 
-	/* WRITE_ONCE pair with READ_ONCE in xe_gt_pagefault.c */
+	/* WRITE_ONCE pairs with READ_ONCE in xe_vm_has_valid_gpu_pages() */
 	WRITE_ONCE(vma->tile_invalidated, vma->tile_mask);
 
 	return ret;
diff --git a/drivers/gpu/drm/xe/xe_vm.h b/drivers/gpu/drm/xe/xe_vm.h
index acd3fd6c605b..75eb7a1e2b83 100644
--- a/drivers/gpu/drm/xe/xe_vm.h
+++ b/drivers/gpu/drm/xe/xe_vm.h
@@ -375,6 +375,25 @@ static inline bool xe_vm_is_validating(struct xe_vm *vm)
 	return false;
 }
 
+/**
+ * xe_vm_has_valid_gpu_pages() - Advisory helper to check if VMA or SVM range has
+ * valid GPU pages
+ * @tile: The tile which the GPU pages belong to
+ * @tile_present: Tile present mask
+ * @tile_invalidated: Tile invalidated mask
+ *
+ * The READ_ONCEs pair with WRITE_ONCEs in either the TLB invalidation paths
+ * (xe_vm.c, xe_svm.c) or the binding paths (xe_pt.c). These are not reliable
+ * without the notifier lock in userptr or SVM cases, and not reliable without
+ * the BO dma-resv lock in the BO case. As such, they should only be used in
+ * opportunistic cases (e.g., skipping a page fault fix or not skipping a TLB
+ * invalidation) where it is harmless.
+ *
+ * Return: True is there are valid GPU pages, False otherwise
+ */
+#define xe_vm_has_valid_gpu_pages(tile, tile_present, tile_invalidated)	\
+	((READ_ONCE(tile_present) & ~READ_ONCE(tile_invalidated)) & BIT(tile->id))
+
 #if IS_ENABLED(CONFIG_DRM_XE_USERPTR_INVAL_INJECT)
 void xe_vma_userptr_force_invalidate(struct xe_userptr_vma *uvma);
 #else
-- 
2.34.1


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

* [PATCH v2 2/2] drm/xe: Opportunistically skip TLB invalidaion on unbind
  2025-06-13 21:02 [PATCH v2 0/2] Opportunistically skip TLB invalidaion on unbind Matthew Brost
  2025-06-13 21:02 ` [PATCH v2 1/2] drm/xe: Add xe_vm_has_valid_gpu_pages helper Matthew Brost
@ 2025-06-13 21:02 ` Matthew Brost
  2025-06-15  3:56   ` Matthew Brost
  2025-06-13 23:22 ` ✗ CI.checkpatch: warning for " Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 8+ messages in thread
From: Matthew Brost @ 2025-06-13 21:02 UTC (permalink / raw)
  To: intel-xe; +Cc: francois.dugast, thomas.hellstrom, himal.prasad.ghimiray

If a range or VMA is invalidated and scratch page is disabled, there
is no reason to issue a TLB invalidation on unbind, skip TLB
innvalidation is this condition is true. This is an opportunistic check
as it is done without the notifier lock, thus it possible for the range
or VMA to be invalidated after this check is performed.

This should improve performance of the SVM garbage collector, for
example, xe_exec_system_allocator --r many-stride-new-prefetch, went
~20s to ~9.5s on a BMG.

v2:
 - Use helper for valid check (Thomas)

Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>>
---
 drivers/gpu/drm/xe/xe_pt.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
index 59496c1a1e77..39947fd5c3a2 100644
--- a/drivers/gpu/drm/xe/xe_pt.c
+++ b/drivers/gpu/drm/xe/xe_pt.c
@@ -1988,7 +1988,9 @@ static int unbind_op_prepare(struct xe_tile *tile,
 					 xe_vma_end(vma));
 	++pt_update_ops->current_op;
 	pt_update_ops->needs_userptr_lock |= xe_vma_is_userptr(vma);
-	pt_update_ops->needs_invalidation = true;
+	pt_update_ops->needs_invalidation |= xe_vm_has_scratch(xe_vma_vm(vma)) ||
+		xe_vm_has_valid_gpu_pages(tile, vma->tile_present,
+					  vma->tile_invalidated);
 
 	xe_pt_commit_prepare_unbind(vma, pt_op->entries, pt_op->num_entries);
 
@@ -2023,7 +2025,9 @@ static int unbind_range_prepare(struct xe_vm *vm,
 					 range->base.itree.last + 1);
 	++pt_update_ops->current_op;
 	pt_update_ops->needs_svm_lock = true;
-	pt_update_ops->needs_invalidation = true;
+	pt_update_ops->needs_invalidation |= xe_vm_has_scratch(vm) ||
+		xe_vm_has_valid_gpu_pages(tile, range->tile_present,
+					  range->tile_invalidated);
 
 	xe_pt_commit_prepare_unbind(XE_INVALID_VMA, pt_op->entries,
 				    pt_op->num_entries);
-- 
2.34.1


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

* ✗ CI.checkpatch: warning for Opportunistically skip TLB invalidaion on unbind
  2025-06-13 21:02 [PATCH v2 0/2] Opportunistically skip TLB invalidaion on unbind Matthew Brost
  2025-06-13 21:02 ` [PATCH v2 1/2] drm/xe: Add xe_vm_has_valid_gpu_pages helper Matthew Brost
  2025-06-13 21:02 ` [PATCH v2 2/2] drm/xe: Opportunistically skip TLB invalidaion on unbind Matthew Brost
@ 2025-06-13 23:22 ` Patchwork
  2025-06-13 23:23 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-13 23:22 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

== Series Details ==

Series: Opportunistically skip TLB invalidaion on unbind
URL   : https://patchwork.freedesktop.org/series/150257/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
f8ff75ae1d2127635239b134695774ed4045d05b
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 80b080aa3eb62b25e001b3580686e9b03f481775
Author: Matthew Brost <matthew.brost@intel.com>
Date:   Fri Jun 13 14:02:42 2025 -0700

    drm/xe: Opportunistically skip TLB invalidaion on unbind
    
    If a range or VMA is invalidated and scratch page is disabled, there
    is no reason to issue a TLB invalidation on unbind, skip TLB
    innvalidation is this condition is true. This is an opportunistic check
    as it is done without the notifier lock, thus it possible for the range
    or VMA to be invalidated after this check is performed.
    
    This should improve performance of the SVM garbage collector, for
    example, xe_exec_system_allocator --r many-stride-new-prefetch, went
    ~20s to ~9.5s on a BMG.
    
    v2:
     - Use helper for valid check (Thomas)
    
    Signed-off-by: Matthew Brost <matthew.brost@intel.com>
    Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>>
+ /mt/dim checkpatch 4d016d6e602638e0ebc3895331224e057508c07a drm-intel
c41d972cfa04 drm/xe: Add xe_vm_has_valid_gpu_pages helper
-:140: CHECK:MACRO_ARG_PRECEDENCE: Macro argument 'tile' may be better as '(tile)' to avoid precedence issues
#140: FILE: drivers/gpu/drm/xe/xe_vm.h:394:
+#define xe_vm_has_valid_gpu_pages(tile, tile_present, tile_invalidated)	\
+	((READ_ONCE(tile_present) & ~READ_ONCE(tile_invalidated)) & BIT(tile->id))

total: 0 errors, 0 warnings, 1 checks, 102 lines checked
80b080aa3eb6 drm/xe: Opportunistically skip TLB invalidaion on unbind



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

* ✓ CI.KUnit: success for Opportunistically skip TLB invalidaion on unbind
  2025-06-13 21:02 [PATCH v2 0/2] Opportunistically skip TLB invalidaion on unbind Matthew Brost
                   ` (2 preceding siblings ...)
  2025-06-13 23:22 ` ✗ CI.checkpatch: warning for " Patchwork
@ 2025-06-13 23:23 ` Patchwork
  2025-06-14  0:13 ` ✓ Xe.CI.BAT: " Patchwork
  2025-06-16  0:15 ` ✗ Xe.CI.Full: failure " Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-13 23:23 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

== Series Details ==

Series: Opportunistically skip TLB invalidaion on unbind
URL   : https://patchwork.freedesktop.org/series/150257/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[23:22:18] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:22:22] 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
[23:22:49] Starting KUnit Kernel (1/1)...
[23:22:49] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:22:49] ================== guc_buf (11 subtests) ===================
[23:22:49] [PASSED] test_smallest
[23:22:49] [PASSED] test_largest
[23:22:49] [PASSED] test_granular
[23:22:49] [PASSED] test_unique
[23:22:49] [PASSED] test_overlap
[23:22:49] [PASSED] test_reusable
[23:22:49] [PASSED] test_too_big
[23:22:49] [PASSED] test_flush
[23:22:49] [PASSED] test_lookup
[23:22:49] [PASSED] test_data
[23:22:49] [PASSED] test_class
[23:22:49] ===================== [PASSED] guc_buf =====================
[23:22:49] =================== guc_dbm (7 subtests) ===================
[23:22:49] [PASSED] test_empty
[23:22:49] [PASSED] test_default
[23:22:49] ======================== test_size  ========================
[23:22:49] [PASSED] 4
[23:22:49] [PASSED] 8
[23:22:49] [PASSED] 32
[23:22:49] [PASSED] 256
[23:22:49] ==================== [PASSED] test_size ====================
[23:22:49] ======================= test_reuse  ========================
[23:22:49] [PASSED] 4
[23:22:49] [PASSED] 8
[23:22:49] [PASSED] 32
[23:22:49] [PASSED] 256
[23:22:49] =================== [PASSED] test_reuse ====================
[23:22:49] =================== test_range_overlap  ====================
[23:22:49] [PASSED] 4
[23:22:49] [PASSED] 8
[23:22:49] [PASSED] 32
[23:22:49] [PASSED] 256
[23:22:49] =============== [PASSED] test_range_overlap ================
[23:22:49] =================== test_range_compact  ====================
[23:22:49] [PASSED] 4
[23:22:49] [PASSED] 8
[23:22:49] [PASSED] 32
[23:22:49] [PASSED] 256
[23:22:49] =============== [PASSED] test_range_compact ================
[23:22:49] ==================== test_range_spare  =====================
[23:22:49] [PASSED] 4
[23:22:49] [PASSED] 8
[23:22:49] [PASSED] 32
[23:22:49] [PASSED] 256
[23:22:49] ================ [PASSED] test_range_spare =================
[23:22:49] ===================== [PASSED] guc_dbm =====================
[23:22:49] =================== guc_idm (6 subtests) ===================
[23:22:49] [PASSED] bad_init
[23:22:49] [PASSED] no_init
[23:22:49] [PASSED] init_fini
[23:22:49] [PASSED] check_used
[23:22:49] [PASSED] check_quota
[23:22:49] [PASSED] check_all
[23:22:49] ===================== [PASSED] guc_idm =====================
[23:22:49] ================== no_relay (3 subtests) ===================
[23:22:49] [PASSED] xe_drops_guc2pf_if_not_ready
[23:22:49] [PASSED] xe_drops_guc2vf_if_not_ready
[23:22:49] [PASSED] xe_rejects_send_if_not_ready
[23:22:49] ==================== [PASSED] no_relay =====================
[23:22:49] ================== pf_relay (14 subtests) ==================
[23:22:49] [PASSED] pf_rejects_guc2pf_too_short
[23:22:49] [PASSED] pf_rejects_guc2pf_too_long
[23:22:49] [PASSED] pf_rejects_guc2pf_no_payload
[23:22:49] [PASSED] pf_fails_no_payload
[23:22:49] [PASSED] pf_fails_bad_origin
[23:22:49] [PASSED] pf_fails_bad_type
[23:22:49] [PASSED] pf_txn_reports_error
[23:22:49] [PASSED] pf_txn_sends_pf2guc
[23:22:49] [PASSED] pf_sends_pf2guc
[23:22:49] [SKIPPED] pf_loopback_nop
[23:22:49] [SKIPPED] pf_loopback_echo
[23:22:49] [SKIPPED] pf_loopback_fail
[23:22:49] [SKIPPED] pf_loopback_busy
[23:22:49] [SKIPPED] pf_loopback_retry
[23:22:49] ==================== [PASSED] pf_relay =====================
[23:22:49] ================== vf_relay (3 subtests) ===================
[23:22:49] [PASSED] vf_rejects_guc2vf_too_short
[23:22:49] [PASSED] vf_rejects_guc2vf_too_long
[23:22:49] [PASSED] vf_rejects_guc2vf_no_payload
[23:22:49] ==================== [PASSED] vf_relay =====================
[23:22:49] ================= pf_service (11 subtests) =================
[23:22:49] [PASSED] pf_negotiate_any
[23:22:49] [PASSED] pf_negotiate_base_match
[23:22:49] [PASSED] pf_negotiate_base_newer
[23:22:49] [PASSED] pf_negotiate_base_next
[23:22:49] [SKIPPED] pf_negotiate_base_older
[23:22:49] [PASSED] pf_negotiate_base_prev
[23:22:49] [PASSED] pf_negotiate_latest_match
[23:22:49] [PASSED] pf_negotiate_latest_newer
[23:22:49] [PASSED] pf_negotiate_latest_next
[23:22:49] [SKIPPED] pf_negotiate_latest_older
[23:22:49] [SKIPPED] pf_negotiate_latest_prev
[23:22:49] =================== [PASSED] pf_service ====================
[23:22:49] ===================== lmtt (1 subtest) =====================
[23:22:49] ======================== test_ops  =========================
[23:22:49] [PASSED] 2-level
[23:22:49] [PASSED] multi-level
[23:22:49] ==================== [PASSED] test_ops =====================
[23:22:49] ====================== [PASSED] lmtt =======================
[23:22:49] =================== xe_mocs (2 subtests) ===================
[23:22:49] ================ xe_live_mocs_kernel_kunit  ================
[23:22:49] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[23:22:49] ================ xe_live_mocs_reset_kunit  =================
[23:22:49] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[23:22:49] ==================== [SKIPPED] xe_mocs =====================
[23:22:49] ================= xe_migrate (2 subtests) ==================
[23:22:49] ================= xe_migrate_sanity_kunit  =================
[23:22:49] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[23:22:49] ================== xe_validate_ccs_kunit  ==================
[23:22:49] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[23:22:49] =================== [SKIPPED] xe_migrate ===================
[23:22:49] ================== xe_dma_buf (1 subtest) ==================
[23:22:49] ==================== xe_dma_buf_kunit  =====================
[23:22:49] ================ [SKIPPED] xe_dma_buf_kunit ================
[23:22:49] =================== [SKIPPED] xe_dma_buf ===================
[23:22:49] ================= xe_bo_shrink (1 subtest) =================
[23:22:49] =================== xe_bo_shrink_kunit  ====================
[23:22:49] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[23:22:49] ================== [SKIPPED] xe_bo_shrink ==================
[23:22:49] ==================== xe_bo (2 subtests) ====================
[23:22:49] ================== xe_ccs_migrate_kunit  ===================
[23:22:49] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[23:22:49] ==================== xe_bo_evict_kunit  ====================
[23:22:49] =============== [SKIPPED] xe_bo_evict_kunit ================
[23:22:49] ===================== [SKIPPED] xe_bo ======================
[23:22:49] ==================== args (11 subtests) ====================
[23:22:49] [PASSED] count_args_test
[23:22:49] [PASSED] call_args_example
[23:22:49] [PASSED] call_args_test
[23:22:49] [PASSED] drop_first_arg_example
[23:22:49] [PASSED] drop_first_arg_test
[23:22:49] [PASSED] first_arg_example
[23:22:49] [PASSED] first_arg_test
[23:22:49] [PASSED] last_arg_example
[23:22:49] [PASSED] last_arg_test
[23:22:49] [PASSED] pick_arg_example
[23:22:49] [PASSED] sep_comma_example
[23:22:49] ====================== [PASSED] args =======================
[23:22:49] =================== xe_pci (2 subtests) ====================
[23:22:49] [PASSED] xe_gmdid_graphics_ip
[23:22:49] [PASSED] xe_gmdid_media_ip
[23:22:49] ===================== [PASSED] xe_pci ======================
[23:22:49] =================== xe_rtp (2 subtests) ====================
[23:22:49] =============== xe_rtp_process_to_sr_tests  ================
[23:22:49] [PASSED] coalesce-same-reg
[23:22:49] [PASSED] no-match-no-add
[23:22:49] [PASSED] match-or
[23:22:50] [PASSED] match-or-xfail
[23:22:50] [PASSED] no-match-no-add-multiple-rules
[23:22:50] [PASSED] two-regs-two-entries
[23:22:50] [PASSED] clr-one-set-other
[23:22:50] [PASSED] set-field
[23:22:50] [PASSED] conflict-duplicate
[23:22:50] [PASSED] conflict-not-disjoint
stty: 'standard input': Inappropriate ioctl for device
[23:22:50] [PASSED] conflict-reg-type
[23:22:50] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[23:22:50] ================== xe_rtp_process_tests  ===================
[23:22:50] [PASSED] active1
[23:22:50] [PASSED] active2
[23:22:50] [PASSED] active-inactive
[23:22:50] [PASSED] inactive-active
[23:22:50] [PASSED] inactive-1st_or_active-inactive
[23:22:50] [PASSED] inactive-2nd_or_active-inactive
[23:22:50] [PASSED] inactive-last_or_active-inactive
[23:22:50] [PASSED] inactive-no_or_active-inactive
[23:22:50] ============== [PASSED] xe_rtp_process_tests ===============
[23:22:50] ===================== [PASSED] xe_rtp ======================
[23:22:50] ==================== xe_wa (1 subtest) =====================
[23:22:50] ======================== xe_wa_gt  =========================
[23:22:50] [PASSED] TIGERLAKE (B0)
[23:22:50] [PASSED] DG1 (A0)
[23:22:50] [PASSED] DG1 (B0)
[23:22:50] [PASSED] ALDERLAKE_S (A0)
[23:22:50] [PASSED] ALDERLAKE_S (B0)
[23:22:50] [PASSED] ALDERLAKE_S (C0)
[23:22:50] [PASSED] ALDERLAKE_S (D0)
[23:22:50] [PASSED] ALDERLAKE_P (A0)
[23:22:50] [PASSED] ALDERLAKE_P (B0)
[23:22:50] [PASSED] ALDERLAKE_P (C0)
[23:22:50] [PASSED] ALDERLAKE_S_RPLS (D0)
[23:22:50] [PASSED] ALDERLAKE_P_RPLU (E0)
[23:22:50] [PASSED] DG2_G10 (C0)
[23:22:50] [PASSED] DG2_G11 (B1)
[23:22:50] [PASSED] DG2_G12 (A1)
[23:22:50] [PASSED] METEORLAKE (g:A0, m:A0)
[23:22:50] [PASSED] METEORLAKE (g:A0, m:A0)
[23:22:50] [PASSED] METEORLAKE (g:A0, m:A0)
[23:22:50] [PASSED] LUNARLAKE (g:A0, m:A0)
[23:22:50] [PASSED] LUNARLAKE (g:B0, m:A0)
[23:22:50] [PASSED] BATTLEMAGE (g:A0, m:A1)
[23:22:50] ==================== [PASSED] xe_wa_gt =====================
[23:22:50] ====================== [PASSED] xe_wa ======================
[23:22:50] ============================================================
[23:22:50] Testing complete. Ran 133 tests: passed: 117, skipped: 16
[23:22:50] Elapsed time: 31.408s total, 4.166s configuring, 26.925s building, 0.300s running

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

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

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



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

* ✓ Xe.CI.BAT: success for Opportunistically skip TLB invalidaion on unbind
  2025-06-13 21:02 [PATCH v2 0/2] Opportunistically skip TLB invalidaion on unbind Matthew Brost
                   ` (3 preceding siblings ...)
  2025-06-13 23:23 ` ✓ CI.KUnit: success " Patchwork
@ 2025-06-14  0:13 ` Patchwork
  2025-06-16  0:15 ` ✗ Xe.CI.Full: failure " Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-14  0:13 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

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

== Series Details ==

Series: Opportunistically skip TLB invalidaion on unbind
URL   : https://patchwork.freedesktop.org/series/150257/
State : success

== Summary ==

CI Bug Log - changes from xe-3252-4d016d6e602638e0ebc3895331224e057508c07a_BAT -> xe-pw-150257v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (8 -> 8)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-3252-4d016d6e602638e0ebc3895331224e057508c07a -> xe-pw-150257v1

  IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-3252-4d016d6e602638e0ebc3895331224e057508c07a: 4d016d6e602638e0ebc3895331224e057508c07a
  xe-pw-150257v1: 150257v1

== Logs ==

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

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

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

* Re: [PATCH v2 2/2] drm/xe: Opportunistically skip TLB invalidaion on unbind
  2025-06-13 21:02 ` [PATCH v2 2/2] drm/xe: Opportunistically skip TLB invalidaion on unbind Matthew Brost
@ 2025-06-15  3:56   ` Matthew Brost
  0 siblings, 0 replies; 8+ messages in thread
From: Matthew Brost @ 2025-06-15  3:56 UTC (permalink / raw)
  To: intel-xe; +Cc: francois.dugast, thomas.hellstrom, himal.prasad.ghimiray

On Fri, Jun 13, 2025 at 02:02:42PM -0700, Matthew Brost wrote:
> If a range or VMA is invalidated and scratch page is disabled, there
> is no reason to issue a TLB invalidation on unbind, skip TLB
> innvalidation is this condition is true. This is an opportunistic check
> as it is done without the notifier lock, thus it possible for the range
> or VMA to be invalidated after this check is performed.
> 
> This should improve performance of the SVM garbage collector, for
> example, xe_exec_system_allocator --r many-stride-new-prefetch, went
> ~20s to ~9.5s on a BMG.
> 
> v2:
>  - Use helper for valid check (Thomas)
> 

This patch doesn't quite work either - I'm a roll here of posting
things that don't work [1]...

If we are removing PTEs are higher level than the size of the VMA /
range, those will not have been invalidated and could still be in GPU
TLBs. We need a helper to check the walk results against the size of the
VMA / range too.

Matt

[1] https://patchwork.freedesktop.org/patch/658370/?series=150188&rev=1#comment_1206030

> Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>>
> ---
>  drivers/gpu/drm/xe/xe_pt.c | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
> index 59496c1a1e77..39947fd5c3a2 100644
> --- a/drivers/gpu/drm/xe/xe_pt.c
> +++ b/drivers/gpu/drm/xe/xe_pt.c
> @@ -1988,7 +1988,9 @@ static int unbind_op_prepare(struct xe_tile *tile,
>  					 xe_vma_end(vma));
>  	++pt_update_ops->current_op;
>  	pt_update_ops->needs_userptr_lock |= xe_vma_is_userptr(vma);
> -	pt_update_ops->needs_invalidation = true;
> +	pt_update_ops->needs_invalidation |= xe_vm_has_scratch(xe_vma_vm(vma)) ||
> +		xe_vm_has_valid_gpu_pages(tile, vma->tile_present,
> +					  vma->tile_invalidated);
>  
>  	xe_pt_commit_prepare_unbind(vma, pt_op->entries, pt_op->num_entries);
>  
> @@ -2023,7 +2025,9 @@ static int unbind_range_prepare(struct xe_vm *vm,
>  					 range->base.itree.last + 1);
>  	++pt_update_ops->current_op;
>  	pt_update_ops->needs_svm_lock = true;
> -	pt_update_ops->needs_invalidation = true;
> +	pt_update_ops->needs_invalidation |= xe_vm_has_scratch(vm) ||
> +		xe_vm_has_valid_gpu_pages(tile, range->tile_present,
> +					  range->tile_invalidated);
>  
>  	xe_pt_commit_prepare_unbind(XE_INVALID_VMA, pt_op->entries,
>  				    pt_op->num_entries);
> -- 
> 2.34.1
> 

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

* ✗ Xe.CI.Full: failure for Opportunistically skip TLB invalidaion on unbind
  2025-06-13 21:02 [PATCH v2 0/2] Opportunistically skip TLB invalidaion on unbind Matthew Brost
                   ` (4 preceding siblings ...)
  2025-06-14  0:13 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-16  0:15 ` Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-16  0:15 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

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

== Series Details ==

Series: Opportunistically skip TLB invalidaion on unbind
URL   : https://patchwork.freedesktop.org/series/150257/
State : failure

== Summary ==

CI Bug Log - changes from xe-3252-4d016d6e602638e0ebc3895331224e057508c07a_FULL -> xe-pw-150257v1_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-150257v1_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-150257v1_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-150257v1_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset:
    - shard-bmg:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-5/igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-large-mmap-free-race-nomemset:
    - shard-lnl:          NOTRUN -> [FAIL][2]
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@xe_exec_system_allocator@threads-many-large-mmap-free-race-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-mmap-free-race-nomemset:
    - shard-lnl:          [PASS][3] -> [FAIL][4] +22 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-8/igt@xe_exec_system_allocator@threads-many-mmap-free-race-nomemset.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-3/igt@xe_exec_system_allocator@threads-many-mmap-free-race-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-stride-free-nomemset:
    - shard-bmg:          [PASS][5] -> [FAIL][6] +16 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-stride-free-nomemset.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-stride-free-nomemset.html

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

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

### IGT changes ###

#### Issues hit ####

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

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

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#2327]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-90:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#1407])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#1124]) +3 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#610])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#1124]) +4 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-dg2-set2:     NOTRUN -> [SKIP][14] ([Intel XE#610])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#2191])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#367])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][18] ([Intel XE#367]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2887]) +5 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#2887])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][21] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][23] ([Intel XE#787]) +5 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#2907]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][26] ([Intel XE#787]) +55 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][28] -> [INCOMPLETE][29] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     [PASS][30] -> [INCOMPLETE][31] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][32] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2724])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html

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

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2325])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-2/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#306])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#373])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#2252]) +4 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html

  * igt@kms_chamelium_hpd@vga-hpd:
    - shard-dg2-set2:     NOTRUN -> [SKIP][39] ([Intel XE#373]) +2 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][40] ([Intel XE#307])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#2390])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@lic-type-1:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#5176])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_content_protection@lic-type-1.html

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

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

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

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][46] ([Intel XE#2321])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#1424])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2321]) +1 other test skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-bmg:          [PASS][49] -> [SKIP][50] ([Intel XE#2291]) +4 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2286])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [PASS][52] -> [SKIP][53] ([Intel XE#4302])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
    - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#4302])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#455]) +9 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#4422])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][57] ([Intel XE#4422])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#4156])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#776])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@kms_fbcon_fbt@psr.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-dp2-hdmi-a3:
    - shard-bmg:          [PASS][60] -> [FAIL][61] ([Intel XE#2882]) +3 other tests fail
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-dp2-hdmi-a3.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-dp2-hdmi-a3.html

  * igt@kms_flip@2x-plain-flip-ts-check:
    - shard-bmg:          [PASS][62] -> [SKIP][63] ([Intel XE#2316])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check.html

  * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#2316])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-lnl:          [PASS][65] -> [FAIL][66] ([Intel XE#886]) +2 other tests fail
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1:
    - shard-adlp:         [PASS][67] -> [FAIL][68] ([Intel XE#2882]) +2 other tests fail
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-9/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
    - shard-dg2-set2:     [PASS][69] -> [FAIL][70] ([Intel XE#301]) +10 other tests fail
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][71] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2:
    - shard-bmg:          NOTRUN -> [FAIL][72] ([Intel XE#2882]) +1 other test fail
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
    - shard-adlp:         NOTRUN -> [SKIP][73] ([Intel XE#455]) +3 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html

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

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

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

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#651]) +2 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#651]) +16 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#2312]) +4 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-adlp:         [PASS][81] -> [DMESG-WARN][82] ([Intel XE#2953] / [Intel XE#4173])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][83] ([Intel XE#656]) +2 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][84] ([Intel XE#653]) +16 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#2313]) +13 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#2925])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#2927])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#4329])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [PASS][89] -> [SKIP][90] ([Intel XE#4596])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#4596])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#736])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#3309])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-2/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#1439] / [Intel XE#3141])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#2893] / [Intel XE#4608])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html

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

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-dg2-set2:     NOTRUN -> [SKIP][97] ([Intel XE#1489]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

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

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-dg2-set2:     NOTRUN -> [SKIP][99] ([Intel XE#1122])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-435/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr-cursor-plane-onoff:
    - shard-dg2-set2:     NOTRUN -> [SKIP][100] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@kms_psr@fbc-psr-cursor-plane-onoff.html

  * igt@kms_psr@fbc-psr2-cursor-blt:
    - shard-lnl:          NOTRUN -> [SKIP][101] ([Intel XE#1406]) +1 other test skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_psr@fbc-psr2-cursor-blt.html

  * igt@kms_psr@fbc-psr2-cursor-blt@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][102] ([Intel XE#4609]) +1 other test skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][104] ([Intel XE#2414])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

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

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][106] ([Intel XE#1127])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

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

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          NOTRUN -> [SKIP][108] ([Intel XE#1435])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          NOTRUN -> [SKIP][109] ([Intel XE#2509])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][110] ([Intel XE#1500])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-bmg:          [PASS][111] -> [INCOMPLETE][112] ([Intel XE#4488]) +1 other test incomplete
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#1499])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-5/igt@kms_vrr@flip-basic.html

  * igt@xe_compute_preempt@compute-preempt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][114] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-435/igt@xe_compute_preempt@compute-preempt.html

  * igt@xe_eudebug@basic-vm-access-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][115] ([Intel XE#4837])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@xe_eudebug@basic-vm-access-userptr.html

  * igt@xe_eudebug@basic-vm-bind:
    - shard-bmg:          NOTRUN -> [SKIP][116] ([Intel XE#4837]) +4 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-2/igt@xe_eudebug@basic-vm-bind.html

  * igt@xe_eudebug@basic-vm-bind-extended-discovery:
    - shard-dg2-set2:     NOTRUN -> [SKIP][117] ([Intel XE#4837]) +5 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@xe_eudebug@basic-vm-bind-extended-discovery.html

  * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#688])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html

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

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][120] ([Intel XE#1392])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html

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

  * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
    - shard-dg2-set2:     NOTRUN -> [SKIP][122] ([Intel XE#4915]) +135 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html

  * igt@xe_exec_system_allocator@threads-many-stride-mmap-huge:
    - shard-lnl:          NOTRUN -> [SKIP][123] ([Intel XE#4943])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][124] ([Intel XE#4943]) +11 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-nomemset:
    - shard-lnl:          NOTRUN -> [FAIL][125] ([Intel XE#5018])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-nomemset.html

  * igt@xe_exec_threads@threads-hang-userptr-invalidate:
    - shard-dg2-set2:     [PASS][126] -> [DMESG-WARN][127] ([Intel XE#3876])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_exec_threads@threads-hang-userptr-invalidate.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@xe_exec_threads@threads-hang-userptr-invalidate.html

  * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][128] ([Intel XE#2229])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html

  * igt@xe_mmap@pci-membarrier-bad-pagesize:
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#5100])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-6/igt@xe_mmap@pci-membarrier-bad-pagesize.html

  * igt@xe_module_load@load:
    - shard-dg2-set2:     ([PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154]) -> ([PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [SKIP][178], [PASS][179], [PASS][180]) ([Intel XE#378])
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@xe_module_load@load.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_module_load@load.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@xe_module_load@load.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@xe_module_load@load.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-435/igt@xe_module_load@load.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-435/igt@xe_module_load@load.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-435/igt@xe_module_load@load.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-435/igt@xe_module_load@load.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-435/igt@xe_module_load@load.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-435/igt@xe_module_load@load.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@xe_module_load@load.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@xe_module_load@load.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@xe_module_load@load.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@xe_module_load@load.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@xe_module_load@load.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@xe_module_load@load.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@xe_module_load@load.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@xe_module_load@load.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@xe_module_load@load.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@xe_module_load@load.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@xe_module_load@load.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@xe_module_load@load.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@xe_module_load@load.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@xe_module_load@load.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@xe_module_load@load.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@xe_module_load@load.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@xe_module_load@load.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@xe_module_load@load.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@xe_module_load@load.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@xe_module_load@load.html

  * igt@xe_oa@polling-small-buf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][181] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-435/igt@xe_oa@polling-small-buf.html

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

  * igt@xe_pm@s4-multiple-execs:
    - shard-lnl:          [PASS][183] -> [ABORT][184] ([Intel XE#1794])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-1/igt@xe_pm@s4-multiple-execs.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html

  * igt@xe_pm@s4-vm-bind-userptr:
    - shard-adlp:         [PASS][185] -> [ABORT][186] ([Intel XE#1794])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_pm@s4-vm-bind-userptr.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-9/igt@xe_pm@s4-vm-bind-userptr.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle:
    - shard-adlp:         NOTRUN -> [FAIL][187] ([Intel XE#5219])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-4/igt@xe_pmu@fn-engine-activity-sched-if-idle.html

  * igt@xe_pmu@gt-frequency:
    - shard-adlp:         NOTRUN -> [ABORT][188] ([Intel XE#5214]) +1 other test abort
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-3/igt@xe_pmu@gt-frequency.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-dg2-set2:     NOTRUN -> [SKIP][189] ([Intel XE#4733])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_pxp@pxp-termination-key-update-post-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][190] ([Intel XE#4733]) +2 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-suspend.html

  * igt@xe_query@multigpu-query-config:
    - shard-bmg:          NOTRUN -> [SKIP][191] ([Intel XE#944])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-5/igt@xe_query@multigpu-query-config.html

  * igt@xe_spin_batch@spin-mem-copy:
    - shard-dg2-set2:     NOTRUN -> [SKIP][192] ([Intel XE#4821])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@xe_spin_batch@spin-mem-copy.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-bmg:          NOTRUN -> [SKIP][193] ([Intel XE#3342]) +1 other test skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html

  
#### Possible fixes ####

  * igt@core_hotunplug@hotrebind-lateclose:
    - shard-adlp:         [SKIP][194] ([Intel XE#4963]) -> [PASS][195]
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@core_hotunplug@hotrebind-lateclose.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@core_hotunplug@hotrebind-lateclose.html

  * igt@kms_addfb_basic@bad-pitch-63:
    - shard-adlp:         [SKIP][196] ([Intel XE#4950]) -> [PASS][197] +18 other tests pass
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_addfb_basic@bad-pitch-63.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_addfb_basic@bad-pitch-63.html

  * igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1:
    - shard-adlp:         [DMESG-WARN][198] ([Intel XE#4543]) -> [PASS][199] +1 other test pass
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [SKIP][200] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][201]
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][202] ([Intel XE#3862]) -> [PASS][203] +1 other test pass
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][204] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][205] +1 other test pass
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][206] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][207]
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][208] ([Intel XE#2291]) -> [PASS][209] +2 other tests pass
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-bmg:          [FAIL][210] ([Intel XE#2882]) -> [PASS][211] +1 other test pass
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-7/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-modeset-vs-hang:
    - shard-bmg:          [SKIP][212] ([Intel XE#2316]) -> [PASS][213] +1 other test pass
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-3/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-dg2-set2:     [INCOMPLETE][214] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][215] +1 other test pass
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-rte:
    - shard-adlp:         [SKIP][216] ([Intel XE#4947]) -> [PASS][217] +2 other tests pass
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-dg2-set2:     [INCOMPLETE][218] ([Intel XE#4842]) -> [PASS][219]
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][220] ([Intel XE#1503]) -> [PASS][221]
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-3/igt@kms_hdr@invalid-hdr.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [SKIP][222] ([Intel XE#1435]) -> [PASS][223]
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * {igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute}:
    - shard-bmg:          [ABORT][224] ([Intel XE#3970]) -> [PASS][225] +1 other test pass
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-2/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html

  * igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset:
    - shard-bmg:          [FAIL][226] -> [PASS][227]
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
    - shard-lnl:          [FAIL][228] ([Intel XE#5018]) -> [PASS][229]
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html

  * igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate:
    - shard-dg2-set2:     [INCOMPLETE][230] -> [PASS][231]
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html

  * igt@xe_pm@s2idle-basic:
    - shard-adlp:         [DMESG-WARN][232] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][233]
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_pm@s2idle-basic.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-9/igt@xe_pm@s2idle-basic.html

  * igt@xe_pm@s3-vm-bind-userptr:
    - shard-bmg:          [INCOMPLETE][234] ([Intel XE#569]) -> [PASS][235]
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html

  * igt@xe_pmu@gt-frequency:
    - shard-dg2-set2:     [FAIL][236] ([Intel XE#4835]) -> [PASS][237] +1 other test pass
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_pmu@gt-frequency.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-464/igt@xe_pmu@gt-frequency.html

  * igt@xe_vm@large-misaligned-binds-2147483648:
    - shard-adlp:         [SKIP][238] ([Intel XE#4945]) -> [PASS][239] +29 other tests pass
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_vm@large-misaligned-binds-2147483648.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@xe_vm@large-misaligned-binds-2147483648.html

  
#### Warnings ####

  * igt@kms_big_fb@4-tiled-32bpp-rotate-180:
    - shard-adlp:         [SKIP][240] ([Intel XE#4947]) -> [SKIP][241] ([Intel XE#1124])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-adlp:         [SKIP][242] ([Intel XE#4947]) -> [SKIP][243] ([Intel XE#316]) +1 other test skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-adlp:         [SKIP][244] ([Intel XE#4947]) -> [SKIP][245] ([Intel XE#610])
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_bw@linear-tiling-4-displays-1920x1080p:
    - shard-adlp:         [SKIP][246] ([Intel XE#4950]) -> [SKIP][247] ([Intel XE#367])
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
    - shard-adlp:         [SKIP][248] ([Intel XE#4947]) -> [SKIP][249] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
    - shard-adlp:         [SKIP][250] ([Intel XE#4947]) -> [SKIP][251] ([Intel XE#2907]) +1 other test skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][252] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][253] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-adlp:         [SKIP][254] ([Intel XE#4947]) -> [SKIP][255] ([Intel XE#4417] / [Intel XE#455])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_cdclk@mode-transition.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
    - shard-adlp:         [SKIP][256] ([Intel XE#4950]) -> [SKIP][257] ([Intel XE#373])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          [SKIP][258] ([Intel XE#2341]) -> [FAIL][259] ([Intel XE#1178])
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_content_protection@srm.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-3/igt@kms_content_protection@srm.html

  * igt@kms_fbcon_fbt@psr:
    - shard-adlp:         [SKIP][260] ([Intel XE#4947]) -> [SKIP][261] ([Intel XE#776])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_fbcon_fbt@psr.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_fbcon_fbt@psr.html

  * igt@kms_flip@2x-plain-flip-interruptible:
    - shard-adlp:         [SKIP][262] ([Intel XE#4950]) -> [SKIP][263] ([Intel XE#310]) +1 other test skip
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_flip@2x-plain-flip-interruptible.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_flip@2x-plain-flip-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-adlp:         [SKIP][264] ([Intel XE#2351] / [Intel XE#4947]) -> [SKIP][265] ([Intel XE#455])
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
    - shard-adlp:         [SKIP][266] ([Intel XE#4947]) -> [SKIP][267] ([Intel XE#455]) +2 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-adlp:         [SKIP][268] ([Intel XE#4947]) -> [SKIP][269] ([Intel XE#651]) +1 other test skip
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][270] ([Intel XE#2311]) -> [SKIP][271] ([Intel XE#2312]) +7 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][272] ([Intel XE#4141]) -> [SKIP][273] ([Intel XE#2312]) +1 other test skip
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
    - shard-adlp:         [SKIP][274] ([Intel XE#4947]) -> [SKIP][275] ([Intel XE#656]) +6 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][276] ([Intel XE#2312]) -> [SKIP][277] ([Intel XE#4141]) +2 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt:
    - shard-adlp:         [SKIP][278] ([Intel XE#2351] / [Intel XE#4947]) -> [SKIP][279] ([Intel XE#651])
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][280] ([Intel XE#2312]) -> [SKIP][281] ([Intel XE#2311]) +3 other tests skip
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff:
    - shard-adlp:         [SKIP][282] ([Intel XE#2351] / [Intel XE#4947]) -> [SKIP][283] ([Intel XE#656]) +1 other test skip
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][284] ([Intel XE#2312]) -> [SKIP][285] ([Intel XE#2313]) +4 other tests skip
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][286] ([Intel XE#2313]) -> [SKIP][287] ([Intel XE#2312]) +8 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
    - shard-adlp:         [SKIP][288] ([Intel XE#4947]) -> [SKIP][289] ([Intel XE#653]) +2 other tests skip
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-adlp:         [SKIP][290] ([Intel XE#4950]) -> [SKIP][291] ([Intel XE#455]) +1 other test skip
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_plane_scaling@intel-max-src-size.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
    - shard-adlp:         [SKIP][292] ([Intel XE#4947]) -> [SKIP][293] ([Intel XE#1489])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr@fbc-pr-primary-page-flip:
    - shard-adlp:         [SKIP][294] ([Intel XE#4947]) -> [SKIP][295] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_psr@fbc-pr-primary-page-flip.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_psr@fbc-pr-primary-page-flip.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-adlp:         [SKIP][296] ([Intel XE#4950]) -> [SKIP][297] ([Intel XE#1127])
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@xe_ccs@suspend-resume:
    - shard-adlp:         [SKIP][298] ([Intel XE#4945]) -> [SKIP][299] ([Intel XE#455] / [Intel XE#488])
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_ccs@suspend-resume.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@xe_ccs@suspend-resume.html

  * igt@xe_eudebug@read-metadata:
    - shard-adlp:         [SKIP][300] ([Intel XE#4945]) -> [SKIP][301] ([Intel XE#4837]) +1 other test skip
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_eudebug@read-metadata.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@xe_eudebug@read-metadata.html

  * igt@xe_evict@evict-large-cm:
    - shard-adlp:         [SKIP][302] ([Intel XE#4945]) -> [SKIP][303] ([Intel XE#261] / [Intel XE#688])
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_evict@evict-large-cm.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@xe_evict@evict-large-cm.html

  * igt@xe_exec_fault_mode@many-bindexecqueue-rebind:
    - shard-adlp:         [SKIP][304] ([Intel XE#4945]) -> [SKIP][305] ([Intel XE#288]) +3 other tests skip
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html

  * igt@xe_exec_system_allocator@processes-evict-malloc:
    - shard-adlp:         [SKIP][306] ([Intel XE#4945]) -> [SKIP][307] ([Intel XE#4915]) +60 other tests skip
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_exec_system_allocator@processes-evict-malloc.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@xe_exec_system_allocator@processes-evict-malloc.html

  * igt@xe_oa@non-privileged-map-oa-buffer:
    - shard-adlp:         [SKIP][308] ([Intel XE#4945]) -> [SKIP][309] ([Intel XE#2541] / [Intel XE#3573])
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_oa@non-privileged-map-oa-buffer.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@xe_oa@non-privileged-map-oa-buffer.html

  * igt@xe_oa@syncs-ufence-wait-cfg:
    - shard-adlp:         [SKIP][310] ([Intel XE#4945]) -> [SKIP][311] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_oa@syncs-ufence-wait-cfg.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@xe_oa@syncs-ufence-wait-cfg.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-adlp:         [SKIP][312] ([Intel XE#4945]) -> [SKIP][313] ([Intel XE#2284] / [Intel XE#366])
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_pm@d3cold-mmap-vram.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pmu@all-fn-engine-activity-load:
    - shard-adlp:         [FAIL][314] ([Intel XE#5219]) -> [ABORT][315] ([Intel XE#5214])
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-1/igt@xe_pmu@all-fn-engine-activity-load.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-8/igt@xe_pmu@all-fn-engine-activity-load.html

  * igt@xe_pmu@engine-activity-all-load-idle:
    - shard-adlp:         [DMESG-WARN][316] ([Intel XE#5214]) -> [ABORT][317] ([Intel XE#5214]) +2 other tests abort
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_pmu@engine-activity-all-load-idle.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-2/igt@xe_pmu@engine-activity-all-load-idle.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-adlp:         [SKIP][318] ([Intel XE#4945]) -> [SKIP][319] ([Intel XE#4733])
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_pxp@display-pxp-fb.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_query@multigpu-query-gt-list:
    - shard-adlp:         [SKIP][320] ([Intel XE#4945]) -> [SKIP][321] ([Intel XE#944])
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_query@multigpu-query-gt-list.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@xe_query@multigpu-query-gt-list.html

  * igt@xe_spin_batch@spin-mem-copy:
    - shard-adlp:         [SKIP][322] ([Intel XE#4945]) -> [SKIP][323] ([Intel XE#4821])
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_spin_batch@spin-mem-copy.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150257v1/shard-adlp-6/igt@xe_spin_batch@spin-mem-copy.html

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

  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [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#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [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#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [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#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4488
  [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
  [Intel XE#4835]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4835
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
  [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#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#4945]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945
  [Intel XE#4947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947
  [Intel XE#4950]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4950
  [Intel XE#4963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4963
  [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5172
  [Intel XE#5176]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5176
  [Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214
  [Intel XE#5219]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5219
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
  [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#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-3252-4d016d6e602638e0ebc3895331224e057508c07a -> xe-pw-150257v1

  IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-3252-4d016d6e602638e0ebc3895331224e057508c07a: 4d016d6e602638e0ebc3895331224e057508c07a
  xe-pw-150257v1: 150257v1

== Logs ==

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

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

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

end of thread, other threads:[~2025-06-16  0:16 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-13 21:02 [PATCH v2 0/2] Opportunistically skip TLB invalidaion on unbind Matthew Brost
2025-06-13 21:02 ` [PATCH v2 1/2] drm/xe: Add xe_vm_has_valid_gpu_pages helper Matthew Brost
2025-06-13 21:02 ` [PATCH v2 2/2] drm/xe: Opportunistically skip TLB invalidaion on unbind Matthew Brost
2025-06-15  3:56   ` Matthew Brost
2025-06-13 23:22 ` ✗ CI.checkpatch: warning for " Patchwork
2025-06-13 23:23 ` ✓ CI.KUnit: success " Patchwork
2025-06-14  0:13 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-16  0:15 ` ✗ Xe.CI.Full: failure " Patchwork

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