Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe: Fix uninitialized return value from xe_validation_guard()
@ 2025-10-27 13:12 Thomas Hellström
  2025-10-27 16:08 ` ✓ CI.KUnit: success for " Patchwork
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Thomas Hellström @ 2025-10-27 13:12 UTC (permalink / raw)
  To: intel-xe; +Cc: Thomas Hellström, Maarten Lankhorst, Matthew Brost

The parameter _ret is assigned in xe_validation_guard() not
realizing we're assigning a parameter in a function rather than
in a macro. That means it's value is not propagated to the caller.

Fix this by making the _ret parameter a pointer.

Fixes: c460bc2311df ("drm/xe: Introduce an xe_validation wrapper around drm_exec")
Link: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6220
Cc: Maarten Lankhorst <maarten.lankhorst@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: intel-xe@lists.freedesktop.org
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
 drivers/gpu/drm/xe/xe_validation.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_validation.h b/drivers/gpu/drm/xe/xe_validation.h
index fec331d791e7..b2d09c596714 100644
--- a/drivers/gpu/drm/xe/xe_validation.h
+++ b/drivers/gpu/drm/xe/xe_validation.h
@@ -166,10 +166,10 @@ xe_validation_device_init(struct xe_validation_device *val)
  */
 DEFINE_CLASS(xe_validation, struct xe_validation_ctx *,
 	     if (_T) xe_validation_ctx_fini(_T);,
-	     ({_ret = xe_validation_ctx_init(_ctx, _val, _exec, _flags);
-	       _ret ? NULL : _ctx; }),
+	     ({*_ret = xe_validation_ctx_init(_ctx, _val, _exec, _flags);
+	       *_ret ? NULL : _ctx; }),
 	     struct xe_validation_ctx *_ctx, struct xe_validation_device *_val,
-	     struct drm_exec *_exec, const struct xe_val_flags _flags, int _ret);
+	     struct drm_exec *_exec, const struct xe_val_flags _flags, int *_ret);
 static inline void *class_xe_validation_lock_ptr(class_xe_validation_t *_T)
 {return *_T; }
 #define class_xe_validation_is_conditional true
@@ -186,7 +186,7 @@ static inline void *class_xe_validation_lock_ptr(class_xe_validation_t *_T)
  * exhaustive eviction.
  */
 #define xe_validation_guard(_ctx, _val, _exec, _flags, _ret)		\
-	scoped_guard(xe_validation, _ctx, _val, _exec, _flags, _ret) \
+	scoped_guard(xe_validation, _ctx, _val, _exec, _flags, &_ret) \
 	drm_exec_until_all_locked(_exec)
 
 #endif
-- 
2.51.0


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

* ✓ CI.KUnit: success for drm/xe: Fix uninitialized return value from xe_validation_guard()
  2025-10-27 13:12 [PATCH] drm/xe: Fix uninitialized return value from xe_validation_guard() Thomas Hellström
@ 2025-10-27 16:08 ` Patchwork
  2025-10-27 16:20 ` [PATCH] " Lucas De Marchi
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-10-27 16:08 UTC (permalink / raw)
  To: Thomas Hellström; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Fix uninitialized return value from xe_validation_guard()
URL   : https://patchwork.freedesktop.org/series/156581/
State : success

== Summary ==

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

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

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

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



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

* Re: [PATCH] drm/xe: Fix uninitialized return value from xe_validation_guard()
  2025-10-27 13:12 [PATCH] drm/xe: Fix uninitialized return value from xe_validation_guard() Thomas Hellström
  2025-10-27 16:08 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-10-27 16:20 ` Lucas De Marchi
  2025-10-27 16:52 ` Maarten Lankhorst
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Lucas De Marchi @ 2025-10-27 16:20 UTC (permalink / raw)
  To: Thomas Hellström
  Cc: intel-xe, Maarten Lankhorst, Matthew Brost, Peter Senna

+Peter

On Mon, Oct 27, 2025 at 02:12:28PM +0100, Thomas Hellström wrote:
>The parameter _ret is assigned in xe_validation_guard() not
>realizing we're assigning a parameter in a function rather than
>in a macro. That means it's value is not propagated to the caller.

"in a function rather than in a macro" is not very clear IMO.

Maybe expand a little bit like below?

the DEFINE_CLASS() macro creates an inline function and
the init args are passed down to it; since _ret is passed as an int,
whatever value is set inside the function is not visible to the caller.
Pass _ret as a pointer so the initial value proapagates to the caller.

>
>Fix this by making the _ret parameter a pointer.
>
>Fixes: c460bc2311df ("drm/xe: Introduce an xe_validation wrapper around drm_exec")
>Link: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6220

Shouldn't this be a "Closes:"?

Peter, can you test with this patch and report back if it fixes the
other issue for you?

>Cc: Maarten Lankhorst <maarten.lankhorst@intel.com>
>Cc: Matthew Brost <matthew.brost@intel.com>
>Cc: intel-xe@lists.freedesktop.org
>Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>


Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>

thanks,
Lucas De Marchi

>---
> drivers/gpu/drm/xe/xe_validation.h | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
>diff --git a/drivers/gpu/drm/xe/xe_validation.h b/drivers/gpu/drm/xe/xe_validation.h
>index fec331d791e7..b2d09c596714 100644
>--- a/drivers/gpu/drm/xe/xe_validation.h
>+++ b/drivers/gpu/drm/xe/xe_validation.h
>@@ -166,10 +166,10 @@ xe_validation_device_init(struct xe_validation_device *val)
>  */
> DEFINE_CLASS(xe_validation, struct xe_validation_ctx *,
> 	     if (_T) xe_validation_ctx_fini(_T);,
>-	     ({_ret = xe_validation_ctx_init(_ctx, _val, _exec, _flags);
>-	       _ret ? NULL : _ctx; }),
>+	     ({*_ret = xe_validation_ctx_init(_ctx, _val, _exec, _flags);
>+	       *_ret ? NULL : _ctx; }),
> 	     struct xe_validation_ctx *_ctx, struct xe_validation_device *_val,
>-	     struct drm_exec *_exec, const struct xe_val_flags _flags, int _ret);
>+	     struct drm_exec *_exec, const struct xe_val_flags _flags, int *_ret);
> static inline void *class_xe_validation_lock_ptr(class_xe_validation_t *_T)
> {return *_T; }
> #define class_xe_validation_is_conditional true
>@@ -186,7 +186,7 @@ static inline void *class_xe_validation_lock_ptr(class_xe_validation_t *_T)
>  * exhaustive eviction.
>  */
> #define xe_validation_guard(_ctx, _val, _exec, _flags, _ret)		\
>-	scoped_guard(xe_validation, _ctx, _val, _exec, _flags, _ret) \
>+	scoped_guard(xe_validation, _ctx, _val, _exec, _flags, &_ret) \
> 	drm_exec_until_all_locked(_exec)
>
> #endif
>-- 
>2.51.0
>

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

* Re: [PATCH] drm/xe: Fix uninitialized return value from xe_validation_guard()
  2025-10-27 13:12 [PATCH] drm/xe: Fix uninitialized return value from xe_validation_guard() Thomas Hellström
  2025-10-27 16:08 ` ✓ CI.KUnit: success for " Patchwork
  2025-10-27 16:20 ` [PATCH] " Lucas De Marchi
@ 2025-10-27 16:52 ` Maarten Lankhorst
  2025-10-27 20:11 ` ✗ Xe.CI.Full: failure for " Patchwork
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Maarten Lankhorst @ 2025-10-27 16:52 UTC (permalink / raw)
  To: Thomas Hellström, intel-xe; +Cc: Matthew Brost

Glad to see it fixed!

Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>

Den 2025-10-27 kl. 14:12, skrev Thomas Hellström:
> The parameter _ret is assigned in xe_validation_guard() not
> realizing we're assigning a parameter in a function rather than
> in a macro. That means it's value is not propagated to the caller.
>
> Fix this by making the _ret parameter a pointer.
>
> Fixes: c460bc2311df ("drm/xe: Introduce an xe_validation wrapper around drm_exec")
> Link: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6220
> Cc: Maarten Lankhorst <maarten.lankhorst@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: intel-xe@lists.freedesktop.org
> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> ---
>  drivers/gpu/drm/xe/xe_validation.h | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_validation.h b/drivers/gpu/drm/xe/xe_validation.h
> index fec331d791e7..b2d09c596714 100644
> --- a/drivers/gpu/drm/xe/xe_validation.h
> +++ b/drivers/gpu/drm/xe/xe_validation.h
> @@ -166,10 +166,10 @@ xe_validation_device_init(struct xe_validation_device *val)
>   */
>  DEFINE_CLASS(xe_validation, struct xe_validation_ctx *,
>  	     if (_T) xe_validation_ctx_fini(_T);,
> -	     ({_ret = xe_validation_ctx_init(_ctx, _val, _exec, _flags);
> -	       _ret ? NULL : _ctx; }),
> +	     ({*_ret = xe_validation_ctx_init(_ctx, _val, _exec, _flags);
> +	       *_ret ? NULL : _ctx; }),
>  	     struct xe_validation_ctx *_ctx, struct xe_validation_device *_val,
> -	     struct drm_exec *_exec, const struct xe_val_flags _flags, int _ret);
> +	     struct drm_exec *_exec, const struct xe_val_flags _flags, int *_ret);
>  static inline void *class_xe_validation_lock_ptr(class_xe_validation_t *_T)
>  {return *_T; }
>  #define class_xe_validation_is_conditional true
> @@ -186,7 +186,7 @@ static inline void *class_xe_validation_lock_ptr(class_xe_validation_t *_T)
>   * exhaustive eviction.
>   */
>  #define xe_validation_guard(_ctx, _val, _exec, _flags, _ret)		\
> -	scoped_guard(xe_validation, _ctx, _val, _exec, _flags, _ret) \
> +	scoped_guard(xe_validation, _ctx, _val, _exec, _flags, &_ret) \
>  	drm_exec_until_all_locked(_exec)
>  
>  #endif


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

* ✗ Xe.CI.Full: failure for drm/xe: Fix uninitialized return value from xe_validation_guard()
  2025-10-27 13:12 [PATCH] drm/xe: Fix uninitialized return value from xe_validation_guard() Thomas Hellström
                   ` (2 preceding siblings ...)
  2025-10-27 16:52 ` Maarten Lankhorst
@ 2025-10-27 20:11 ` Patchwork
  2025-10-27 22:04 ` [PATCH] " Matthew Brost
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-10-27 20:11 UTC (permalink / raw)
  To: Thomas Hellström; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Fix uninitialized return value from xe_validation_guard()
URL   : https://patchwork.freedesktop.org/series/156581/
State : failure

== Summary ==

ERROR: The runconfig 'xe-3990-984f5117d7dc1d7596c375bbc18b82f3ec9b4c0e_FULL' does not exist in the database

== Logs ==

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

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

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

* Re: [PATCH] drm/xe: Fix uninitialized return value from xe_validation_guard()
  2025-10-27 13:12 [PATCH] drm/xe: Fix uninitialized return value from xe_validation_guard() Thomas Hellström
                   ` (3 preceding siblings ...)
  2025-10-27 20:11 ` ✗ Xe.CI.Full: failure for " Patchwork
@ 2025-10-27 22:04 ` Matthew Brost
  2025-10-28  8:32 ` ✓ CI.KUnit: success for drm/xe: Fix uninitialized return value from xe_validation_guard() (rev2) Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Matthew Brost @ 2025-10-27 22:04 UTC (permalink / raw)
  To: Thomas Hellström; +Cc: intel-xe, Maarten Lankhorst

On Mon, Oct 27, 2025 at 02:12:28PM +0100, Thomas Hellström wrote:
> The parameter _ret is assigned in xe_validation_guard() not
> realizing we're assigning a parameter in a function rather than
> in a macro. That means it's value is not propagated to the caller.
> 
> Fix this by making the _ret parameter a pointer.
> 
> Fixes: c460bc2311df ("drm/xe: Introduce an xe_validation wrapper around drm_exec")
> Link: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6220
> Cc: Maarten Lankhorst <maarten.lankhorst@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>

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

> Cc: intel-xe@lists.freedesktop.org
> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> ---
>  drivers/gpu/drm/xe/xe_validation.h | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_validation.h b/drivers/gpu/drm/xe/xe_validation.h
> index fec331d791e7..b2d09c596714 100644
> --- a/drivers/gpu/drm/xe/xe_validation.h
> +++ b/drivers/gpu/drm/xe/xe_validation.h
> @@ -166,10 +166,10 @@ xe_validation_device_init(struct xe_validation_device *val)
>   */
>  DEFINE_CLASS(xe_validation, struct xe_validation_ctx *,
>  	     if (_T) xe_validation_ctx_fini(_T);,
> -	     ({_ret = xe_validation_ctx_init(_ctx, _val, _exec, _flags);
> -	       _ret ? NULL : _ctx; }),
> +	     ({*_ret = xe_validation_ctx_init(_ctx, _val, _exec, _flags);
> +	       *_ret ? NULL : _ctx; }),
>  	     struct xe_validation_ctx *_ctx, struct xe_validation_device *_val,
> -	     struct drm_exec *_exec, const struct xe_val_flags _flags, int _ret);
> +	     struct drm_exec *_exec, const struct xe_val_flags _flags, int *_ret);
>  static inline void *class_xe_validation_lock_ptr(class_xe_validation_t *_T)
>  {return *_T; }
>  #define class_xe_validation_is_conditional true
> @@ -186,7 +186,7 @@ static inline void *class_xe_validation_lock_ptr(class_xe_validation_t *_T)
>   * exhaustive eviction.
>   */
>  #define xe_validation_guard(_ctx, _val, _exec, _flags, _ret)		\
> -	scoped_guard(xe_validation, _ctx, _val, _exec, _flags, _ret) \
> +	scoped_guard(xe_validation, _ctx, _val, _exec, _flags, &_ret) \
>  	drm_exec_until_all_locked(_exec)
>  
>  #endif
> -- 
> 2.51.0
> 

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

* ✓ CI.KUnit: success for drm/xe: Fix uninitialized return value from xe_validation_guard() (rev2)
  2025-10-27 13:12 [PATCH] drm/xe: Fix uninitialized return value from xe_validation_guard() Thomas Hellström
                   ` (4 preceding siblings ...)
  2025-10-27 22:04 ` [PATCH] " Matthew Brost
@ 2025-10-28  8:32 ` Patchwork
  2025-10-28  9:12 ` ✓ Xe.CI.BAT: " Patchwork
  2025-10-28 13:55 ` ✗ Xe.CI.Full: failure " Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-10-28  8:32 UTC (permalink / raw)
  To: Thomas Hellström; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Fix uninitialized return value from xe_validation_guard() (rev2)
