Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
@ 2025-12-17  6:17 Tapani Pälli
  2025-12-17  8:00 ` ✓ CI.KUnit: success for " Patchwork
                   ` (7 more replies)
  0 siblings, 8 replies; 21+ messages in thread
From: Tapani Pälli @ 2025-12-17  6:17 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.brost, Tapani Pälli

Helper function xe_sync_needs_wait expects sync->fence when accessing
flags, patch makes sure we call only when sync->fence exists.

Fixes NULL pointer dereference seen with Vulkan workloads:

[  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]

Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when swicthing to dma-fence mode")
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
---
 drivers/gpu/drm/xe/xe_exec.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
index 730a5c9c2637..ea368f02cb9f 100644
--- a/drivers/gpu/drm/xe/xe_exec.c
+++ b/drivers/gpu/drm/xe/xe_exec.c
@@ -184,7 +184,8 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
 		if (xe_sync_is_ufence(&syncs[num_syncs]))
 			num_ufence++;
 
-		if (!num_in_sync && xe_sync_needs_wait(&syncs[num_syncs]))
+		if (!num_in_sync && syncs[num_syncs].fence &&
+		    xe_sync_needs_wait(&syncs[num_syncs]))
 			num_in_sync++;
 	}
 
-- 
2.52.0


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

* ✓ CI.KUnit: success for drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17  6:17 [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl Tapani Pälli
@ 2025-12-17  8:00 ` Patchwork
  2025-12-17  9:01 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-12-17  8:00 UTC (permalink / raw)
  To: Tapani Pälli; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
URL   : https://patchwork.freedesktop.org/series/159132/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17  6:17 [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl Tapani Pälli
  2025-12-17  8:00 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-12-17  9:01 ` Patchwork
  2025-12-17 10:27 ` [PATCH] " Matthew Auld
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-12-17  9:01 UTC (permalink / raw)
  To: Tapani Pälli; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
URL   : https://patchwork.freedesktop.org/series/159132/
State : success

== Summary ==

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

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [PASS][1] -> [FAIL][2] ([Intel XE#6520])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v1/bat-dg2-oem2/igt@xe_waitfence@reltime.html

  
#### Possible fixes ####

  * igt@xe_waitfence@engine:
    - bat-dg2-oem2:       [FAIL][3] ([Intel XE#6519]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/bat-dg2-oem2/igt@xe_waitfence@engine.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v1/bat-dg2-oem2/igt@xe_waitfence@engine.html

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


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

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

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

== Logs ==

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

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

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

* Re: [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17  6:17 [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl Tapani Pälli
  2025-12-17  8:00 ` ✓ CI.KUnit: success for " Patchwork
  2025-12-17  9:01 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-12-17 10:27 ` Matthew Auld
  2025-12-17 10:31   ` Matthew Auld
  2025-12-17 13:10 ` ✓ CI.KUnit: success for drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev2) Patchwork
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 21+ messages in thread
From: Matthew Auld @ 2025-12-17 10:27 UTC (permalink / raw)
  To: Tapani Pälli, intel-xe; +Cc: matthew.brost

On 17/12/2025 06:17, Tapani Pälli wrote:
> Helper function xe_sync_needs_wait expects sync->fence when accessing
> flags, patch makes sure we call only when sync->fence exists.
> 
> Fixes NULL pointer dereference seen with Vulkan workloads:
> 
> [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
> 
> Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when swicthing to dma-fence mode")
> Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
> ---
>   drivers/gpu/drm/xe/xe_exec.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
> index 730a5c9c2637..ea368f02cb9f 100644
> --- a/drivers/gpu/drm/xe/xe_exec.c
> +++ b/drivers/gpu/drm/xe/xe_exec.c
> @@ -184,7 +184,8 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
>   		if (xe_sync_is_ufence(&syncs[num_syncs]))
>   			num_ufence++;
>   
> -		if (!num_in_sync && xe_sync_needs_wait(&syncs[num_syncs]))
> +		if (!num_in_sync && syncs[num_syncs].fence &&
> +		    xe_sync_needs_wait(&syncs[num_syncs]))

In xe_sync_entry_parse() it looks like it will always populate the fence 
for the !signal case, otherwise throwing an error if that is not 
possible. And xe_sync_needs_wait() will only touch the fence if it's the 
signal case? So it seems like this should not be possible?

>   			num_in_sync++;
>   	}
>   


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

* Re: [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17 10:27 ` [PATCH] " Matthew Auld
@ 2025-12-17 10:31   ` Matthew Auld
  2025-12-17 10:51     ` Tapani Pälli
  0 siblings, 1 reply; 21+ messages in thread
From: Matthew Auld @ 2025-12-17 10:31 UTC (permalink / raw)
  To: Tapani Pälli, intel-xe; +Cc: matthew.brost

On 17/12/2025 10:27, Matthew Auld wrote:
> On 17/12/2025 06:17, Tapani Pälli wrote:
>> Helper function xe_sync_needs_wait expects sync->fence when accessing
>> flags, patch makes sure we call only when sync->fence exists.
>>
>> Fixes NULL pointer dereference seen with Vulkan workloads:
>>
>> [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
>>
>> Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when swicthing to dma- 
>> fence mode")
>> Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
>> ---
>>   drivers/gpu/drm/xe/xe_exec.c | 3 ++-
>>   1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
>> index 730a5c9c2637..ea368f02cb9f 100644
>> --- a/drivers/gpu/drm/xe/xe_exec.c
>> +++ b/drivers/gpu/drm/xe/xe_exec.c
>> @@ -184,7 +184,8 @@ int xe_exec_ioctl(struct drm_device *dev, void 
>> *data, struct drm_file *file)
>>           if (xe_sync_is_ufence(&syncs[num_syncs]))
>>               num_ufence++;
>> -        if (!num_in_sync && xe_sync_needs_wait(&syncs[num_syncs]))
>> +        if (!num_in_sync && syncs[num_syncs].fence &&
>> +            xe_sync_needs_wait(&syncs[num_syncs]))
> 
> In xe_sync_entry_parse() it looks like it will always populate the fence 
> for the !signal case, otherwise throwing an error if that is not 
> possible. And xe_sync_needs_wait() will only touch the fence if it's the 
> signal case? So it seems like this should not be possible?

Sorry meant to type:

s/touch the fence if it's the signal/touch the fence if it's the !signal/

> 
>>               num_in_sync++;
>>       }
> 


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

* Re: [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17 10:31   ` Matthew Auld
@ 2025-12-17 10:51     ` Tapani Pälli
  2025-12-17 11:42       ` Tapani Pälli
  2025-12-17 11:51       ` Matthew Auld
  0 siblings, 2 replies; 21+ messages in thread
From: Tapani Pälli @ 2025-12-17 10:51 UTC (permalink / raw)
  To: Matthew Auld, intel-xe; +Cc: matthew.brost


On 12/17/25 12:31, Matthew Auld wrote:
> On 17/12/2025 10:27, Matthew Auld wrote:
>> On 17/12/2025 06:17, Tapani Pälli wrote:
>>> Helper function xe_sync_needs_wait expects sync->fence when accessing
>>> flags, patch makes sure we call only when sync->fence exists.
>>>
>>> Fixes NULL pointer dereference seen with Vulkan workloads:
>>>
>>> [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
>>>
>>> Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when swicthing to 
>>> dma- fence mode")
>>> Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
>>> ---
>>>   drivers/gpu/drm/xe/xe_exec.c | 3 ++-
>>>   1 file changed, 2 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_exec.c 
>>> b/drivers/gpu/drm/xe/xe_exec.c
>>> index 730a5c9c2637..ea368f02cb9f 100644
>>> --- a/drivers/gpu/drm/xe/xe_exec.c
>>> +++ b/drivers/gpu/drm/xe/xe_exec.c
>>> @@ -184,7 +184,8 @@ int xe_exec_ioctl(struct drm_device *dev, void 
>>> *data, struct drm_file *file)
>>>           if (xe_sync_is_ufence(&syncs[num_syncs]))
>>>               num_ufence++;
>>> -        if (!num_in_sync && xe_sync_needs_wait(&syncs[num_syncs]))
>>> +        if (!num_in_sync && syncs[num_syncs].fence &&
>>> +            xe_sync_needs_wait(&syncs[num_syncs]))
>>
>> In xe_sync_entry_parse() it looks like it will always populate the 
>> fence for the !signal case, otherwise throwing an error if that is 
>> not possible. And xe_sync_needs_wait() will only touch the fence if 
>> it's the signal case? So it seems like this should not be possible?
>
> Sorry meant to type:
>
> s/touch the fence if it's the signal/touch the fence if it's the !signal/
>
I'm not sure of the complete flow but it is quite easy to reproduce.

Here is the stacktrace snippet:

[  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
[  118.410940] Code: 90 90 90 0f 1f 44 00 00 55 48 89 f1 48 89 e5 48 83 
ec 08 48 83 7e 08 00 0f 84 79 be 1c 00 31 c0 f6 41 4c 01 75 11 48 8b 41 
08 <48> 8b 40 30 48 d1 e8 83 e0 01 83 f0 01 c9 31 d2 31 c9 31 f6 31 ff
[  118.410949] RSP: 0018:ffffccec8ea7bb18 EFLAGS: 00010246
[  118.410957] RAX: 0000000000000000 RBX: 00007ff23812f460 RCX: 
ffff8c1790db4800
[  118.410964] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 
0000000000000000
[  118.410968] RBP: ffffccec8ea7bb20 R08: 0000000000000000 R09: 
0000000000000000
[  118.410973] R10: 0000000000000000 R11: 0000000000000000 R12: 
ffff8c1790db4800
[  118.410978] R13: 0000000000000000 R14: ffff8c178b67e000 R15: 
0000000000000000
[  118.410984] FS:  0000000101aff6c0(0000) GS:ffff8c27350d1000(0000) 
knlGS:000000007fe20000
[  118.410992] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  118.410998] CR2: 0000000000000030 CR3: 00000001037ef005 CR4: 
0000000000772ef0
[  118.411004] PKRU: 55555554
[  118.411008] Call Trace:
[  118.411013]  <TASK>
[  118.411022]  xe_exec_ioctl+0x375/0xea0 [xe]
[  118.411377]  ? __x64_sys_ioctl+0xbd/0x100
[  118.411392]  ? do_syscall_64+0xa7/0x580
[  118.411403]  ? dma_fence_free+0x1a/0x30
[  118.411419]  ? __pfx_xe_exec_fn+0x10/0x10 [xe]
[  118.411752]  ? drm_syncobj_array_free+0x56/0x80 [drm]
[  118.411915]  ? drm_syncobj_query_ioctl+0x20f/0x460 [drm]
[  118.412035]  ? __pfx_xe_exec_ioctl+0x10/0x10 [xe]
[  118.412372]  drm_ioctl_kernel+0xae/0x110 [drm]
[  118.412524]  drm_ioctl+0x2ee/0x5d0 [drm]
[  118.412649]  ? __pfx_xe_exec_ioctl+0x10/0x10 [xe]
[  118.412989]  ? __pm_runtime_resume+0x5f/0x90
[  118.413002]  xe_drm_ioctl+0x61/0xb0 [xe]
[  118.413329]  __x64_sys_ioctl+0xa3/0x100
[  118.413338]  x64_sys_call+0x1060/0x2360
[  118.413347]  do_syscall_64+0x74/0x580
[  118.413355]  ? x64_sys_call+0x1060/0x2360
[  118.413360]  ? do_syscall_64+0xa7/0x580
[  118.413368]  ? __do_sys_getpid+0x1d/0x30
[  118.413377]  ? x64_sys_call+0xf9d/0x2360
[  118.413383]  ? do_syscall_64+0xa7/0x580
[  118.413389]  ? x64_sys_call+0x1060/0x2360
[  118.413395]  ? do_syscall_64+0xa7/0x580
[  118.413401]  ? sysvec_apic_timer_interrupt+0x54/0xd0
[  118.413410]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
[  118.413418] RIP: 0033:0x7ff29c93287d



>>
>>>               num_in_sync++;
>>>       }
>>
>

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

* Re: [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17 10:51     ` Tapani Pälli
@ 2025-12-17 11:42       ` Tapani Pälli
  2025-12-17 11:51       ` Matthew Auld
  1 sibling, 0 replies; 21+ messages in thread
From: Tapani Pälli @ 2025-12-17 11:42 UTC (permalink / raw)
  To: Matthew Auld, intel-xe; +Cc: matthew.brost


On 12/17/25 12:51, Tapani Pälli wrote:
>
> On 12/17/25 12:31, Matthew Auld wrote:
>> On 17/12/2025 10:27, Matthew Auld wrote:
>>> On 17/12/2025 06:17, Tapani Pälli wrote:
>>>> Helper function xe_sync_needs_wait expects sync->fence when accessing
>>>> flags, patch makes sure we call only when sync->fence exists.
>>>>
>>>> Fixes NULL pointer dereference seen with Vulkan workloads:
>>>>
>>>> [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
>>>>
>>>> Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when swicthing to 
>>>> dma- fence mode")
>>>> Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
>>>> ---
>>>>   drivers/gpu/drm/xe/xe_exec.c | 3 ++-
>>>>   1 file changed, 2 insertions(+), 1 deletion(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/xe/xe_exec.c 
>>>> b/drivers/gpu/drm/xe/xe_exec.c
>>>> index 730a5c9c2637..ea368f02cb9f 100644
>>>> --- a/drivers/gpu/drm/xe/xe_exec.c
>>>> +++ b/drivers/gpu/drm/xe/xe_exec.c
>>>> @@ -184,7 +184,8 @@ int xe_exec_ioctl(struct drm_device *dev, void 
>>>> *data, struct drm_file *file)
>>>>           if (xe_sync_is_ufence(&syncs[num_syncs]))
>>>>               num_ufence++;
>>>> -        if (!num_in_sync && xe_sync_needs_wait(&syncs[num_syncs]))
>>>> +        if (!num_in_sync && syncs[num_syncs].fence &&
>>>> +            xe_sync_needs_wait(&syncs[num_syncs]))
>>>
>>> In xe_sync_entry_parse() it looks like it will always populate the 
>>> fence for the !signal case, otherwise throwing an error if that is 
>>> not possible. And xe_sync_needs_wait() will only touch the fence if 
>>> it's the signal case? So it seems like this should not be possible?
>>
>> Sorry meant to type:
>>
>> s/touch the fence if it's the signal/touch the fence if it's the 
>> !signal/
>>
> I'm not sure of the complete flow but it is quite easy to reproduce.
>
This "quite easy" meaning requires Steam and running games on a BMG 
system. Case where it reproduces reliably is game called "Pragmata 
Sketchbook". I can try to collect some more information, I earlier 
printed out stuff via drm_err and noticed sync->fence is null in the 
case. I'm not really familiar with this area so if you let me know some 
particular things I should be looking for I can try to find out.


> Here is the stacktrace snippet:
>
> [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
> [  118.410940] Code: 90 90 90 0f 1f 44 00 00 55 48 89 f1 48 89 e5 48 
> 83 ec 08 48 83 7e 08 00 0f 84 79 be 1c 00 31 c0 f6 41 4c 01 75 11 48 
> 8b 41 08 <48> 8b 40 30 48 d1 e8 83 e0 01 83 f0 01 c9 31 d2 31 c9 31 f6 
> 31 ff
> [  118.410949] RSP: 0018:ffffccec8ea7bb18 EFLAGS: 00010246
> [  118.410957] RAX: 0000000000000000 RBX: 00007ff23812f460 RCX: 
> ffff8c1790db4800
> [  118.410964] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 
> 0000000000000000
> [  118.410968] RBP: ffffccec8ea7bb20 R08: 0000000000000000 R09: 
> 0000000000000000
> [  118.410973] R10: 0000000000000000 R11: 0000000000000000 R12: 
> ffff8c1790db4800
> [  118.410978] R13: 0000000000000000 R14: ffff8c178b67e000 R15: 
> 0000000000000000
> [  118.410984] FS:  0000000101aff6c0(0000) GS:ffff8c27350d1000(0000) 
> knlGS:000000007fe20000
> [  118.410992] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
> [  118.410998] CR2: 0000000000000030 CR3: 00000001037ef005 CR4: 
> 0000000000772ef0
> [  118.411004] PKRU: 55555554
> [  118.411008] Call Trace:
> [  118.411013]  <TASK>
> [  118.411022]  xe_exec_ioctl+0x375/0xea0 [xe]
> [  118.411377]  ? __x64_sys_ioctl+0xbd/0x100
> [  118.411392]  ? do_syscall_64+0xa7/0x580
> [  118.411403]  ? dma_fence_free+0x1a/0x30
> [  118.411419]  ? __pfx_xe_exec_fn+0x10/0x10 [xe]
> [  118.411752]  ? drm_syncobj_array_free+0x56/0x80 [drm]
> [  118.411915]  ? drm_syncobj_query_ioctl+0x20f/0x460 [drm]
> [  118.412035]  ? __pfx_xe_exec_ioctl+0x10/0x10 [xe]
> [  118.412372]  drm_ioctl_kernel+0xae/0x110 [drm]
> [  118.412524]  drm_ioctl+0x2ee/0x5d0 [drm]
> [  118.412649]  ? __pfx_xe_exec_ioctl+0x10/0x10 [xe]
> [  118.412989]  ? __pm_runtime_resume+0x5f/0x90
> [  118.413002]  xe_drm_ioctl+0x61/0xb0 [xe]
> [  118.413329]  __x64_sys_ioctl+0xa3/0x100
> [  118.413338]  x64_sys_call+0x1060/0x2360
> [  118.413347]  do_syscall_64+0x74/0x580
> [  118.413355]  ? x64_sys_call+0x1060/0x2360
> [  118.413360]  ? do_syscall_64+0xa7/0x580
> [  118.413368]  ? __do_sys_getpid+0x1d/0x30
> [  118.413377]  ? x64_sys_call+0xf9d/0x2360
> [  118.413383]  ? do_syscall_64+0xa7/0x580
> [  118.413389]  ? x64_sys_call+0x1060/0x2360
> [  118.413395]  ? do_syscall_64+0xa7/0x580
> [  118.413401]  ? sysvec_apic_timer_interrupt+0x54/0xd0
> [  118.413410]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
> [  118.413418] RIP: 0033:0x7ff29c93287d
>
>
>
>>>
>>>>               num_in_sync++;
>>>>       }
>>>
>>

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

* Re: [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17 10:51     ` Tapani Pälli
  2025-12-17 11:42       ` Tapani Pälli
@ 2025-12-17 11:51       ` Matthew Auld
  2025-12-17 12:22         ` Tapani Pälli
  1 sibling, 1 reply; 21+ messages in thread
From: Matthew Auld @ 2025-12-17 11:51 UTC (permalink / raw)
  To: Tapani Pälli, intel-xe; +Cc: matthew.brost

On 17/12/2025 10:51, Tapani Pälli wrote:
> 
> On 12/17/25 12:31, Matthew Auld wrote:
>> On 17/12/2025 10:27, Matthew Auld wrote:
>>> On 17/12/2025 06:17, Tapani Pälli wrote:
>>>> Helper function xe_sync_needs_wait expects sync->fence when accessing
>>>> flags, patch makes sure we call only when sync->fence exists.
>>>>
>>>> Fixes NULL pointer dereference seen with Vulkan workloads:
>>>>
>>>> [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
>>>>
>>>> Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when swicthing to 
>>>> dma- fence mode")
>>>> Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
>>>> ---
>>>>   drivers/gpu/drm/xe/xe_exec.c | 3 ++-
>>>>   1 file changed, 2 insertions(+), 1 deletion(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/ 
>>>> xe_exec.c
>>>> index 730a5c9c2637..ea368f02cb9f 100644
>>>> --- a/drivers/gpu/drm/xe/xe_exec.c
>>>> +++ b/drivers/gpu/drm/xe/xe_exec.c
>>>> @@ -184,7 +184,8 @@ int xe_exec_ioctl(struct drm_device *dev, void 
>>>> *data, struct drm_file *file)
>>>>           if (xe_sync_is_ufence(&syncs[num_syncs]))
>>>>               num_ufence++;
>>>> -        if (!num_in_sync && xe_sync_needs_wait(&syncs[num_syncs]))
>>>> +        if (!num_in_sync && syncs[num_syncs].fence &&
>>>> +            xe_sync_needs_wait(&syncs[num_syncs]))
>>>
>>> In xe_sync_entry_parse() it looks like it will always populate the 
>>> fence for the !signal case, otherwise throwing an error if that is 
>>> not possible. And xe_sync_needs_wait() will only touch the fence if 
>>> it's the signal case? So it seems like this should not be possible?
>>
>> Sorry meant to type:
>>
>> s/touch the fence if it's the signal/touch the fence if it's the !signal/
>>
> I'm not sure of the complete flow but it is quite easy to reproduce.

Oh, I think I see it now.

I assume the below also fixes it? There is also the case in 
xe_sync_entry_wait() which has the same bug, I think, so would also need 
to handle that.

@@ -178,6 +179,9 @@ int xe_sync_entry_parse(struct xe_device *xe, struct 
xe_file *xef,
  
sync_in.timeline_value);
                         if (err)
                                 return err;
+
+                       if (!sync->fence)
+                               sync->fence = dma_fence_get_stub();

So it looks like dma_fence_chain_find_seqno() can return NULL if the 
seqno has already signalled. Also means we are missing some IGT coverage 
for this.

Can you resend your patch but perhaps we move the check into 
needs_wait() and then add a similar check in xe_sync_entry_wait() also? 
Or perhaps might be cleaner to have xe_sync_entry_wait() first check 
needs_wait(), which will now also check for a NULL fence?

> 
> Here is the stacktrace snippet:
> 
> [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
> [  118.410940] Code: 90 90 90 0f 1f 44 00 00 55 48 89 f1 48 89 e5 48 83 
> ec 08 48 83 7e 08 00 0f 84 79 be 1c 00 31 c0 f6 41 4c 01 75 11 48 8b 41 
> 08 <48> 8b 40 30 48 d1 e8 83 e0 01 83 f0 01 c9 31 d2 31 c9 31 f6 31 ff
> [  118.410949] RSP: 0018:ffffccec8ea7bb18 EFLAGS: 00010246
> [  118.410957] RAX: 0000000000000000 RBX: 00007ff23812f460 RCX: 
> ffff8c1790db4800
> [  118.410964] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 
> 0000000000000000
> [  118.410968] RBP: ffffccec8ea7bb20 R08: 0000000000000000 R09: 
> 0000000000000000
> [  118.410973] R10: 0000000000000000 R11: 0000000000000000 R12: 
> ffff8c1790db4800
> [  118.410978] R13: 0000000000000000 R14: ffff8c178b67e000 R15: 
> 0000000000000000
> [  118.410984] FS:  0000000101aff6c0(0000) GS:ffff8c27350d1000(0000) 
> knlGS:000000007fe20000
> [  118.410992] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
> [  118.410998] CR2: 0000000000000030 CR3: 00000001037ef005 CR4: 
> 0000000000772ef0
> [  118.411004] PKRU: 55555554
> [  118.411008] Call Trace:
> [  118.411013]  <TASK>
> [  118.411022]  xe_exec_ioctl+0x375/0xea0 [xe]
> [  118.411377]  ? __x64_sys_ioctl+0xbd/0x100
> [  118.411392]  ? do_syscall_64+0xa7/0x580
> [  118.411403]  ? dma_fence_free+0x1a/0x30
> [  118.411419]  ? __pfx_xe_exec_fn+0x10/0x10 [xe]
> [  118.411752]  ? drm_syncobj_array_free+0x56/0x80 [drm]
> [  118.411915]  ? drm_syncobj_query_ioctl+0x20f/0x460 [drm]
> [  118.412035]  ? __pfx_xe_exec_ioctl+0x10/0x10 [xe]
> [  118.412372]  drm_ioctl_kernel+0xae/0x110 [drm]
> [  118.412524]  drm_ioctl+0x2ee/0x5d0 [drm]
> [  118.412649]  ? __pfx_xe_exec_ioctl+0x10/0x10 [xe]
> [  118.412989]  ? __pm_runtime_resume+0x5f/0x90
> [  118.413002]  xe_drm_ioctl+0x61/0xb0 [xe]
> [  118.413329]  __x64_sys_ioctl+0xa3/0x100
> [  118.413338]  x64_sys_call+0x1060/0x2360
> [  118.413347]  do_syscall_64+0x74/0x580
> [  118.413355]  ? x64_sys_call+0x1060/0x2360
> [  118.413360]  ? do_syscall_64+0xa7/0x580
> [  118.413368]  ? __do_sys_getpid+0x1d/0x30
> [  118.413377]  ? x64_sys_call+0xf9d/0x2360
> [  118.413383]  ? do_syscall_64+0xa7/0x580
> [  118.413389]  ? x64_sys_call+0x1060/0x2360
> [  118.413395]  ? do_syscall_64+0xa7/0x580
> [  118.413401]  ? sysvec_apic_timer_interrupt+0x54/0xd0
> [  118.413410]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
> [  118.413418] RIP: 0033:0x7ff29c93287d
> 
> 
> 
>>>
>>>>               num_in_sync++;
>>>>       }
>>>
>>


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

* Re: [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17 11:51       ` Matthew Auld
@ 2025-12-17 12:22         ` Tapani Pälli
  2025-12-17 12:32           ` [PATCH v2] " Tapani Pälli
  2025-12-17 21:16           ` [PATCH] " Matthew Brost
  0 siblings, 2 replies; 21+ messages in thread
From: Tapani Pälli @ 2025-12-17 12:22 UTC (permalink / raw)
  To: Matthew Auld, intel-xe; +Cc: matthew.brost


On 12/17/25 13:51, Matthew Auld wrote:
> On 17/12/2025 10:51, Tapani Pälli wrote:
>>
>> On 12/17/25 12:31, Matthew Auld wrote:
>>> On 17/12/2025 10:27, Matthew Auld wrote:
>>>> On 17/12/2025 06:17, Tapani Pälli wrote:
>>>>> Helper function xe_sync_needs_wait expects sync->fence when accessing
>>>>> flags, patch makes sure we call only when sync->fence exists.
>>>>>
>>>>> Fixes NULL pointer dereference seen with Vulkan workloads:
>>>>>
>>>>> [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
>>>>>
>>>>> Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when swicthing to 
>>>>> dma- fence mode")
>>>>> Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
>>>>> ---
>>>>>   drivers/gpu/drm/xe/xe_exec.c | 3 ++-
>>>>>   1 file changed, 2 insertions(+), 1 deletion(-)
>>>>>
>>>>> diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/ 
>>>>> xe_exec.c
>>>>> index 730a5c9c2637..ea368f02cb9f 100644
>>>>> --- a/drivers/gpu/drm/xe/xe_exec.c
>>>>> +++ b/drivers/gpu/drm/xe/xe_exec.c
>>>>> @@ -184,7 +184,8 @@ int xe_exec_ioctl(struct drm_device *dev, void 
>>>>> *data, struct drm_file *file)
>>>>>           if (xe_sync_is_ufence(&syncs[num_syncs]))
>>>>>               num_ufence++;
>>>>> -        if (!num_in_sync && xe_sync_needs_wait(&syncs[num_syncs]))
>>>>> +        if (!num_in_sync && syncs[num_syncs].fence &&
>>>>> +            xe_sync_needs_wait(&syncs[num_syncs]))
>>>>
>>>> In xe_sync_entry_parse() it looks like it will always populate the 
>>>> fence for the !signal case, otherwise throwing an error if that is 
>>>> not possible. And xe_sync_needs_wait() will only touch the fence if 
>>>> it's the signal case? So it seems like this should not be possible?
>>>
>>> Sorry meant to type:
>>>
>>> s/touch the fence if it's the signal/touch the fence if it's the 
>>> !signal/
>>>
>> I'm not sure of the complete flow but it is quite easy to reproduce.
>
> Oh, I think I see it now.
>
> I assume the below also fixes it? There is also the case in 
> xe_sync_entry_wait() which has the same bug, I think, so would also 
> need to handle that.
>
> @@ -178,6 +179,9 @@ int xe_sync_entry_parse(struct xe_device *xe, 
> struct xe_file *xef,
>
> sync_in.timeline_value);
>                         if (err)
>                                 return err;
> +
> +                       if (!sync->fence)
> +                               sync->fence = dma_fence_get_stub();
>
I will try this one.


> So it looks like dma_fence_chain_find_seqno() can return NULL if the 
> seqno has already signalled. Also means we are missing some IGT 
> coverage for this.
>
> Can you resend your patch but perhaps we move the check into 
> needs_wait() and then add a similar check in xe_sync_entry_wait() 
> also? Or perhaps might be cleaner to have xe_sync_entry_wait() first 
> check needs_wait(), which will now also check for a NULL fence?
>
Yes, that sounds fine to me, I'll add null check to needs_wait().


>>
>> Here is the stacktrace snippet:
>>
>> [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
>> [  118.410940] Code: 90 90 90 0f 1f 44 00 00 55 48 89 f1 48 89 e5 48 
>> 83 ec 08 48 83 7e 08 00 0f 84 79 be 1c 00 31 c0 f6 41 4c 01 75 11 48 
>> 8b 41 08 <48> 8b 40 30 48 d1 e8 83 e0 01 83 f0 01 c9 31 d2 31 c9 31 
>> f6 31 ff
>> [  118.410949] RSP: 0018:ffffccec8ea7bb18 EFLAGS: 00010246
>> [  118.410957] RAX: 0000000000000000 RBX: 00007ff23812f460 RCX: 
>> ffff8c1790db4800
>> [  118.410964] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 
>> 0000000000000000
>> [  118.410968] RBP: ffffccec8ea7bb20 R08: 0000000000000000 R09: 
>> 0000000000000000
>> [  118.410973] R10: 0000000000000000 R11: 0000000000000000 R12: 
>> ffff8c1790db4800
>> [  118.410978] R13: 0000000000000000 R14: ffff8c178b67e000 R15: 
>> 0000000000000000
>> [  118.410984] FS:  0000000101aff6c0(0000) GS:ffff8c27350d1000(0000) 
>> knlGS:000000007fe20000
>> [  118.410992] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
>> [  118.410998] CR2: 0000000000000030 CR3: 00000001037ef005 CR4: 
>> 0000000000772ef0
>> [  118.411004] PKRU: 55555554
>> [  118.411008] Call Trace:
>> [  118.411013]  <TASK>
>> [  118.411022]  xe_exec_ioctl+0x375/0xea0 [xe]
>> [  118.411377]  ? __x64_sys_ioctl+0xbd/0x100
>> [  118.411392]  ? do_syscall_64+0xa7/0x580
>> [  118.411403]  ? dma_fence_free+0x1a/0x30
>> [  118.411419]  ? __pfx_xe_exec_fn+0x10/0x10 [xe]
>> [  118.411752]  ? drm_syncobj_array_free+0x56/0x80 [drm]
>> [  118.411915]  ? drm_syncobj_query_ioctl+0x20f/0x460 [drm]
>> [  118.412035]  ? __pfx_xe_exec_ioctl+0x10/0x10 [xe]
>> [  118.412372]  drm_ioctl_kernel+0xae/0x110 [drm]
>> [  118.412524]  drm_ioctl+0x2ee/0x5d0 [drm]
>> [  118.412649]  ? __pfx_xe_exec_ioctl+0x10/0x10 [xe]
>> [  118.412989]  ? __pm_runtime_resume+0x5f/0x90
>> [  118.413002]  xe_drm_ioctl+0x61/0xb0 [xe]
>> [  118.413329]  __x64_sys_ioctl+0xa3/0x100
>> [  118.413338]  x64_sys_call+0x1060/0x2360
>> [  118.413347]  do_syscall_64+0x74/0x580
>> [  118.413355]  ? x64_sys_call+0x1060/0x2360
>> [  118.413360]  ? do_syscall_64+0xa7/0x580
>> [  118.413368]  ? __do_sys_getpid+0x1d/0x30
>> [  118.413377]  ? x64_sys_call+0xf9d/0x2360
>> [  118.413383]  ? do_syscall_64+0xa7/0x580
>> [  118.413389]  ? x64_sys_call+0x1060/0x2360
>> [  118.413395]  ? do_syscall_64+0xa7/0x580
>> [  118.413401]  ? sysvec_apic_timer_interrupt+0x54/0xd0
>> [  118.413410]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
>> [  118.413418] RIP: 0033:0x7ff29c93287d
>>
>>
>>
>>>>
>>>>>               num_in_sync++;
>>>>>       }
>>>>
>>>
>

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

* [PATCH v2] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17 12:22         ` Tapani Pälli
@ 2025-12-17 12:32           ` Tapani Pälli
  2025-12-17 12:57             ` Matthew Auld
  2025-12-17 21:16           ` [PATCH] " Matthew Brost
  1 sibling, 1 reply; 21+ messages in thread
From: Tapani Pälli @ 2025-12-17 12:32 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.brost, matthew.auld, Tapani Pälli

Helper function xe_sync_needs_wait expects sync->fence when accessing
flags, patch makes sure we call only when sync->fence exists.

v2: move null checking to xe_sync_needs_wait and make
    xe_sync_entry_wait utilize this helper (Matthew Auld)

Fixes NULL pointer dereference seen with Vulkan workloads:

[  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]

Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when swicthing to dma-fence mode")
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
---
 drivers/gpu/drm/xe/xe_sync.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_sync.c b/drivers/gpu/drm/xe/xe_sync.c
index ee1344a880b9..2b6c2e2527ae 100644
--- a/drivers/gpu/drm/xe/xe_sync.c
+++ b/drivers/gpu/drm/xe/xe_sync.c
@@ -241,7 +241,8 @@ int xe_sync_entry_wait(struct xe_sync_entry *sync)
 	if (sync->flags & DRM_XE_SYNC_FLAG_SIGNAL)
 		return 0;
 
-	return dma_fence_wait(sync->fence, true);
+	return xe_sync_needs_wait(sync) ?
+		dma_fence_wait(sync->fence, true) : 0;
 }
 
 /**
@@ -252,7 +253,7 @@ int xe_sync_entry_wait(struct xe_sync_entry *sync)
  */
 bool xe_sync_needs_wait(struct xe_sync_entry *sync)
 {
-	return !(sync->flags & DRM_XE_SYNC_FLAG_SIGNAL) &&
+	return !(sync->flags & DRM_XE_SYNC_FLAG_SIGNAL) && sync->fence &&
 		!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &sync->fence->flags);
 }
 
-- 
2.52.0


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

* Re: [PATCH v2] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17 12:32           ` [PATCH v2] " Tapani Pälli
@ 2025-12-17 12:57             ` Matthew Auld
  2025-12-17 13:21               ` Tapani Pälli
  0 siblings, 1 reply; 21+ messages in thread
From: Matthew Auld @ 2025-12-17 12:57 UTC (permalink / raw)
  To: Tapani Pälli, intel-xe; +Cc: matthew.brost

On 17/12/2025 12:32, Tapani Pälli wrote:
> Helper function xe_sync_needs_wait expects sync->fence when accessing
> flags, patch makes sure we call only when sync->fence exists.
> 
> v2: move null checking to xe_sync_needs_wait and make
>      xe_sync_entry_wait utilize this helper (Matthew Auld)
> 
> Fixes NULL pointer dereference seen with Vulkan workloads:
> 
> [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
> 
> Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when swicthing to dma-fence mode")
> Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
> ---
>   drivers/gpu/drm/xe/xe_sync.c | 5 +++--
>   1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_sync.c b/drivers/gpu/drm/xe/xe_sync.c
> index ee1344a880b9..2b6c2e2527ae 100644
> --- a/drivers/gpu/drm/xe/xe_sync.c
> +++ b/drivers/gpu/drm/xe/xe_sync.c
> @@ -241,7 +241,8 @@ int xe_sync_entry_wait(struct xe_sync_entry *sync)
>   	if (sync->flags & DRM_XE_SYNC_FLAG_SIGNAL)
>   		return 0;

^^ I think we can drop this bit, since below will now check it?

>   
> -	return dma_fence_wait(sync->fence, true);
> +	return xe_sync_needs_wait(sync) ?
> +		dma_fence_wait(sync->fence, true) : 0;
>   }
>   
>   /**
> @@ -252,7 +253,7 @@ int xe_sync_entry_wait(struct xe_sync_entry *sync)
>    */
>   bool xe_sync_needs_wait(struct xe_sync_entry *sync)
>   {
> -	return !(sync->flags & DRM_XE_SYNC_FLAG_SIGNAL) &&
> +	return !(sync->flags & DRM_XE_SYNC_FLAG_SIGNAL) && sync->fence &&
>   		!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &sync->fence->flags);

Here I think we can maybe simplify:

sync->fence && !test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &sync->fence->flags)

Since sync->fence != NULL must imply an in-fence which will always be 
!signal for the flags anyway?

>   }
>   


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

* ✓ CI.KUnit: success for drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev2)
  2025-12-17  6:17 [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl Tapani Pälli
                   ` (2 preceding siblings ...)
  2025-12-17 10:27 ` [PATCH] " Matthew Auld
@ 2025-12-17 13:10 ` Patchwork
  2025-12-17 13:48 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-12-17 13:10 UTC (permalink / raw)
  To: Tapani Pälli; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev2)
URL   : https://patchwork.freedesktop.org/series/159132/
State : success

== Summary ==

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

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

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

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



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

* Re: [PATCH v2] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17 12:57             ` Matthew Auld
@ 2025-12-17 13:21               ` Tapani Pälli
  2025-12-17 13:24                 ` [PATCH v3] " Tapani Pälli
  0 siblings, 1 reply; 21+ messages in thread
From: Tapani Pälli @ 2025-12-17 13:21 UTC (permalink / raw)
  To: Matthew Auld, intel-xe; +Cc: matthew.brost


On 12/17/25 14:57, Matthew Auld wrote:
> On 17/12/2025 12:32, Tapani Pälli wrote:
>> Helper function xe_sync_needs_wait expects sync->fence when accessing
>> flags, patch makes sure we call only when sync->fence exists.
>>
>> v2: move null checking to xe_sync_needs_wait and make
>>      xe_sync_entry_wait utilize this helper (Matthew Auld)
>>
>> Fixes NULL pointer dereference seen with Vulkan workloads:
>>
>> [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
>>
>> Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when swicthing to 
>> dma-fence mode")
>> Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
>> ---
>>   drivers/gpu/drm/xe/xe_sync.c | 5 +++--
>>   1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_sync.c b/drivers/gpu/drm/xe/xe_sync.c
>> index ee1344a880b9..2b6c2e2527ae 100644
>> --- a/drivers/gpu/drm/xe/xe_sync.c
>> +++ b/drivers/gpu/drm/xe/xe_sync.c
>> @@ -241,7 +241,8 @@ int xe_sync_entry_wait(struct xe_sync_entry *sync)
>>       if (sync->flags & DRM_XE_SYNC_FLAG_SIGNAL)
>>           return 0;
>
> ^^ I think we can drop this bit, since below will now check it?
>
True, will drop


>>   -    return dma_fence_wait(sync->fence, true);
>> +    return xe_sync_needs_wait(sync) ?
>> +        dma_fence_wait(sync->fence, true) : 0;
>>   }
>>     /**
>> @@ -252,7 +253,7 @@ int xe_sync_entry_wait(struct xe_sync_entry *sync)
>>    */
>>   bool xe_sync_needs_wait(struct xe_sync_entry *sync)
>>   {
>> -    return !(sync->flags & DRM_XE_SYNC_FLAG_SIGNAL) &&
>> +    return !(sync->flags & DRM_XE_SYNC_FLAG_SIGNAL) && sync->fence &&
>>           !test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &sync->fence->flags);
>
> Here I think we can maybe simplify:
>
> sync->fence && !test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, 
> &sync->fence->flags)
>
> Since sync->fence != NULL must imply an in-fence which will always be 
> !signal for the flags anyway?
>
Makes sense, sending v3



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