URL   : https://patchwork.freedesktop.org/series/156581/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe: Fix uninitialized return value from xe_validation_guard() (rev2)
  2025-10-27 13:12 [PATCH] drm/xe: Fix uninitialized return value from xe_validation_guard() Thomas Hellström
                   ` (5 preceding siblings ...)
  2025-10-28  8:32 ` ✓ CI.KUnit: success for drm/xe: Fix uninitialized return value from xe_validation_guard() (rev2) Patchwork
@ 2025-10-28  9:12 ` Patchwork
  2025-10-28 13:55 ` ✗ Xe.CI.Full: failure " Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-10-28  9:12 UTC (permalink / raw)
  To: Thomas Hellström; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Fix uninitialized return value from xe_validation_guard() (rev2)
URL   : https://patchwork.freedesktop.org/series/156581/
State : success

== Summary ==

CI Bug Log - changes from xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e_BAT -> xe-pw-156581v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * IGT: IGT_8597 -> IGT_8598
  * Linux: xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e -> xe-pw-156581v2

  IGT_8597: 8597
  IGT_8598: 8598
  xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e: de43fe70c436c359e7478a5532d873f87357cb4e
  xe-pw-156581v2: 156581v2

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for drm/xe: Fix uninitialized return value from xe_validation_guard() (rev2)
  2025-10-27 13:12 [PATCH] drm/xe: Fix uninitialized return value from xe_validation_guard() Thomas Hellström
                   ` (6 preceding siblings ...)
  2025-10-28  9:12 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-28 13:55 ` Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-10-28 13:55 UTC (permalink / raw)
  To: Thomas Hellstrom; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Fix uninitialized return value from xe_validation_guard() (rev2)