* [PATCH v3] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17 13:21               ` Tapani Pälli
@ 2025-12-17 13:24                 ` Tapani Pälli
  2025-12-17 14:56                   ` Matthew Auld
  0 siblings, 1 reply; 21+ messages in thread
From: Tapani Pälli @ 2025-12-17 13:24 UTC (permalink / raw)
  To: intel-xe; +Cc: matthew.brost, matthew.auld, Tapani Pälli

Helper function xe_sync_needs_wait expects sync->fence when accessing
flags, patch makes sure we call only when sync->fence exists.

v2: move null checking to xe_sync_needs_wait and make
    xe_sync_entry_wait utilize this helper (Matthew Auld)
v3: further simplify code (Matthew Auld)

Fixes NULL pointer dereference seen with Vulkan workloads:

[  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]

Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when swicthing to dma-fence mode")
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
---
 drivers/gpu/drm/xe/xe_sync.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_sync.c b/drivers/gpu/drm/xe/xe_sync.c
index ee1344a880b9..c8fdcdbd6ae7 100644
--- a/drivers/gpu/drm/xe/xe_sync.c
+++ b/drivers/gpu/drm/xe/xe_sync.c
@@ -238,10 +238,8 @@ int xe_sync_entry_add_deps(struct xe_sync_entry *sync, struct xe_sched_job *job)
  */
 int xe_sync_entry_wait(struct xe_sync_entry *sync)
 {
-	if (sync->flags & DRM_XE_SYNC_FLAG_SIGNAL)
-		return 0;
-
-	return dma_fence_wait(sync->fence, true);
+	return xe_sync_needs_wait(sync) ?
+		dma_fence_wait(sync->fence, true) : 0;
 }
 
 /**
@@ -252,8 +250,8 @@ int xe_sync_entry_wait(struct xe_sync_entry *sync)
  */
 bool xe_sync_needs_wait(struct xe_sync_entry *sync)
 {
-	return !(sync->flags & DRM_XE_SYNC_FLAG_SIGNAL) &&
-		!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &sync->fence->flags);
+	return sync->fence &&
+	       !test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &sync->fence->flags);
 }
 
 void xe_sync_entry_signal(struct xe_sync_entry *sync, struct dma_fence *fence)
-- 
2.52.0


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

* ✓ Xe.CI.BAT: success for drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev2)
  2025-12-17  6:17 [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl Tapani Pälli
                   ` (3 preceding siblings ...)
  2025-12-17 13:10 ` ✓ CI.KUnit: success for drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev2) Patchwork
@ 2025-12-17 13:48 ` Patchwork
  2025-12-17 15:43 ` ✓ CI.KUnit: success for drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev3) Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-12-17 13:48 UTC (permalink / raw)
  To: Tapani Pälli; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev2)
URL   : https://patchwork.freedesktop.org/series/159132/
State : success

== Summary ==

CI Bug Log - changes from xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0_BAT -> xe-pw-159132v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

  Here are the changes found in xe-pw-159132v2_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

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

  
#### Possible fixes ####

  * igt@xe_waitfence@engine:
    - bat-dg2-oem2:       [FAIL][3] ([Intel XE#6519]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0/bat-dg2-oem2/igt@xe_waitfence@engine.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v2/bat-dg2-oem2/igt@xe_waitfence@engine.html

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


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

  * IGT: IGT_8668 -> IGT_8669
  * Linux: xe-4255-2eb2f8746a879f1c0e4c56b715c179424dafd8e0 -> xe-pw-159132v2

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

== Logs ==

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

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

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

* Re: [PATCH v3] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17 13:24                 ` [PATCH v3] " Tapani Pälli
@ 2025-12-17 14:56                   ` Matthew Auld
  2025-12-17 21:04                     ` Matthew Brost
  0 siblings, 1 reply; 21+ messages in thread
From: Matthew Auld @ 2025-12-17 14:56 UTC (permalink / raw)
  To: Tapani Pälli, intel-xe; +Cc: matthew.brost

On 17/12/2025 13:24, Tapani Pälli wrote:
> Helper function xe_sync_needs_wait expects sync->fence when accessing
> flags, patch makes sure we call only when sync->fence exists.
> 
> v2: move null checking to xe_sync_needs_wait and make
>      xe_sync_entry_wait utilize this helper (Matthew Auld)
> v3: further simplify code (Matthew Auld)
> 
> Fixes NULL pointer dereference seen with Vulkan workloads:
> 
> [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
> 
> Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when swicthing to dma-fence mode")
> Signed-off-by: Tapani Pälli <tapani.palli@intel.com>

To me this looks reasonable, but let's wait for Matt B and get his 
opinion here also, since he was the original author.

Also thanks a lot for reporting, and fixing the issue,
Reviewed-by: Matthew Auld <matthew.auld@intel.com>

> ---
>   drivers/gpu/drm/xe/xe_sync.c | 10 ++++------
>   1 file changed, 4 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_sync.c b/drivers/gpu/drm/xe/xe_sync.c
> index ee1344a880b9..c8fdcdbd6ae7 100644
> --- a/drivers/gpu/drm/xe/xe_sync.c
> +++ b/drivers/gpu/drm/xe/xe_sync.c
> @@ -238,10 +238,8 @@ int xe_sync_entry_add_deps(struct xe_sync_entry *sync, struct xe_sched_job *job)
>    */
>   int xe_sync_entry_wait(struct xe_sync_entry *sync)
>   {
> -	if (sync->flags & DRM_XE_SYNC_FLAG_SIGNAL)
> -		return 0;
> -
> -	return dma_fence_wait(sync->fence, true);
> +	return xe_sync_needs_wait(sync) ?
> +		dma_fence_wait(sync->fence, true) : 0;
>   }
>   
>   /**
> @@ -252,8 +250,8 @@ int xe_sync_entry_wait(struct xe_sync_entry *sync)
>    */
>   bool xe_sync_needs_wait(struct xe_sync_entry *sync)
>   {
> -	return !(sync->flags & DRM_XE_SYNC_FLAG_SIGNAL) &&
> -		!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &sync->fence->flags);
> +	return sync->fence &&
> +	       !test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &sync->fence->flags);
>   }
>   
>   void xe_sync_entry_signal(struct xe_sync_entry *sync, struct dma_fence *fence)


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