URL   : https://patchwork.freedesktop.org/series/156581/
State : failure

== Summary ==

CI Bug Log - changes from xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e_FULL -> xe-pw-156581v2_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@device_reset@unbind-reset-rebind:
    - shard-lnl:          [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-1/igt@device_reset@unbind-reset-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@device_reset@unbind-reset-rebind.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
    - shard-bmg:          [PASS][3] -> [ABORT][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html

  * igt@xe_wedged@basic-wedged:
    - shard-adlp:         [PASS][5] -> [ABORT][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-8/igt@xe_wedged@basic-wedged.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-6/igt@xe_wedged@basic-wedged.html

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

  Here are the changes found in xe-pw-156581v2_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-bmg:          [PASS][7] -> [FAIL][8] ([Intel XE#3718] / [Intel XE#6078])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][9] ([Intel XE#6078])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html

  * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
    - shard-adlp:         [PASS][10] -> [FAIL][11] ([Intel XE#3884]) +1 other test fail
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-8/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-8/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][12] ([Intel XE#316]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
    - shard-adlp:         NOTRUN -> [SKIP][13] ([Intel XE#607])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html

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

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#1407]) +2 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-180:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][16] ([Intel XE#4543])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-4/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-adlp:         [PASS][17] -> [DMESG-FAIL][18] ([Intel XE#4543]) +13 other tests dmesg-fail
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#1124]) +3 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][21] ([Intel XE#1124]) +5 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-adlp:         NOTRUN -> [SKIP][22] ([Intel XE#1124]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

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

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#2191])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#2191])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#1512])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
    - shard-adlp:         NOTRUN -> [SKIP][27] ([Intel XE#2191])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-8/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-3-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#367])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-8/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#367])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][30] ([Intel XE#787]) +8 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-9/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][32] -> [INCOMPLETE][33] ([Intel XE#3862]) +1 other test incomplete
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#2669]) +3 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][36] ([Intel XE#2907])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][37] ([Intel XE#2907])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][38] ([Intel XE#787]) +27 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#2887]) +5 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     [PASS][40] -> [INCOMPLETE][41] ([Intel XE#4345] / [Intel XE#6168])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][42] -> [DMESG-WARN][43] ([Intel XE#1727] / [Intel XE#3113])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-adlp:         NOTRUN -> [SKIP][44] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-9/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#2887]) +5 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
    - shard-dg2-set2:     [PASS][46] -> [INCOMPLETE][47] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][48] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][49] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#306])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2252]) +5 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-resolution-list.html

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

  * igt@kms_chamelium_frames@hdmi-crc-single:
    - shard-adlp:         NOTRUN -> [SKIP][53] ([Intel XE#373]) +2 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-3/igt@kms_chamelium_frames@hdmi-crc-single.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#373]) +3 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-435/igt@kms_chamelium_frames@hdmi-crc-single.html

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

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-adlp:         NOTRUN -> [SKIP][56] ([Intel XE#307])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-4/igt@kms_content_protection@dp-mst-type-0.html
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#307])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@legacy@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][58] ([Intel XE#1178])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-2/igt@kms_content_protection@legacy@pipe-a-dp-2.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          NOTRUN -> [FAIL][59] ([Intel XE#1188]) +1 other test fail
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-7/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2320]) +3 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-128x42:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#1424]) +4 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2291])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-bmg:          [PASS][63] -> [SKIP][64] ([Intel XE#2291]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#309]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

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

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [PASS][67] -> [SKIP][68] ([Intel XE#3009])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-1/igt@kms_dp_aux_dev.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-6/igt@kms_dp_aux_dev.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#2244])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#2244])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-5/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-dg2-set2:     NOTRUN -> [SKIP][71] ([Intel XE#4422])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-466/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#4422])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_feature_discovery@psr1:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#2374])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-7/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-absolute-wf_vblank-interruptible:
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#1421]) +2 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-7/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-bmg:          [PASS][75] -> [SKIP][76] ([Intel XE#2316]) +3 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2:
    - shard-bmg:          [PASS][77] -> [FAIL][78] ([Intel XE#3098]) +1 other test fail
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-5/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-1/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2.html

  * igt@kms_flip@flip-vs-rmfb-interruptible:
    - shard-adlp:         [PASS][79] -> [DMESG-WARN][80] ([Intel XE#4543] / [Intel XE#5208])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-4/igt@kms_flip@flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [PASS][81] -> [DMESG-WARN][82] ([Intel XE#4543]) +10 other tests dmesg-warn
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-adlp:         NOTRUN -> [SKIP][84] ([Intel XE#455]) +6 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#1401]) +2 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#1397] / [Intel XE#1745])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#1397])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [FAIL][88] ([Intel XE#3106] / [Intel XE#4683]) +1 other test fail
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#2293]) +1 other test skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html

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

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render:
    - shard-adlp:         NOTRUN -> [SKIP][91] ([Intel XE#6312])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render.html
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#6312])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#2311]) +4 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][94] ([Intel XE#656]) +7 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
    - shard-dg2-set2:     NOTRUN -> [SKIP][95] ([Intel XE#651]) +6 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#5390]) +4 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][97] ([Intel XE#656]) +21 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#651]) +8 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
    - shard-adlp:         NOTRUN -> [SKIP][99] ([Intel XE#653]) +2 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#2312])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#2313]) +15 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
    - shard-dg2-set2:     NOTRUN -> [SKIP][102] ([Intel XE#653]) +10 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][103] ([Intel XE#6312]) +3 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][104] ([Intel XE#455]) +9 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-464/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [PASS][105] -> [SKIP][106] ([Intel XE#1503])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-2/igt@kms_hdr@static-swap.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-6/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][107] ([Intel XE#4298])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-3/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#2927])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
    - shard-adlp:         NOTRUN -> [SKIP][109] ([Intel XE#2927])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][110] ([Intel XE#4090])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-lnl:          NOTRUN -> [SKIP][111] ([Intel XE#356])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#2486])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-4/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#5624])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [PASS][114] -> [SKIP][115] ([Intel XE#4596])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-4.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html

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

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [PASS][117] -> [FAIL][118] ([Intel XE#718])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][119] ([Intel XE#2499])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-7/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-adlp:         NOTRUN -> [SKIP][120] ([Intel XE#836])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-3/igt@kms_pm_rpm@dpms-non-lpsp.html
    - shard-lnl:          NOTRUN -> [SKIP][121] ([Intel XE#1439] / [Intel XE#3141])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-8/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
    - shard-adlp:         NOTRUN -> [SKIP][122] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][123] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html

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

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][125] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-432/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-dg2-set2:     NOTRUN -> [SKIP][126] ([Intel XE#1122] / [Intel XE#1406]) +1 other test skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-434/igt@kms_psr2_su@page_flip-nv12.html
    - shard-bmg:          NOTRUN -> [SKIP][127] ([Intel XE#1406] / [Intel XE#2387])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-2/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@fbc-psr-sprite-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][128] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +7 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html

  * igt@kms_psr@fbc-psr2-basic@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@kms_psr@fbc-psr2-basic@edp-1.html

  * igt@kms_psr@fbc-psr2-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][130] ([Intel XE#1406]) +4 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-8/igt@kms_psr@fbc-psr2-dpms.html

  * igt@kms_psr@pr-sprite-render:
    - shard-bmg:          NOTRUN -> [SKIP][131] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-7/igt@kms_psr@pr-sprite-render.html
    - shard-adlp:         NOTRUN -> [SKIP][132] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-8/igt@kms_psr@pr-sprite-render.html

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

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][134] ([Intel XE#2330])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][135] ([Intel XE#3414]) +1 other test skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
    - shard-lnl:          NOTRUN -> [SKIP][136] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
    - shard-adlp:         NOTRUN -> [SKIP][137] ([Intel XE#3414])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
    - shard-bmg:          NOTRUN -> [SKIP][138] ([Intel XE#3414] / [Intel XE#3904])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-lnl:          NOTRUN -> [SKIP][139] ([Intel XE#1435])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-4/igt@kms_setmode@basic-clone-single-crtc.html

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

  * igt@kms_vrr@lobf:
    - shard-adlp:         NOTRUN -> [SKIP][141] ([Intel XE#2168])
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-4/igt@kms_vrr@lobf.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][142] ([Intel XE#2168])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-433/igt@kms_vrr@lobf.html
    - shard-lnl:          NOTRUN -> [SKIP][143] ([Intel XE#1499])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@kms_vrr@lobf.html

  * igt@xe_configfs@survivability-mode:
    - shard-dg2-set2:     NOTRUN -> [SKIP][144] ([Intel XE#6010])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-464/igt@xe_configfs@survivability-mode.html

  * igt@xe_eudebug@basic-connect:
    - shard-lnl:          NOTRUN -> [SKIP][145] ([Intel XE#4837]) +9 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-5/igt@xe_eudebug@basic-connect.html

  * igt@xe_eudebug@basic-exec-queues-enable:
    - shard-bmg:          NOTRUN -> [SKIP][146] ([Intel XE#4837]) +5 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-7/igt@xe_eudebug@basic-exec-queues-enable.html

  * igt@xe_eudebug@vm-bind-clear-faultable:
    - shard-dg2-set2:     NOTRUN -> [SKIP][147] ([Intel XE#4837]) +8 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-466/igt@xe_eudebug@vm-bind-clear-faultable.html

  * igt@xe_eudebug_online@resume-one:
    - shard-adlp:         NOTRUN -> [SKIP][148] ([Intel XE#4837] / [Intel XE#5565]) +3 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-6/igt@xe_eudebug_online@resume-one.html

  * igt@xe_evict@evict-beng-cm-threads-small-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][149] ([Intel XE#688]) +6 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@xe_evict@evict-beng-cm-threads-small-multi-vm.html

  * igt@xe_evict@evict-beng-large-external-cm:
    - shard-adlp:         NOTRUN -> [SKIP][150] ([Intel XE#261] / [Intel XE#5564]) +1 other test skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-9/igt@xe_evict@evict-beng-large-external-cm.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [PASS][151] -> [INCOMPLETE][152] ([Intel XE#6321])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-small-cm:
    - shard-adlp:         NOTRUN -> [SKIP][153] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-6/igt@xe_evict@evict-small-cm.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][154] ([Intel XE#2322])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][155] ([Intel XE#1392]) +4 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault:
    - shard-adlp:         NOTRUN -> [SKIP][156] ([Intel XE#288] / [Intel XE#5561]) +4 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-3/igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault.html

  * igt@xe_exec_fault_mode@once-rebind-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][157] ([Intel XE#288]) +6 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-466/igt@xe_exec_fault_mode@once-rebind-prefetch.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-adlp:         NOTRUN -> [SKIP][158] ([Intel XE#2360])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-8/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

  * igt@xe_exec_reset@cm-close-fd:
    - shard-adlp:         [PASS][159] -> [DMESG-WARN][160] ([Intel XE#3868])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-9/igt@xe_exec_reset@cm-close-fd.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html

  * igt@xe_exec_system_allocator@evict-malloc:
    - shard-bmg:          [PASS][161] -> [ABORT][162] ([Intel XE#3970])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-5/igt@xe_exec_system_allocator@evict-malloc.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-5/igt@xe_exec_system_allocator@evict-malloc.html

  * igt@xe_exec_system_allocator@madvise-range-invalidate-change-attr:
    - shard-lnl:          NOTRUN -> [WARN][163] ([Intel XE#5786])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-5/igt@xe_exec_system_allocator@madvise-range-invalidate-change-attr.html

  * igt@xe_exec_system_allocator@many-large-mmap-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][164] ([Intel XE#4943]) +8 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-7/igt@xe_exec_system_allocator@many-large-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@once-mmap-remap-ro-dontunmap:
    - shard-adlp:         NOTRUN -> [SKIP][165] ([Intel XE#4915]) +64 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-1/igt@xe_exec_system_allocator@once-mmap-remap-ro-dontunmap.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma:
    - shard-lnl:          NOTRUN -> [SKIP][166] ([Intel XE#6196])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma.html

  * igt@xe_exec_system_allocator@threads-many-large-mmap-mlock:
    - shard-dg2-set2:     NOTRUN -> [SKIP][167] ([Intel XE#4915]) +139 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-large-mmap-mlock.html

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

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-dg2-set2:     [PASS][169] -> [DMESG-WARN][170] ([Intel XE#5893])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-adlp:         NOTRUN -> [SKIP][171] ([Intel XE#455] / [Intel XE#5712])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-9/igt@xe_live_ktest@xe_eudebug.html
    - shard-lnl:          NOTRUN -> [SKIP][172] ([Intel XE#2833])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-1/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_media_fill@media-fill:
    - shard-bmg:          NOTRUN -> [SKIP][173] ([Intel XE#2459] / [Intel XE#2596])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-5/igt@xe_media_fill@media-fill.html

  * igt@xe_oa@mmio-triggered-reports-read:
    - shard-adlp:         NOTRUN -> [SKIP][174] ([Intel XE#6032])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-1/igt@xe_oa@mmio-triggered-reports-read.html

  * igt@xe_oa@non-privileged-map-oa-buffer:
    - shard-dg2-set2:     NOTRUN -> [SKIP][175] ([Intel XE#3573]) +2 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-463/igt@xe_oa@non-privileged-map-oa-buffer.html
    - shard-adlp:         NOTRUN -> [SKIP][176] ([Intel XE#3573])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-4/igt@xe_oa@non-privileged-map-oa-buffer.html

  * igt@xe_pat@pat-index-xelp:
    - shard-lnl:          NOTRUN -> [SKIP][177] ([Intel XE#977])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@xe_pat@pat-index-xelp.html

  * igt@xe_peer2peer@write:
    - shard-bmg:          NOTRUN -> [SKIP][178] ([Intel XE#2427])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-1/igt@xe_peer2peer@write.html
    - shard-adlp:         NOTRUN -> [SKIP][179] ([Intel XE#1061] / [Intel XE#5568])
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-4/igt@xe_peer2peer@write.html
    - shard-lnl:          NOTRUN -> [SKIP][180] ([Intel XE#1061])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-4/igt@xe_peer2peer@write.html

  * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
    - shard-dg2-set2:     NOTRUN -> [FAIL][181] ([Intel XE#1173]) +1 other test fail
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-434/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-lnl:          NOTRUN -> [SKIP][182] ([Intel XE#2284] / [Intel XE#366])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-5/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][183] ([Intel XE#2284] / [Intel XE#366])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-466/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][184] ([Intel XE#2284])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-5/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pm@s2idle-vm-bind-unbind-all:
    - shard-dg2-set2:     [PASS][185] -> [TIMEOUT][186] ([Intel XE#6227])
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-dg2-434/igt@xe_pm@s2idle-vm-bind-unbind-all.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-435/igt@xe_pm@s2idle-vm-bind-unbind-all.html

  * igt@xe_pm@s3-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][187] ([Intel XE#584])
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s4-mocs:
    - shard-bmg:          NOTRUN -> [FAIL][188] ([Intel XE#6406])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-2/igt@xe_pm@s4-mocs.html
    - shard-adlp:         NOTRUN -> [FAIL][189] ([Intel XE#6406])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-9/igt@xe_pm@s4-mocs.html
    - shard-lnl:          NOTRUN -> [FAIL][190] ([Intel XE#6406])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@xe_pm@s4-mocs.html

  * igt@xe_pmu@all-fn-engine-activity-load:
    - shard-lnl:          NOTRUN -> [SKIP][191] ([Intel XE#4650])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-5/igt@xe_pmu@all-fn-engine-activity-load.html

  * igt@xe_pxp@pxp-stale-queue-post-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][192] ([Intel XE#4733])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-2/igt@xe_pxp@pxp-stale-queue-post-suspend.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][193] ([Intel XE#4733])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-464/igt@xe_pxp@pxp-stale-queue-post-suspend.html

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

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-adlp:         NOTRUN -> [SKIP][195] ([Intel XE#944])
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-6/igt@xe_query@multigpu-query-uc-fw-version-huc.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][196] ([Intel XE#944])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-huc.html
    - shard-lnl:          NOTRUN -> [SKIP][197] ([Intel XE#944]) +2 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-5/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
    - shard-lnl:          NOTRUN -> [SKIP][198] ([Intel XE#4130])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html

  * igt@xe_sriov_vram@vf-access-after-resize-up:
    - shard-dg2-set2:     NOTRUN -> [SKIP][199] ([Intel XE#6318])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-466/igt@xe_sriov_vram@vf-access-after-resize-up.html
    - shard-lnl:          NOTRUN -> [SKIP][200] ([Intel XE#6376])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-1/igt@xe_sriov_vram@vf-access-after-resize-up.html
    - shard-adlp:         NOTRUN -> [SKIP][201] ([Intel XE#6376])
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-9/igt@xe_sriov_vram@vf-access-after-resize-up.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [FAIL][202] ([Intel XE#6054]) -> [PASS][203] +3 other tests pass
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
    - shard-lnl:          [FAIL][204] ([Intel XE#5993]) -> [PASS][205] +3 other tests pass
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html

  * igt@kms_async_flips@test-time-stamp-atomic:
    - shard-adlp:         [DMESG-WARN][206] ([Intel XE#4917]) -> [PASS][207]
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-4/igt@kms_async_flips@test-time-stamp-atomic.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-4/igt@kms_async_flips@test-time-stamp-atomic.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-adlp:         [DMESG-FAIL][208] ([Intel XE#4543]) -> [PASS][209] +12 other tests pass
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [SKIP][210] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][211]
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][212] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][213]
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-bmg:          [SKIP][214] ([Intel XE#2291]) -> [PASS][215] +5 other tests pass
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-bmg:          [SKIP][216] ([Intel XE#2316]) -> [PASS][217] +2 other tests pass
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
    - shard-lnl:          [FAIL][218] ([Intel XE#301]) -> [PASS][219] +1 other test pass
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html

  * igt@kms_flip@flip-vs-panning-interruptible:
    - shard-adlp:         [DMESG-WARN][220] ([Intel XE#4543] / [Intel XE#5208]) -> [PASS][221]
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-1/igt@kms_flip@flip-vs-panning-interruptible.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-9/igt@kms_flip@flip-vs-panning-interruptible.html

  * igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][222] ([Intel XE#4543]) -> [PASS][223] +8 other tests pass
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-1/igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-9/igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1.html

  * igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1:
    - shard-adlp:         [TIMEOUT][224] ([Intel XE#4543]) -> [PASS][225] +1 other test pass
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-1/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-8/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [INCOMPLETE][226] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][227] +1 other test pass
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][228] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][229] +8 other tests pass
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend@d-dp4:
    - shard-dg2-set2:     [INCOMPLETE][230] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][231] +1 other test pass
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-dg2-434/igt@kms_flip@flip-vs-suspend@d-dp4.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-466/igt@kms_flip@flip-vs-suspend@d-dp4.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-adlp:         [DMESG-FAIL][232] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][233] +1 other test pass
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-bmg:          [SKIP][234] ([Intel XE#4596]) -> [PASS][235]
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-adlp:         [FAIL][236] ([Intel XE#718]) -> [PASS][237]
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-3/igt@kms_pm_dc@dc6-dpms.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-8/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [FAIL][238] ([Intel XE#718]) -> [PASS][239]
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-lnl:          [SKIP][240] ([Intel XE#1406] / [Intel XE#4692]) -> [PASS][241]
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@xe_configfs@engines-allowed-invalid:
    - shard-adlp:         [ABORT][242] ([Intel XE#5466]) -> [PASS][243]
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-4/igt@xe_configfs@engines-allowed-invalid.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-3/igt@xe_configfs@engines-allowed-invalid.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][244] ([Intel XE#6321]) -> [PASS][245]
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_gt_freq@freq_fixed_idle:
    - shard-dg2-set2:     [FAIL][246] ([Intel XE#6407]) -> [PASS][247]
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-dg2-432/igt@xe_gt_freq@freq_fixed_idle.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-463/igt@xe_gt_freq@freq_fixed_idle.html

  * igt@xe_pm@s2idle-basic:
    - shard-adlp:         [DMESG-WARN][248] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) -> [PASS][249]
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-8/igt@xe_pm@s2idle-basic.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-3/igt@xe_pm@s2idle-basic.html

  * igt@xe_pm@s4-vm-bind-prefetch:
    - shard-lnl:          [FAIL][250] ([Intel XE#6406]) -> [PASS][251]
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-3/igt@xe_pm@s4-vm-bind-prefetch.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-bmg:          [FAIL][252] ([Intel XE#6406]) -> [PASS][253]
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-6/igt@xe_pm@s4-vm-bind-unbind-all.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-7/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1:
    - shard-bmg:          [ABORT][254] ([Intel XE#3970]) -> [PASS][255] +1 other test pass
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-4/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-2/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][256] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][257] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][258] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) -> [INCOMPLETE][259] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [SKIP][260] ([Intel XE#2341]) -> [FAIL][261] ([Intel XE#1178])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-6/igt@kms_content_protection@legacy.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-2/igt@kms_content_protection@legacy.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode:
    - shard-adlp:         [DMESG-WARN][262] ([Intel XE#2953] / [Intel XE#4173]) -> [DMESG-FAIL][263] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][264] ([Intel XE#2311]) -> [SKIP][265] ([Intel XE#2312]) +5 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][266] ([Intel XE#2312]) -> [SKIP][267] ([Intel XE#5390]) +5 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][268] ([Intel XE#5390]) -> [SKIP][269] ([Intel XE#2312]) +3 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][270] ([Intel XE#2312]) -> [SKIP][271] ([Intel XE#2311]) +9 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][272] ([Intel XE#2312]) -> [SKIP][273] ([Intel XE#2313]) +12 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][274] ([Intel XE#2313]) -> [SKIP][275] ([Intel XE#2312]) +6 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][276] ([Intel XE#4596]) -> [SKIP][277] ([Intel XE#5021])
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][278] ([Intel XE#2426]) -> [FAIL][279] ([Intel XE#1729])
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][280] ([Intel XE#2509]) -> [SKIP][281] ([Intel XE#2426])
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_exec_basic@multigpu-no-exec-null-rebind:
    - shard-adlp:         [DMESG-WARN][282] ([Intel XE#4917]) -> [SKIP][283] ([Intel XE#1392] / [Intel XE#5575])
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-4/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-8/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-adlp:         [ABORT][284] ([Intel XE#5530]) -> [ABORT][285] ([Intel XE#5466] / [Intel XE#5530])
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-adlp-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-adlp-2/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
    - shard-bmg:          [ABORT][286] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530]) -> [ABORT][287] ([Intel XE#5466] / [Intel XE#5530])
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-bmg-2/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [DMESG-WARN][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311]) ([Intel XE#6295]) -> ([PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [SKIP][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337]) ([Intel XE#378])
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-5/igt@xe_module_load@load.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-5/igt@xe_module_load@load.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-5/igt@xe_module_load@load.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-4/igt@xe_module_load@load.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-3/igt@xe_module_load@load.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-4/igt@xe_module_load@load.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-1/igt@xe_module_load@load.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-4/igt@xe_module_load@load.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-4/igt@xe_module_load@load.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-1/igt@xe_module_load@load.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-3/igt@xe_module_load@load.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-3/igt@xe_module_load@load.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-8/igt@xe_module_load@load.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-8/igt@xe_module_load@load.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-7/igt@xe_module_load@load.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-8/igt@xe_module_load@load.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-2/igt@xe_module_load@load.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-2/igt@xe_module_load@load.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-2/igt@xe_module_load@load.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-1/igt@xe_module_load@load.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-7/igt@xe_module_load@load.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-7/igt@xe_module_load@load.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-7/igt@xe_module_load@load.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e/shard-lnl-1/igt@xe_module_load@load.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-8/igt@xe_module_load@load.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-4/igt@xe_module_load@load.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-8/igt@xe_module_load@load.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-4/igt@xe_module_load@load.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-4/igt@xe_module_load@load.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-4/igt@xe_module_load@load.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-4/igt@xe_module_load@load.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@xe_module_load@load.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-7/igt@xe_module_load@load.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-7/igt@xe_module_load@load.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@xe_module_load@load.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@xe_module_load@load.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-2/igt@xe_module_load@load.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-7/igt@xe_module_load@load.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-5/igt@xe_module_load@load.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-5/igt@xe_module_load@load.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-5/igt@xe_module_load@load.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-8/igt@xe_module_load@load.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-8/igt@xe_module_load@load.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-1/igt@xe_module_load@load.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-1/igt@xe_module_load@load.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-1/igt@xe_module_load@load.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@xe_module_load@load.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@xe_module_load@load.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@xe_module_load@load.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156581v2/shard-lnl-3/igt@xe_module_load@load.html

  
  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
  [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#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [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#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
  [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [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#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
  [Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
  [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
  [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
  [Intel XE#5568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5568
  [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
  [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
  [Intel XE#5712]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5712
  [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
  [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
  [Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
  [Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
  [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
  [Intel XE#6227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6227
  [Intel XE#6295]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6295
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
  [Intel XE#6406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6406
  [Intel XE#6407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6407
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977


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

  * IGT: IGT_8597 -> IGT_8598
  * Linux: xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e -> xe-pw-156581v2

  IGT_8597: 8597
  IGT_8598: 8598
  xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e: de43fe70c436c359e7478a5532d873f87357cb4e
  xe-pw-156581v2: 156581v2

== Logs ==

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

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

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

end of thread, other threads:[~2025-10-28 13:55 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-27 13:12 [PATCH] drm/xe: Fix uninitialized return value from xe_validation_guard() Thomas Hellström
2025-10-27 16:08 ` ✓ CI.KUnit: success for " Patchwork
2025-10-27 16:20 ` [PATCH] " Lucas De Marchi
2025-10-27 16:52 ` Maarten Lankhorst
2025-10-27 20:11 ` ✗ Xe.CI.Full: failure for " Patchwork
2025-10-27 22:04 ` [PATCH] " Matthew Brost
2025-10-28  8:32 ` ✓ CI.KUnit: success for drm/xe: Fix uninitialized return value from xe_validation_guard() (rev2) Patchwork
2025-10-28  9:12 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-28 13:55 ` ✗ 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