* ✓ CI.KUnit: success for drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev3)
  2025-12-17  6:17 [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl Tapani Pälli
                   ` (4 preceding siblings ...)
  2025-12-17 13:48 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-12-17 15:43 ` Patchwork
  2025-12-17 16:23 ` ✓ Xe.CI.BAT: " Patchwork
  2025-12-18 14:16 ` ✗ Xe.CI.Full: failure " Patchwork
  7 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-12-17 15:43 UTC (permalink / raw)
  To: Tapani Pälli; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev3)
URL   : https://patchwork.freedesktop.org/series/159132/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev3)
  2025-12-17  6:17 [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl Tapani Pälli
                   ` (5 preceding siblings ...)
  2025-12-17 15:43 ` ✓ CI.KUnit: success for drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev3) Patchwork
@ 2025-12-17 16:23 ` Patchwork
  2025-12-18 14:16 ` ✗ Xe.CI.Full: failure " Patchwork
  7 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-12-17 16:23 UTC (permalink / raw)
  To: Tapani Pälli; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev3)
URL   : https://patchwork.freedesktop.org/series/159132/
State : success

== Summary ==

CI Bug Log - changes from xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395_BAT -> xe-pw-159132v3_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

  Here are the changes found in xe-pw-159132v3_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [PASS][1] -> [FAIL][2] ([Intel XE#6520])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/bat-dg2-oem2/igt@xe_waitfence@reltime.html

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


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

  * Linux: xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395 -> xe-pw-159132v3

  IGT_8669: 319db2ffba419f9711acc72895f065a818905efa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395: 810ba5ee6a71b54b99289f397e8ca9147047c395
  xe-pw-159132v3: 159132v3

== Logs ==

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

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

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

* Re: [PATCH v3] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17 14:56                   ` Matthew Auld
@ 2025-12-17 21:04                     ` Matthew Brost
  0 siblings, 0 replies; 21+ messages in thread
From: Matthew Brost @ 2025-12-17 21:04 UTC (permalink / raw)
  To: Matthew Auld; +Cc: Tapani Pälli, intel-xe

On Wed, Dec 17, 2025 at 02:56:44PM +0000, Matthew Auld wrote:
> On 17/12/2025 13:24, Tapani Pälli wrote:
> > Helper function xe_sync_needs_wait expects sync->fence when accessing
> > flags, patch makes sure we call only when sync->fence exists.
> > 
> > v2: move null checking to xe_sync_needs_wait and make
> >      xe_sync_entry_wait utilize this helper (Matthew Auld)
> > v3: further simplify code (Matthew Auld)
> > 
> > Fixes NULL pointer dereference seen with Vulkan workloads:
> > 
> > [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
> > 
> > Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when swicthing to dma-fence mode")
> > Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
> 
> To me this looks reasonable, but let's wait for Matt B and get his opinion
> here also, since he was the original author.
> 

It took me a minute to figure this one out,
DRM_XE_SYNC_TYPE_TIMELINE_SYNCOBJ can set the sync->fence to NULL if the
timeline point is signaled.

So yes, this looks correct.

Thanks for the fix!

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

Going to push this one now.

> Also thanks a lot for reporting, and fixing the issue,
> Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> 
> > ---
> >   drivers/gpu/drm/xe/xe_sync.c | 10 ++++------
> >   1 file changed, 4 insertions(+), 6 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/xe/xe_sync.c b/drivers/gpu/drm/xe/xe_sync.c
> > index ee1344a880b9..c8fdcdbd6ae7 100644
> > --- a/drivers/gpu/drm/xe/xe_sync.c
> > +++ b/drivers/gpu/drm/xe/xe_sync.c
> > @@ -238,10 +238,8 @@ int xe_sync_entry_add_deps(struct xe_sync_entry *sync, struct xe_sched_job *job)
> >    */
> >   int xe_sync_entry_wait(struct xe_sync_entry *sync)
> >   {
> > -	if (sync->flags & DRM_XE_SYNC_FLAG_SIGNAL)
> > -		return 0;
> > -
> > -	return dma_fence_wait(sync->fence, true);
> > +	return xe_sync_needs_wait(sync) ?
> > +		dma_fence_wait(sync->fence, true) : 0;
> >   }
> >   /**
> > @@ -252,8 +250,8 @@ int xe_sync_entry_wait(struct xe_sync_entry *sync)
> >    */
> >   bool xe_sync_needs_wait(struct xe_sync_entry *sync)
> >   {
> > -	return !(sync->flags & DRM_XE_SYNC_FLAG_SIGNAL) &&
> > -		!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &sync->fence->flags);
> > +	return sync->fence &&
> > +	       !test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &sync->fence->flags);
> >   }
> >   void xe_sync_entry_signal(struct xe_sync_entry *sync, struct dma_fence *fence)
> 

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

* Re: [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl
  2025-12-17 12:22         ` Tapani Pälli
  2025-12-17 12:32           ` [PATCH v2] " Tapani Pälli
@ 2025-12-17 21:16           ` Matthew Brost
  1 sibling, 0 replies; 21+ messages in thread
From: Matthew Brost @ 2025-12-17 21:16 UTC (permalink / raw)
  To: Tapani Pälli; +Cc: Matthew Auld, intel-xe

On Wed, Dec 17, 2025 at 02:22:13PM +0200, Tapani Pälli wrote:
> 
> On 12/17/25 13:51, Matthew Auld wrote:
> > On 17/12/2025 10:51, Tapani Pälli wrote:
> > > 
> > > On 12/17/25 12:31, Matthew Auld wrote:
> > > > On 17/12/2025 10:27, Matthew Auld wrote:
> > > > > On 17/12/2025 06:17, Tapani Pälli wrote:
> > > > > > Helper function xe_sync_needs_wait expects sync->fence when accessing
> > > > > > flags, patch makes sure we call only when sync->fence exists.
> > > > > > 
> > > > > > Fixes NULL pointer dereference seen with Vulkan workloads:
> > > > > > 
> > > > > > [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
> > > > > > 
> > > > > > Fixes: 4ac9048d0501 ("drm/xe: Wait on in-syncs when
> > > > > > swicthing to dma- fence mode")
> > > > > > Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
> > > > > > ---
> > > > > >   drivers/gpu/drm/xe/xe_exec.c | 3 ++-
> > > > > >   1 file changed, 2 insertions(+), 1 deletion(-)
> > > > > > 
> > > > > > diff --git a/drivers/gpu/drm/xe/xe_exec.c
> > > > > > b/drivers/gpu/drm/xe/ xe_exec.c
> > > > > > index 730a5c9c2637..ea368f02cb9f 100644
> > > > > > --- a/drivers/gpu/drm/xe/xe_exec.c
> > > > > > +++ b/drivers/gpu/drm/xe/xe_exec.c
> > > > > > @@ -184,7 +184,8 @@ int xe_exec_ioctl(struct drm_device
> > > > > > *dev, void *data, struct drm_file *file)
> > > > > >           if (xe_sync_is_ufence(&syncs[num_syncs]))
> > > > > >               num_ufence++;
> > > > > > -        if (!num_in_sync && xe_sync_needs_wait(&syncs[num_syncs]))
> > > > > > +        if (!num_in_sync && syncs[num_syncs].fence &&
> > > > > > +            xe_sync_needs_wait(&syncs[num_syncs]))
> > > > > 
> > > > > In xe_sync_entry_parse() it looks like it will always
> > > > > populate the fence for the !signal case, otherwise throwing
> > > > > an error if that is not possible. And xe_sync_needs_wait()
> > > > > will only touch the fence if it's the signal case? So it
> > > > > seems like this should not be possible?
> > > > 
> > > > Sorry meant to type:
> > > > 
> > > > s/touch the fence if it's the signal/touch the fence if it's the
> > > > !signal/
> > > > 
> > > I'm not sure of the complete flow but it is quite easy to reproduce.
> > 
> > Oh, I think I see it now.
> > 
> > I assume the below also fixes it? There is also the case in
> > xe_sync_entry_wait() which has the same bug, I think, so would also need
> > to handle that.
> > 
> > @@ -178,6 +179,9 @@ int xe_sync_entry_parse(struct xe_device *xe, struct
> > xe_file *xef,
> > 
> > sync_in.timeline_value);
> >                         if (err)
> >                                 return err;
> > +
> > +                       if (!sync->fence)
> > +                               sync->fence = dma_fence_get_stub();
> > 
> I will try this one.
> 
> 
> > So it looks like dma_fence_chain_find_seqno() can return NULL if the

Yes, I reasoned this after a bit of digging too.

> > seqno has already signalled. Also means we are missing some IGT coverage
> > for this.

Indeed. I don't think any IGTs use syncobj timelines which is a pretty
big gap as this is basically all VK uses. IIRC this isn't first time
we'd made a change which broke syncobj timelines only for VK to
catch. I can open a Jira for a syncobj timelines IGT to be written.

Matt

> > 
> > Can you resend your patch but perhaps we move the check into
> > needs_wait() and then add a similar check in xe_sync_entry_wait() also?
> > Or perhaps might be cleaner to have xe_sync_entry_wait() first check
> > needs_wait(), which will now also check for a NULL fence?
> > 
> Yes, that sounds fine to me, I'll add null check to needs_wait().
> 
> 
> > > 
> > > Here is the stacktrace snippet:
> > > 
> > > [  118.410401] RIP: 0010:xe_sync_needs_wait+0x27/0x50 [xe]
> > > [  118.410940] Code: 90 90 90 0f 1f 44 00 00 55 48 89 f1 48 89 e5 48
> > > 83 ec 08 48 83 7e 08 00 0f 84 79 be 1c 00 31 c0 f6 41 4c 01 75 11 48
> > > 8b 41 08 <48> 8b 40 30 48 d1 e8 83 e0 01 83 f0 01 c9 31 d2 31 c9 31
> > > f6 31 ff
> > > [  118.410949] RSP: 0018:ffffccec8ea7bb18 EFLAGS: 00010246
> > > [  118.410957] RAX: 0000000000000000 RBX: 00007ff23812f460 RCX:
> > > ffff8c1790db4800
> > > [  118.410964] RDX: 0000000000000000 RSI: 0000000000000000 RDI:
> > > 0000000000000000
> > > [  118.410968] RBP: ffffccec8ea7bb20 R08: 0000000000000000 R09:
> > > 0000000000000000
> > > [  118.410973] R10: 0000000000000000 R11: 0000000000000000 R12:
> > > ffff8c1790db4800
> > > [  118.410978] R13: 0000000000000000 R14: ffff8c178b67e000 R15:
> > > 0000000000000000
> > > [  118.410984] FS:  0000000101aff6c0(0000) GS:ffff8c27350d1000(0000)
> > > knlGS:000000007fe20000
> > > [  118.410992] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
> > > [  118.410998] CR2: 0000000000000030 CR3: 00000001037ef005 CR4:
> > > 0000000000772ef0
> > > [  118.411004] PKRU: 55555554
> > > [  118.411008] Call Trace:
> > > [  118.411013]  <TASK>
> > > [  118.411022]  xe_exec_ioctl+0x375/0xea0 [xe]
> > > [  118.411377]  ? __x64_sys_ioctl+0xbd/0x100
> > > [  118.411392]  ? do_syscall_64+0xa7/0x580
> > > [  118.411403]  ? dma_fence_free+0x1a/0x30
> > > [  118.411419]  ? __pfx_xe_exec_fn+0x10/0x10 [xe]
> > > [  118.411752]  ? drm_syncobj_array_free+0x56/0x80 [drm]
> > > [  118.411915]  ? drm_syncobj_query_ioctl+0x20f/0x460 [drm]
> > > [  118.412035]  ? __pfx_xe_exec_ioctl+0x10/0x10 [xe]
> > > [  118.412372]  drm_ioctl_kernel+0xae/0x110 [drm]
> > > [  118.412524]  drm_ioctl+0x2ee/0x5d0 [drm]
> > > [  118.412649]  ? __pfx_xe_exec_ioctl+0x10/0x10 [xe]
> > > [  118.412989]  ? __pm_runtime_resume+0x5f/0x90
> > > [  118.413002]  xe_drm_ioctl+0x61/0xb0 [xe]
> > > [  118.413329]  __x64_sys_ioctl+0xa3/0x100
> > > [  118.413338]  x64_sys_call+0x1060/0x2360
> > > [  118.413347]  do_syscall_64+0x74/0x580
> > > [  118.413355]  ? x64_sys_call+0x1060/0x2360
> > > [  118.413360]  ? do_syscall_64+0xa7/0x580
> > > [  118.413368]  ? __do_sys_getpid+0x1d/0x30
> > > [  118.413377]  ? x64_sys_call+0xf9d/0x2360
> > > [  118.413383]  ? do_syscall_64+0xa7/0x580
> > > [  118.413389]  ? x64_sys_call+0x1060/0x2360
> > > [  118.413395]  ? do_syscall_64+0xa7/0x580
> > > [  118.413401]  ? sysvec_apic_timer_interrupt+0x54/0xd0
> > > [  118.413410]  entry_SYSCALL_64_after_hwframe+0x76/0x7e
> > > [  118.413418] RIP: 0033:0x7ff29c93287d
> > > 
> > > 
> > > 
> > > > > 
> > > > > >               num_in_sync++;
> > > > > >       }
> > > > > 
> > > > 
> > 

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

* ✗ Xe.CI.Full: failure for drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev3)
  2025-12-17  6:17 [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl Tapani Pälli
                   ` (6 preceding siblings ...)
  2025-12-17 16:23 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-12-18 14:16 ` Patchwork
  7 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-12-18 14:16 UTC (permalink / raw)
  To: Tapani Pälli; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev3)
URL   : https://patchwork.freedesktop.org/series/159132/
State : failure

== Summary ==

CI Bug Log - changes from xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395_FULL -> xe-pw-159132v3_FULL
====================================================

Summary
-------

  **WARNING**

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

  

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

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-159132v3_FULL:

### IGT changes ###

#### Warnings ####

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          [SKIP][1] ([Intel XE#6703]) -> [SKIP][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

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

  Here are the changes found in xe-pw-159132v3_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][3] ([Intel XE#6779])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@core_hotunplug@unbind-rebind.html

  * igt@fbdev@unaligned-read:
    - shard-bmg:          [PASS][4] -> [SKIP][5] ([Intel XE#2134])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-1/igt@fbdev@unaligned-read.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@fbdev@unaligned-read.html

  * igt@intel_hwmon@hwmon-read:
    - shard-bmg:          [PASS][6] -> [SKIP][7] ([Intel XE#5177] / [Intel XE#6703])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@intel_hwmon@hwmon-read.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@intel_hwmon@hwmon-read.html

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

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#1124]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2314] / [Intel XE#2894])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2887]) +3 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#2887]) +2 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html

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

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2325]) +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2252]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@vga-hpd-without-ddc:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#373]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html

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

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][18] ([Intel XE#1424])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-max-size.html
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2320])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-max-size.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][20] -> [SKIP][21] ([Intel XE#2291])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-10/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [PASS][22] -> [FAIL][23] ([Intel XE#5299])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#2244])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2244])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_feature_discovery@display-1x:
    - shard-bmg:          [PASS][26] -> [SKIP][27] ([Intel XE#6557] / [Intel XE#6703]) +8 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-8/igt@kms_feature_discovery@display-1x.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_feature_discovery@display-1x.html

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

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-bmg:          [PASS][29] -> [SKIP][30] ([Intel XE#2316]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-8/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#1421])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [PASS][32] -> [FAIL][33] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

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

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

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

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#2312]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
    - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#651]) +4 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#2311]) +6 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][40] ([Intel XE#656]) +2 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#2313]) +4 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [ABORT][42] ([Intel XE#6740])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2.html

  * igt@kms_hdr@bpc-switch@pipe-a-dp-2:
    - shard-bmg:          [PASS][43] -> [ABORT][44] ([Intel XE#6740]) +1 other test abort
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-10/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-1/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][45] ([Intel XE#599])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@kms_plane_lowres@tiling-y.html
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2393])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#6886]) +3 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-lnl:          [PASS][48] -> [FAIL][49] ([Intel XE#2029])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-1/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@i2c:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#6693])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_pm_rpm@i2c.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-bmg:          [PASS][51] -> [SKIP][52] ([Intel XE#6693]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#1489])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr@fbc-psr-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#6703]) +2 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_psr@fbc-psr-dpms.html

  * igt@kms_psr@psr-cursor-plane-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_psr@psr-cursor-plane-onoff.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [PASS][56] -> [SKIP][57] ([Intel XE#1435])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-8/igt@kms_setmode@clone-exclusive-crtc.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_sharpness_filter@filter-modifiers:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#6503])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@kms_sharpness_filter@filter-modifiers.html

  * igt@xe_compute_preempt@compute-preempt-many-vram-evict:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#5191])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html

  * igt@xe_create@multigpu-create-massive-size:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2504])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_eudebug@basic-vm-access-parameters-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#4837])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#4837])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@xe_eudebug@basic-vm-access-parameters-userptr.html

  * igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#4837] / [Intel XE#6665])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html

  * igt@xe_evict@evict-beng-cm-threads-large:
    - shard-bmg:          [PASS][65] -> [DMESG-WARN][66] ([Intel XE#6321])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-10/igt@xe_evict@evict-beng-cm-threads-large.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-2/igt@xe_evict@evict-beng-cm-threads-large.html

  * igt@xe_evict@evict-threads-large-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][67] ([Intel XE#688])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@xe_evict@evict-threads-large-multi-vm.html

  * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#1392])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html

  * igt@xe_exec_basic@multigpu-once-null-defer-mmap:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#2322]) +2 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html

  * igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race:
    - shard-bmg:          [PASS][70] -> [SKIP][71] ([Intel XE#6703]) +647 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_multi_queue@one-queue-basic:
    - shard-lnl:          NOTRUN -> [SKIP][72] ([Intel XE#6874]) +3 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@xe_exec_multi_queue@one-queue-basic.html
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#6874]) +5 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@xe_exec_multi_queue@one-queue-basic.html

  * igt@xe_exec_system_allocator@many-large-mmap-shared-remap-dontunmap-eocheck:
    - shard-bmg:          [PASS][74] -> [DMESG-WARN][75] ([Intel XE#3428]) +1 other test dmesg-warn
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-10/igt@xe_exec_system_allocator@many-large-mmap-shared-remap-dontunmap-eocheck.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-2/igt@xe_exec_system_allocator@many-large-mmap-shared-remap-dontunmap-eocheck.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-free-madvise:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#6703]) +106 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-execqueues-free-madvise.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap:
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#6557] / [Intel XE#6703])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap.html

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

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#4943]) +7 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html

  * igt@xe_pm@d3cold-mocs:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#2284])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pmu@engine-activity-accuracy-50:
    - shard-lnl:          [PASS][81] -> [FAIL][82] ([Intel XE#6251]) +6 other tests fail
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-lnl-1/igt@xe_pmu@engine-activity-accuracy-50.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-50.html

  * igt@xe_query@multigpu-query-engines:
    - shard-lnl:          NOTRUN -> [SKIP][83] ([Intel XE#944]) +1 other test skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-3/igt@xe_query@multigpu-query-engines.html
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#944])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@xe_query@multigpu-query-engines.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unplug-rescan:
    - shard-bmg:          [SKIP][85] ([Intel XE#6779]) -> [PASS][86] +1 other test pass
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@core_hotunplug@unplug-rescan.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@core_hotunplug@unplug-rescan.html

  * igt@fbdev@info:
    - shard-bmg:          [SKIP][87] ([Intel XE#2134]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@fbdev@info.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-1/igt@fbdev@info.html

  * igt@kms_addfb_basic@unused-handle:
    - shard-bmg:          [SKIP][89] ([Intel XE#6703]) -> [PASS][90] +549 other tests pass
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_addfb_basic@unused-handle.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_addfb_basic@unused-handle.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-bmg:          [FAIL][91] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2:
    - shard-bmg:          [FAIL][93] ([Intel XE#6078]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-bmg:          [SKIP][95] ([Intel XE#2291]) -> [PASS][96] +1 other test pass
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-10/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [DMESG-WARN][97] ([Intel XE#3428] / [Intel XE#5254]) -> [PASS][98] +1 other test pass
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [SKIP][99] ([Intel XE#2373]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_feature_discovery@display-2x.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-9/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [SKIP][101] ([Intel XE#2316]) -> [PASS][102] +3 other tests pass
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-10/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@flip-vs-modeset-vs-hang@d-dp2:
    - shard-bmg:          [FAIL][103] -> [PASS][104] +2 other tests pass
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-2/igt@kms_flip@flip-vs-modeset-vs-hang@d-dp2.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@kms_flip@flip-vs-modeset-vs-hang@d-dp2.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [SKIP][105] ([Intel XE#4596]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-4.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_pm_rpm@legacy-planes:
    - shard-bmg:          [SKIP][107] ([Intel XE#6693]) -> [PASS][108]
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_pm_rpm@legacy-planes.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_pm_rpm@legacy-planes.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [SKIP][109] ([Intel XE#1435]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-9/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12:
    - shard-lnl:          [DMESG-WARN][111] ([Intel XE#4537]) -> [PASS][112] +1 other test pass
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-lnl-7/igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-7/igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12.html

  * igt@testdisplay:
    - shard-bmg:          [ABORT][113] ([Intel XE#6740]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-8/igt@testdisplay.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@testdisplay.html

  * igt@xe_exec_system_allocator@many-stride-malloc-prefetch:
    - shard-bmg:          [WARN][115] ([Intel XE#5786]) -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html

  * igt@xe_exec_system_allocator@threads-many-execqueues-new-nomemset:
    - shard-bmg:          [SKIP][117] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][118] +3 other tests pass
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-execqueues-new-nomemset.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-execqueues-new-nomemset.html

  * igt@xe_live_ktest@xe_bo:
    - shard-bmg:          [SKIP][119] ([Intel XE#2229]) -> [PASS][120] +1 other test pass
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@xe_live_ktest@xe_bo.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@xe_live_ktest@xe_bo.html

  * igt@xe_pm@s4-vm-bind-userptr:
    - shard-lnl:          [DMESG-WARN][121] -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-lnl-4/igt@xe_pm@s4-vm-bind-userptr.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-bmg:          [SKIP][123] ([Intel XE#6703]) -> [SKIP][124] ([Intel XE#2233])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-bmg:          [SKIP][125] ([Intel XE#6703]) -> [SKIP][126] ([Intel XE#2370])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-270:
    - shard-bmg:          [SKIP][127] ([Intel XE#6703]) -> [SKIP][128] ([Intel XE#2327]) +3 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-bmg:          [SKIP][129] ([Intel XE#2327]) -> [SKIP][130] ([Intel XE#6703]) +2 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          [SKIP][131] ([Intel XE#6703]) -> [SKIP][132] ([Intel XE#2328])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-bmg:          [SKIP][133] ([Intel XE#6703]) -> [SKIP][134] ([Intel XE#610])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-bmg:          [SKIP][135] ([Intel XE#1124]) -> [SKIP][136] ([Intel XE#6703]) +10 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-bmg:          [SKIP][137] ([Intel XE#607]) -> [SKIP][138] ([Intel XE#6703])
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][139] ([Intel XE#6703]) -> [SKIP][140] ([Intel XE#1124]) +10 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          [SKIP][141] ([Intel XE#6703]) -> [SKIP][142] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-bmg:          [SKIP][143] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][144] ([Intel XE#6703])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [SKIP][145] ([Intel XE#367]) -> [SKIP][146] ([Intel XE#6703]) +2 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-3840x2160p:
    - shard-bmg:          [SKIP][147] ([Intel XE#6703]) -> [SKIP][148] ([Intel XE#367]) +2 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
    - shard-bmg:          [SKIP][149] ([Intel XE#2887]) -> [SKIP][150] ([Intel XE#6703]) +14 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html

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

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          [SKIP][153] ([Intel XE#3432]) -> [SKIP][154] ([Intel XE#6703])
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-bmg:          [SKIP][155] ([Intel XE#6703]) -> [SKIP][156] ([Intel XE#2887]) +14 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][157] ([Intel XE#6703]) -> [SKIP][158] ([Intel XE#2652] / [Intel XE#787])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-bmg:          [SKIP][159] ([Intel XE#2724]) -> [SKIP][160] ([Intel XE#6703])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_cdclk@plane-scaling.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-bmg:          [SKIP][161] ([Intel XE#2325]) -> [SKIP][162] ([Intel XE#6703]) +1 other test skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-1/igt@kms_chamelium_color@ctm-0-25.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_color@degamma:
    - shard-bmg:          [SKIP][163] ([Intel XE#6703]) -> [SKIP][164] ([Intel XE#2325]) +1 other test skip
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_chamelium_color@degamma.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
    - shard-bmg:          [SKIP][165] ([Intel XE#2252]) -> [SKIP][166] ([Intel XE#6703]) +11 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
    - shard-bmg:          [SKIP][167] ([Intel XE#6703]) -> [SKIP][168] ([Intel XE#2252]) +7 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-bmg:          [SKIP][169] ([Intel XE#2390]) -> [SKIP][170] ([Intel XE#6703])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-9/igt@kms_content_protection@dp-mst-type-1.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          [SKIP][171] ([Intel XE#6703]) -> [FAIL][172] ([Intel XE#1178]) +1 other test fail
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_content_protection@srm.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@type1:
    - shard-bmg:          [SKIP][173] ([Intel XE#6703]) -> [SKIP][174] ([Intel XE#2341])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_content_protection@type1.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_content_protection@type1.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [FAIL][175] ([Intel XE#6707]) -> [SKIP][176] ([Intel XE#6703])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-1/igt@kms_content_protection@uevent.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-bmg:          [SKIP][177] ([Intel XE#2321]) -> [SKIP][178] ([Intel XE#6703])
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-bmg:          [SKIP][179] ([Intel XE#6703]) -> [SKIP][180] ([Intel XE#2320]) +4 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_crc@cursor-rapid-movement-128x42:
    - shard-bmg:          [SKIP][181] ([Intel XE#2320]) -> [SKIP][182] ([Intel XE#6703]) +1 other test skip
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-bmg:          [SKIP][183] ([Intel XE#6703]) -> [SKIP][184] ([Intel XE#2321])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
    - shard-bmg:          [SKIP][185] ([Intel XE#6703]) -> [SKIP][186] ([Intel XE#2291]) +5 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][187] ([Intel XE#2291]) -> [SKIP][188] ([Intel XE#6703]) +1 other test skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-bmg:          [SKIP][189] ([Intel XE#2286]) -> [SKIP][190] ([Intel XE#6703])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][191] ([Intel XE#6703]) -> [SKIP][192] ([Intel XE#1508]) +1 other test skip
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-bmg:          [SKIP][193] ([Intel XE#4354]) -> [SKIP][194] ([Intel XE#6703])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-9/igt@kms_dp_link_training@uhbr-mst.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          [SKIP][195] ([Intel XE#6703]) -> [SKIP][196] ([Intel XE#4331])
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-basic:
    - shard-bmg:          [SKIP][197] ([Intel XE#2244]) -> [SKIP][198] ([Intel XE#6703])
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_dsc@dsc-basic.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          [SKIP][199] ([Intel XE#6703]) -> [SKIP][200] ([Intel XE#2244])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-bmg:          [SKIP][201] ([Intel XE#4422]) -> [SKIP][202] ([Intel XE#6703]) +1 other test skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_feature_discovery@display-3x:
    - shard-bmg:          [SKIP][203] ([Intel XE#6703]) -> [SKIP][204] ([Intel XE#2373])
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_feature_discovery@display-3x.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-bmg:          [SKIP][205] ([Intel XE#2316]) -> [SKIP][206] ([Intel XE#6703])
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
    - shard-bmg:          [SKIP][207] ([Intel XE#6703]) -> [SKIP][208] ([Intel XE#2316])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-bmg:          [SKIP][209] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][210] ([Intel XE#6703]) +3 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          [SKIP][211] ([Intel XE#2380]) -> [SKIP][212] ([Intel XE#6703])
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
    - shard-bmg:          [SKIP][213] ([Intel XE#6703]) -> [SKIP][214] ([Intel XE#2293] / [Intel XE#2380])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][215] ([Intel XE#2311]) -> [SKIP][216] ([Intel XE#6703]) +27 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][217] ([Intel XE#2311]) -> [SKIP][218] ([Intel XE#2312]) +2 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc:
    - shard-bmg:          [SKIP][219] ([Intel XE#6703]) -> [SKIP][220] ([Intel XE#2311]) +18 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][221] ([Intel XE#6703]) -> [SKIP][222] ([Intel XE#4141]) +7 other tests skip
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][223] ([Intel XE#2312]) -> [SKIP][224] ([Intel XE#4141]) +4 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][225] ([Intel XE#4141]) -> [SKIP][226] ([Intel XE#6703]) +17 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][227] ([Intel XE#6703]) -> [SKIP][228] ([Intel XE#2312]) +16 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][229] ([Intel XE#2312]) -> [SKIP][230] ([Intel XE#2311]) +8 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][231] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][232] ([Intel XE#2311])
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
    - shard-bmg:          [SKIP][233] ([Intel XE#2312]) -> [SKIP][234] ([Intel XE#6703]) +7 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-bmg:          [SKIP][235] ([Intel XE#2350]) -> [SKIP][236] ([Intel XE#6703])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][237] ([Intel XE#2313]) -> [SKIP][238] ([Intel XE#6703]) +29 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][239] ([Intel XE#6703]) -> [SKIP][240] ([Intel XE#2313]) +22 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][241] ([Intel XE#2313]) -> [SKIP][242] ([Intel XE#2312]) +4 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][243] ([Intel XE#2312]) -> [SKIP][244] ([Intel XE#2313]) +8 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-bmg:          [ABORT][245] ([Intel XE#6740]) -> [SKIP][246] ([Intel XE#6703])
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-9/igt@kms_hdr@bpc-switch-dpms.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-bmg:          [SKIP][247] ([Intel XE#6703]) -> [ABORT][248] ([Intel XE#6740])
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_hdr@bpc-switch-suspend.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          [SKIP][249] ([Intel XE#6901]) -> [SKIP][250] ([Intel XE#6703])
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-9/igt@kms_joiner@basic-big-joiner.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-bmg:          [SKIP][251] ([Intel XE#6703]) -> [SKIP][252] ([Intel XE#4298])
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-bmg:          [SKIP][253] ([Intel XE#6703]) -> [SKIP][254] ([Intel XE#6901])
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_joiner@invalid-modeset-big-joiner.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-bmg:          [SKIP][255] -> [SKIP][256] ([Intel XE#6703]) +1 other test skip
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          [SKIP][257] ([Intel XE#2501]) -> [SKIP][258] ([Intel XE#6703])
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          [SKIP][259] ([Intel XE#2393]) -> [SKIP][260] ([Intel XE#6703])
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-9/igt@kms_plane_lowres@tiling-yf.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-bmg:          [SKIP][261] ([Intel XE#5020]) -> [SKIP][262] ([Intel XE#6703])
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-1/igt@kms_plane_multiple@tiling-y.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-bmg:          [SKIP][263] ([Intel XE#6886]) -> [SKIP][264] ([Intel XE#6703]) +1 other test skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_pm_backlight@fade:
    - shard-bmg:          [SKIP][265] ([Intel XE#6703]) -> [SKIP][266] ([Intel XE#870]) +1 other test skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_pm_backlight@fade.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-bmg:          [SKIP][267] ([Intel XE#6703]) -> [SKIP][268] ([Intel XE#3309])
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_pm_dc@dc5-retention-flops.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-bmg:          [SKIP][269] ([Intel XE#2392]) -> [SKIP][270] ([Intel XE#6703])
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_pm_dc@dc6-psr.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          [SKIP][271] ([Intel XE#6703]) -> [SKIP][272] ([Intel XE#2499])
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_pm_lpsp@kms-lpsp.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-bmg:          [SKIP][273] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][274] ([Intel XE#6693])
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_pm_rpm@dpms-lpsp.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-bmg:          [SKIP][275] ([Intel XE#6693]) -> [SKIP][276] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
    - shard-bmg:          [SKIP][277] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][278] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
    - shard-bmg:          [SKIP][279] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][280] ([Intel XE#1406] / [Intel XE#6703]) +11 other tests skip
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-bmg:          [SKIP][281] ([Intel XE#1406] / [Intel XE#2387]) -> [SKIP][282] ([Intel XE#1406] / [Intel XE#6703])
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr-suspend:
    - shard-bmg:          [SKIP][283] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][284] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +13 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_psr@psr-suspend.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_psr@psr-suspend.html

  * igt@kms_psr@psr2-sprite-blt:
    - shard-bmg:          [SKIP][285] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][286] ([Intel XE#1406] / [Intel XE#6703]) +12 other tests skip
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_psr@psr2-sprite-blt.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_psr@psr2-sprite-blt.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          [SKIP][287] ([Intel XE#1406] / [Intel XE#2414]) -> [SKIP][288] ([Intel XE#1406] / [Intel XE#6703])
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-bmg:          [SKIP][289] ([Intel XE#2330]) -> [SKIP][290] ([Intel XE#6703])
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-bmg:          [SKIP][291] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][292] ([Intel XE#6703]) +1 other test skip
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-bmg:          [SKIP][293] ([Intel XE#6703]) -> [SKIP][294] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-bmg:          [SKIP][295] ([Intel XE#2413]) -> [SKIP][296] ([Intel XE#6703])
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_sharpness_filter@filter-formats:
    - shard-bmg:          [SKIP][297] ([Intel XE#6503]) -> [SKIP][298] ([Intel XE#6703]) +2 other tests skip
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_sharpness_filter@filter-formats.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_sharpness_filter@filter-formats.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
    - shard-bmg:          [SKIP][299] ([Intel XE#6703]) -> [SKIP][300] ([Intel XE#6503]) +1 other test skip
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          [SKIP][301] ([Intel XE#6703]) -> [SKIP][302] ([Intel XE#1499])
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@kms_vrr@flip-suspend.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-1/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-bmg:          [SKIP][303] ([Intel XE#1499]) -> [SKIP][304] ([Intel XE#6703]) +2 other tests skip
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-drrs.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@xe_compute@ccs-mode-compute-kernel:
    - shard-bmg:          [SKIP][305] ([Intel XE#6703]) -> [SKIP][306] ([Intel XE#6599])
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@xe_compute@ccs-mode-compute-kernel.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@xe_compute@ccs-mode-compute-kernel.html

  * igt@xe_eudebug@basic-vm-access-userptr:
    - shard-bmg:          [SKIP][307] ([Intel XE#4837]) -> [SKIP][308] ([Intel XE#6703]) +8 other tests skip
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@xe_eudebug@basic-vm-access-userptr.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@xe_eudebug@basic-vm-access-userptr.html

  * igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
    - shard-bmg:          [SKIP][309] ([Intel XE#4837]) -> [SKIP][310] ([Intel XE#6557] / [Intel XE#6703])
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html

  * igt@xe_eudebug@vm-bind-clear:
    - shard-bmg:          [SKIP][311] ([Intel XE#6703]) -> [SKIP][312] ([Intel XE#4837]) +7 other tests skip
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@xe_eudebug@vm-bind-clear.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-1/igt@xe_eudebug@vm-bind-clear.html

  * igt@xe_eudebug_online@pagefault-write-stress:
    - shard-bmg:          [SKIP][313] ([Intel XE#6703]) -> [SKIP][314] ([Intel XE#6665] / [Intel XE#6681])
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@xe_eudebug_online@pagefault-write-stress.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@xe_eudebug_online@pagefault-write-stress.html

  * igt@xe_eudebug_online@set-breakpoint-faultable:
    - shard-bmg:          [SKIP][315] ([Intel XE#6703]) -> [SKIP][316] ([Intel XE#4837] / [Intel XE#6665]) +4 other tests skip
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint-faultable.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint-faultable.html

  * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram:
    - shard-bmg:          [SKIP][317] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][318] ([Intel XE#6703]) +4 other tests skip
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-bmg:          [SKIP][319] ([Intel XE#2322]) -> [SKIP][320] ([Intel XE#6703]) +11 other tests skip
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
    - shard-bmg:          [SKIP][321] ([Intel XE#6703]) -> [SKIP][322] ([Intel XE#2322]) +6 other tests skip
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html

  * igt@xe_exec_multi_queue@many-queues-basic-smem:
    - shard-bmg:          [SKIP][323] ([Intel XE#6703]) -> [SKIP][324] ([Intel XE#6874]) +23 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@xe_exec_multi_queue@many-queues-basic-smem.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-1/igt@xe_exec_multi_queue@many-queues-basic-smem.html

  * igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-dyn-priority-smem:
    - shard-bmg:          [INCOMPLETE][325] ([Intel XE#2594]) -> [SKIP][326] ([Intel XE#6874])
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-dyn-priority-smem.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-3/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-dyn-priority-smem.html

  * igt@xe_exec_multi_queue@two-queues-priority:
    - shard-bmg:          [SKIP][327] ([Intel XE#6874]) -> [SKIP][328] ([Intel XE#6703]) +33 other tests skip
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-8/igt@xe_exec_multi_queue@two-queues-priority.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@xe_exec_multi_queue@two-queues-priority.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge:
    - shard-bmg:          [SKIP][329] ([Intel XE#4943]) -> [SKIP][330] ([Intel XE#6703]) +23 other tests skip
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset:
    - shard-bmg:          [SKIP][331] ([Intel XE#6703]) -> [SKIP][332] ([Intel XE#4943]) +25 other tests skip
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset.html

  * igt@xe_mmap@small-bar:
    - shard-bmg:          [SKIP][333] ([Intel XE#586]) -> [SKIP][334] ([Intel XE#6703])
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-1/igt@xe_mmap@small-bar.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@xe_mmap@small-bar.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-bmg:          [SKIP][335] ([Intel XE#6703]) -> [SKIP][336] ([Intel XE#2236])
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@xe_pat@pat-index-xelpg.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pm@d3cold-basic-exec:
    - shard-bmg:          [SKIP][337] ([Intel XE#2284]) -> [SKIP][338] ([Intel XE#6703])
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-4/igt@xe_pm@d3cold-basic-exec.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@xe_pm@d3cold-basic-exec.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-bmg:          [SKIP][339] ([Intel XE#6703]) -> [SKIP][340] ([Intel XE#579])
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@xe_pm@vram-d3cold-threshold.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
    - shard-bmg:          [SKIP][341] ([Intel XE#4733]) -> [SKIP][342] ([Intel XE#6703]) +2 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
    - shard-bmg:          [SKIP][343] ([Intel XE#6703]) -> [SKIP][344] ([Intel XE#4733]) +2 other tests skip
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-8/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-bmg:          [SKIP][345] ([Intel XE#944]) -> [SKIP][346] ([Intel XE#6703]) +4 other tests skip
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-8/igt@xe_query@multigpu-query-mem-usage.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-5/igt@xe_query@multigpu-query-mem-usage.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-bmg:          [SKIP][347] ([Intel XE#6703]) -> [SKIP][348] ([Intel XE#944]) +1 other test skip
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395/shard-bmg-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159132v3/shard-bmg-4/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5177
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5254]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5254
  [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
  [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
  [Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
  [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395 -> xe-pw-159132v3

  IGT_8669: 319db2ffba419f9711acc72895f065a818905efa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4257-810ba5ee6a71b54b99289f397e8ca9147047c395: 810ba5ee6a71b54b99289f397e8ca9147047c395
  xe-pw-159132v3: 159132v3

== Logs ==

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

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

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

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

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-17  6:17 [PATCH] drm/xe: Fix NULL pointer dereference in xe_exec_ioctl Tapani Pälli
2025-12-17  8:00 ` ✓ CI.KUnit: success for " Patchwork
2025-12-17  9:01 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-17 10:27 ` [PATCH] " Matthew Auld
2025-12-17 10:31   ` Matthew Auld
2025-12-17 10:51     ` Tapani Pälli
2025-12-17 11:42       ` Tapani Pälli
2025-12-17 11:51       ` Matthew Auld
2025-12-17 12:22         ` Tapani Pälli
2025-12-17 12:32           ` [PATCH v2] " Tapani Pälli
2025-12-17 12:57             ` Matthew Auld
2025-12-17 13:21               ` Tapani Pälli
2025-12-17 13:24                 ` [PATCH v3] " Tapani Pälli
2025-12-17 14:56                   ` Matthew Auld
2025-12-17 21:04                     ` Matthew Brost
2025-12-17 21:16           ` [PATCH] " Matthew Brost
2025-12-17 13:10 ` ✓ CI.KUnit: success for drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev2) Patchwork
2025-12-17 13:48 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-17 15:43 ` ✓ CI.KUnit: success for drm/xe: Fix NULL pointer dereference in xe_exec_ioctl (rev3) Patchwork
2025-12-17 16:23 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-18 14:16 ` ✗ 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