Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise
@ 2026-02-03 17:20 Jia Yao
  2026-02-03 17:27 ` ✓ CI.KUnit: success for " Patchwork
                   ` (15 more replies)
  0 siblings, 16 replies; 21+ messages in thread
From: Jia Yao @ 2026-02-03 17:20 UTC (permalink / raw)
  To: intel-xe; +Cc: Jia Yao, Matthew Auld

When user provides a bogus pat_index value through the madvise IOCTL, the
xe_pat_index_get_coh_mode() function performs an array access without
validating bounds. This allows a malicious user to trigger an out-of-bounds
kernel read from the xe->pat.table array.

The vulnerability exists because the validation in madvise_args_are_sane()
directly calls xe_pat_index_get_coh_mode(xe, args->pat_index.val) without
first checking if pat_index is within [0, xe->pat.n_entries).

Although xe_pat_index_get_coh_mode() has a WARN_ON to catch this in debug
builds, it still performs the unsafe array access in production kernels.

Fix this by adding an explicit bounds check before calling the function,
similar to other IOCTL parameter validations. This prevents malicious
userspace from reading arbitrary kernel memory.

Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
---
 drivers/gpu/drm/xe/xe_vm_madvise.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index add9a6ca2390..c109f9adf6fb 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -291,6 +291,9 @@ static bool madvise_args_are_sane(struct xe_device *xe, const struct drm_xe_madv
 		break;
 	case DRM_XE_MEM_RANGE_ATTR_PAT:
 	{
+		if (XE_IOCTL_DBG(xe, args->pat_index.val >= xe->pat.n_entries))
+			return false;
+
 		u16 coh_mode = xe_pat_index_get_coh_mode(xe, args->pat_index.val);
 
 		if (XE_IOCTL_DBG(xe, !coh_mode))
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
@ 2026-02-03 17:27 ` Patchwork
  2026-02-03 17:29 ` [PATCH] " Matthew Auld
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-03 17:27 UTC (permalink / raw)
  To: Jia Yao; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise
URL   : https://patchwork.freedesktop.org/series/161100/
State : success

== Summary ==

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

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

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

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



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

* Re: [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
  2026-02-03 17:27 ` ✓ CI.KUnit: success for " Patchwork
@ 2026-02-03 17:29 ` Matthew Auld
  2026-02-03 18:02 ` ✗ Xe.CI.BAT: failure for " Patchwork
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: Matthew Auld @ 2026-02-03 17:29 UTC (permalink / raw)
  To: Jia Yao, intel-xe

On 03/02/2026 17:20, Jia Yao wrote:
> When user provides a bogus pat_index value through the madvise IOCTL, the
> xe_pat_index_get_coh_mode() function performs an array access without
> validating bounds. This allows a malicious user to trigger an out-of-bounds
> kernel read from the xe->pat.table array.
> 
> The vulnerability exists because the validation in madvise_args_are_sane()
> directly calls xe_pat_index_get_coh_mode(xe, args->pat_index.val) without
> first checking if pat_index is within [0, xe->pat.n_entries).
> 
> Although xe_pat_index_get_coh_mode() has a WARN_ON to catch this in debug
> builds, it still performs the unsafe array access in production kernels.
> 
> Fix this by adding an explicit bounds check before calling the function,
> similar to other IOCTL parameter validations. This prevents malicious
> userspace from reading arbitrary kernel memory.
> 
> Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
> Cc: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Jia Yao <jia.yao@intel.com>

Cc: <stable@vger.kernel.org> # v6.18+

You can use "dim fixes <commit-id>" to get the right tags.

> ---
>   drivers/gpu/drm/xe/xe_vm_madvise.c | 3 +++
>   1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
> index add9a6ca2390..c109f9adf6fb 100644
> --- a/drivers/gpu/drm/xe/xe_vm_madvise.c
> +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
> @@ -291,6 +291,9 @@ static bool madvise_args_are_sane(struct xe_device *xe, const struct drm_xe_madv
>   		break;
>   	case DRM_XE_MEM_RANGE_ATTR_PAT:
>   	{
> +		if (XE_IOCTL_DBG(xe, args->pat_index.val >= xe->pat.n_entries))
> +			return false;
> +

I think we are meant to use array_index_nospec() also? We have the same 
check for vm_bind, so you can use that as an example.

>   		u16 coh_mode = xe_pat_index_get_coh_mode(xe, args->pat_index.val);
>   
>   		if (XE_IOCTL_DBG(xe, !coh_mode))


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

* ✗ Xe.CI.BAT: failure for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
  2026-02-03 17:27 ` ✓ CI.KUnit: success for " Patchwork
  2026-02-03 17:29 ` [PATCH] " Matthew Auld
@ 2026-02-03 18:02 ` Patchwork
  2026-02-03 21:06 ` [PATCH v2] " Jia Yao
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-03 18:02 UTC (permalink / raw)
  To: Jia Yao; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise
URL   : https://patchwork.freedesktop.org/series/161100/
State : failure

== Summary ==

ERROR: The runconfig 'xe-4490-9f5242e63f0bab74d47ae6792e0c25a324184a6b_BAT' does not exist in the database

== Logs ==

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

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

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

* [PATCH v2] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (2 preceding siblings ...)
  2026-02-03 18:02 ` ✗ Xe.CI.BAT: failure for " Patchwork
@ 2026-02-03 21:06 ` Jia Yao
  2026-02-04 15:44   ` Matthew Auld
  2026-02-03 21:14 ` ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev2) Patchwork
                   ` (11 subsequent siblings)
  15 siblings, 1 reply; 21+ messages in thread
From: Jia Yao @ 2026-02-03 21:06 UTC (permalink / raw)
  To: intel-xe
  Cc: Jia Yao, Matthew Brost, Shuicheng Lin, Himal Prasad Ghimiray,
	Thomas Hellström, Rodrigo Vivi, Matthew Auld

When user provides a bogus pat_index value through the madvise IOCTL, the
xe_pat_index_get_coh_mode() function performs an array access without
validating bounds. This allows a malicious user to trigger an out-of-bounds
kernel read from the xe->pat.table array.

The vulnerability exists because the validation in madvise_args_are_sane()
directly calls xe_pat_index_get_coh_mode(xe, args->pat_index.val) without
first checking if pat_index is within [0, xe->pat.n_entries).

Although xe_pat_index_get_coh_mode() has a WARN_ON to catch this in debug
builds, it still performs the unsafe array access in production kernels.

v2(Matthew Auld)
- Using array_index_nospec() to mitigate spectre attacks when the value
is used

Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Cc: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
---
 drivers/gpu/drm/xe/xe_vm_madvise.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index add9a6ca2390..3564e1442694 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -291,7 +291,12 @@ static bool madvise_args_are_sane(struct xe_device *xe, const struct drm_xe_madv
 		break;
 	case DRM_XE_MEM_RANGE_ATTR_PAT:
 	{
-		u16 coh_mode = xe_pat_index_get_coh_mode(xe, args->pat_index.val);
+		if (XE_IOCTL_DBG(xe, args->pat_index.val >= xe->pat.n_entries))
+			return false;
+
+		u16 pat_index = array_index_nospec(args->pat_index.val, xe->pat.n_entries);
+
+		u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
 
 		if (XE_IOCTL_DBG(xe, !coh_mode))
 			return false;
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev2)
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (3 preceding siblings ...)
  2026-02-03 21:06 ` [PATCH v2] " Jia Yao
@ 2026-02-03 21:14 ` Patchwork
  2026-02-03 21:47 ` ✗ Xe.CI.BAT: failure " Patchwork
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-03 21:14 UTC (permalink / raw)
  To: Jia Yao; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev2)
URL   : https://patchwork.freedesktop.org/series/161100/
State : success

== Summary ==

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

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

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

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



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

* ✗ Xe.CI.BAT: failure for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev2)
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (4 preceding siblings ...)
  2026-02-03 21:14 ` ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev2) Patchwork
@ 2026-02-03 21:47 ` Patchwork
  2026-02-03 22:33 ` ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev3) Patchwork
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-03 21:47 UTC (permalink / raw)
  To: Jia Yao; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev2)
URL   : https://patchwork.freedesktop.org/series/161100/
State : failure

== Summary ==

ERROR: The runconfig 'xe-4493-ff449f153b0966cfd7a7291670c927f6b6971d2a_BAT' does not exist in the database

== Logs ==

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

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

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

* ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev3)
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (5 preceding siblings ...)
  2026-02-03 21:47 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-02-03 22:33 ` Patchwork
  2026-02-03 23:06 ` ✗ Xe.CI.BAT: failure " Patchwork
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-03 22:33 UTC (permalink / raw)
  To: Jia Yao; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev3)
URL   : https://patchwork.freedesktop.org/series/161100/
State : success

== Summary ==

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

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

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

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



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

* ✗ Xe.CI.BAT: failure for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev3)
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (6 preceding siblings ...)
  2026-02-03 22:33 ` ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev3) Patchwork
@ 2026-02-03 23:06 ` Patchwork
  2026-02-04 13:05 ` ✗ Xe.CI.FULL: " Patchwork
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-03 23:06 UTC (permalink / raw)
  To: Jia Yao; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev3)
URL   : https://patchwork.freedesktop.org/series/161100/
State : failure

== Summary ==

ERROR: The runconfig 'xe-4493-ff449f153b0966cfd7a7291670c927f6b6971d2a_BAT' does not exist in the database

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev3)
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (7 preceding siblings ...)
  2026-02-03 23:06 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-02-04 13:05 ` Patchwork
  2026-02-05  0:10 ` ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev4) Patchwork
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-04 13:05 UTC (permalink / raw)
  To: Jia Yao; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev3)
URL   : https://patchwork.freedesktop.org/series/161100/
State : failure

== Summary ==

ERROR: The runconfig 'xe-4493-ff449f153b0966cfd7a7291670c927f6b6971d2a_FULL' does not exist in the database

== Logs ==

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

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

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

* Re: [PATCH v2] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise
  2026-02-03 21:06 ` [PATCH v2] " Jia Yao
@ 2026-02-04 15:44   ` Matthew Auld
  2026-02-04 18:15     ` Yao, Jia
  0 siblings, 1 reply; 21+ messages in thread
From: Matthew Auld @ 2026-02-04 15:44 UTC (permalink / raw)
  To: Jia Yao, intel-xe
  Cc: Matthew Brost, Shuicheng Lin, Himal Prasad Ghimiray,
	Thomas Hellström, Rodrigo Vivi

On 03/02/2026 21:06, Jia Yao wrote:
> When user provides a bogus pat_index value through the madvise IOCTL, the
> xe_pat_index_get_coh_mode() function performs an array access without
> validating bounds. This allows a malicious user to trigger an out-of-bounds
> kernel read from the xe->pat.table array.
> 
> The vulnerability exists because the validation in madvise_args_are_sane()
> directly calls xe_pat_index_get_coh_mode(xe, args->pat_index.val) without
> first checking if pat_index is within [0, xe->pat.n_entries).
> 
> Although xe_pat_index_get_coh_mode() has a WARN_ON to catch this in debug
> builds, it still performs the unsafe array access in production kernels.
> 
> v2(Matthew Auld)
> - Using array_index_nospec() to mitigate spectre attacks when the value
> is used
> 
> Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> Cc: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Jia Yao <jia.yao@intel.com>

I think you dropped the stable Cc.

> ---
>   drivers/gpu/drm/xe/xe_vm_madvise.c | 7 ++++++-
>   1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
> index add9a6ca2390..3564e1442694 100644
> --- a/drivers/gpu/drm/xe/xe_vm_madvise.c
> +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
> @@ -291,7 +291,12 @@ static bool madvise_args_are_sane(struct xe_device *xe, const struct drm_xe_madv
>   		break;
>   	case DRM_XE_MEM_RANGE_ATTR_PAT:
>   	{
> -		u16 coh_mode = xe_pat_index_get_coh_mode(xe, args->pat_index.val);
> +		if (XE_IOCTL_DBG(xe, args->pat_index.val >= xe->pat.n_entries))
> +			return false;
> +
> +		u16 pat_index = array_index_nospec(args->pat_index.val, xe->pat.n_entries);
> +
> +		u16 coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);

nit: I think the normal coding style is to put the declarations at the 
start of the block. The rest of this file seems to follow that.

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

>   
>   		if (XE_IOCTL_DBG(xe, !coh_mode))
>   			return false;


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

* RE: [PATCH v2] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise
  2026-02-04 15:44   ` Matthew Auld
@ 2026-02-04 18:15     ` Yao, Jia
  2026-02-05 10:21       ` Matthew Auld
  0 siblings, 1 reply; 21+ messages in thread
From: Yao, Jia @ 2026-02-04 18:15 UTC (permalink / raw)
  To: Auld, Matthew, intel-xe@lists.freedesktop.org
  Cc: Brost, Matthew, Lin, Shuicheng, Ghimiray, Himal Prasad,
	Thomas Hellström, Vivi, Rodrigo

Thanks! May I add your Reviewed-by tag in the next revision?

> -----Original Message-----
> From: Auld, Matthew <matthew.auld@intel.com>
> Sent: Wednesday, February 4, 2026 7:44 AM
> To: Yao, Jia <jia.yao@intel.com>; intel-xe@lists.freedesktop.org
> Cc: Brost, Matthew <matthew.brost@intel.com>; Lin, Shuicheng
> <shuicheng.lin@intel.com>; Ghimiray, Himal Prasad
> <himal.prasad.ghimiray@intel.com>; Thomas Hellström
> <thomas.hellstrom@linux.intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com>
> Subject: Re: [PATCH v2] drm/xe: Add bounds check on pat_index to prevent
> OOB kernel read in madvise
> 
> On 03/02/2026 21:06, Jia Yao wrote:
> > When user provides a bogus pat_index value through the madvise IOCTL,
> > the
> > xe_pat_index_get_coh_mode() function performs an array access without
> > validating bounds. This allows a malicious user to trigger an
> > out-of-bounds kernel read from the xe->pat.table array.
> >
> > The vulnerability exists because the validation in
> > madvise_args_are_sane() directly calls xe_pat_index_get_coh_mode(xe,
> > args->pat_index.val) without first checking if pat_index is within [0, xe-
> >pat.n_entries).
> >
> > Although xe_pat_index_get_coh_mode() has a WARN_ON to catch this in
> > debug builds, it still performs the unsafe array access in production kernels.
> >
> > v2(Matthew Auld)
> > - Using array_index_nospec() to mitigate spectre attacks when the
> > value is used
> >
> > Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
> > Cc: Matthew Brost <matthew.brost@intel.com>
> > Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> > Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> > Cc: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > Cc: Matthew Auld <matthew.auld@intel.com>
> > Signed-off-by: Jia Yao <jia.yao@intel.com>
> 
> I think you dropped the stable Cc.
> 
> > ---
> >   drivers/gpu/drm/xe/xe_vm_madvise.c | 7 ++++++-
> >   1 file changed, 6 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c
> > b/drivers/gpu/drm/xe/xe_vm_madvise.c
> > index add9a6ca2390..3564e1442694 100644
> > --- a/drivers/gpu/drm/xe/xe_vm_madvise.c
> > +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
> > @@ -291,7 +291,12 @@ static bool madvise_args_are_sane(struct
> xe_device *xe, const struct drm_xe_madv
> >   		break;
> >   	case DRM_XE_MEM_RANGE_ATTR_PAT:
> >   	{
> > -		u16 coh_mode = xe_pat_index_get_coh_mode(xe, args-
> >pat_index.val);
> > +		if (XE_IOCTL_DBG(xe, args->pat_index.val >= xe-
> >pat.n_entries))
> > +			return false;
> > +
> > +		u16 pat_index = array_index_nospec(args->pat_index.val,
> > +xe->pat.n_entries);
> > +
> > +		u16 coh_mode = xe_pat_index_get_coh_mode(xe,
> pat_index);
> 
> nit: I think the normal coding style is to put the declarations at the start of the
> block. The rest of this file seems to follow that.
> 
> Otherwise:
> Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> 
> >
> >   		if (XE_IOCTL_DBG(xe, !coh_mode))
> >   			return false;


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

* ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev4)
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (8 preceding siblings ...)
  2026-02-04 13:05 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-02-05  0:10 ` Patchwork
  2026-02-05  0:43 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-05  0:10 UTC (permalink / raw)
  To: Jia Yao; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev4)
URL   : https://patchwork.freedesktop.org/series/161100/
State : success

== Summary ==

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

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

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[00:10:11] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:10:12] 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
[00:10:22] Starting KUnit Kernel (1/1)...
[00:10:22] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:10:22] ================= ttm_device (5 subtests) ==================
[00:10:22] [PASSED] ttm_device_init_basic
[00:10:22] [PASSED] ttm_device_init_multiple
[00:10:22] [PASSED] ttm_device_fini_basic
[00:10:22] [PASSED] ttm_device_init_no_vma_man
[00:10:22] ================== ttm_device_init_pools  ==================
[00:10:22] [PASSED] No DMA allocations, no DMA32 required
[00:10:22] [PASSED] DMA allocations, DMA32 required
[00:10:22] [PASSED] No DMA allocations, DMA32 required
[00:10:22] [PASSED] DMA allocations, no DMA32 required
[00:10:22] ============== [PASSED] ttm_device_init_pools ==============
[00:10:22] =================== [PASSED] ttm_device ====================
[00:10:22] ================== ttm_pool (8 subtests) ===================
[00:10:22] ================== ttm_pool_alloc_basic  ===================
[00:10:22] [PASSED] One page
[00:10:22] [PASSED] More than one page
[00:10:22] [PASSED] Above the allocation limit
[00:10:22] [PASSED] One page, with coherent DMA mappings enabled
[00:10:22] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:10:22] ============== [PASSED] ttm_pool_alloc_basic ===============
[00:10:22] ============== ttm_pool_alloc_basic_dma_addr  ==============
[00:10:22] [PASSED] One page
[00:10:22] [PASSED] More than one page
[00:10:22] [PASSED] Above the allocation limit
[00:10:22] [PASSED] One page, with coherent DMA mappings enabled
[00:10:22] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:10:22] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[00:10:22] [PASSED] ttm_pool_alloc_order_caching_match
[00:10:22] [PASSED] ttm_pool_alloc_caching_mismatch
[00:10:22] [PASSED] ttm_pool_alloc_order_mismatch
[00:10:22] [PASSED] ttm_pool_free_dma_alloc
[00:10:22] [PASSED] ttm_pool_free_no_dma_alloc
[00:10:22] [PASSED] ttm_pool_fini_basic
[00:10:22] ==================== [PASSED] ttm_pool =====================
[00:10:22] ================ ttm_resource (8 subtests) =================
[00:10:22] ================= ttm_resource_init_basic  =================
[00:10:22] [PASSED] Init resource in TTM_PL_SYSTEM
[00:10:22] [PASSED] Init resource in TTM_PL_VRAM
[00:10:22] [PASSED] Init resource in a private placement
[00:10:22] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[00:10:22] ============= [PASSED] ttm_resource_init_basic =============
[00:10:22] [PASSED] ttm_resource_init_pinned
[00:10:22] [PASSED] ttm_resource_fini_basic
[00:10:22] [PASSED] ttm_resource_manager_init_basic
[00:10:22] [PASSED] ttm_resource_manager_usage_basic
[00:10:22] [PASSED] ttm_resource_manager_set_used_basic
[00:10:22] [PASSED] ttm_sys_man_alloc_basic
[00:10:22] [PASSED] ttm_sys_man_free_basic
[00:10:22] ================== [PASSED] ttm_resource ===================
[00:10:22] =================== ttm_tt (15 subtests) ===================
[00:10:22] ==================== ttm_tt_init_basic  ====================
[00:10:22] [PASSED] Page-aligned size
[00:10:22] [PASSED] Extra pages requested
[00:10:22] ================ [PASSED] ttm_tt_init_basic ================
[00:10:22] [PASSED] ttm_tt_init_misaligned
[00:10:22] [PASSED] ttm_tt_fini_basic
[00:10:22] [PASSED] ttm_tt_fini_sg
[00:10:22] [PASSED] ttm_tt_fini_shmem
[00:10:22] [PASSED] ttm_tt_create_basic
[00:10:22] [PASSED] ttm_tt_create_invalid_bo_type
[00:10:22] [PASSED] ttm_tt_create_ttm_exists
[00:10:22] [PASSED] ttm_tt_create_failed
[00:10:22] [PASSED] ttm_tt_destroy_basic
[00:10:22] [PASSED] ttm_tt_populate_null_ttm
[00:10:22] [PASSED] ttm_tt_populate_populated_ttm
[00:10:22] [PASSED] ttm_tt_unpopulate_basic
[00:10:22] [PASSED] ttm_tt_unpopulate_empty_ttm
[00:10:22] [PASSED] ttm_tt_swapin_basic
[00:10:22] ===================== [PASSED] ttm_tt ======================
[00:10:22] =================== ttm_bo (14 subtests) ===================
[00:10:22] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[00:10:22] [PASSED] Cannot be interrupted and sleeps
[00:10:22] [PASSED] Cannot be interrupted, locks straight away
[00:10:22] [PASSED] Can be interrupted, sleeps
[00:10:22] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[00:10:22] [PASSED] ttm_bo_reserve_locked_no_sleep
[00:10:22] [PASSED] ttm_bo_reserve_no_wait_ticket
[00:10:22] [PASSED] ttm_bo_reserve_double_resv
[00:10:22] [PASSED] ttm_bo_reserve_interrupted
[00:10:22] [PASSED] ttm_bo_reserve_deadlock
[00:10:22] [PASSED] ttm_bo_unreserve_basic
[00:10:22] [PASSED] ttm_bo_unreserve_pinned
[00:10:22] [PASSED] ttm_bo_unreserve_bulk
[00:10:22] [PASSED] ttm_bo_fini_basic
[00:10:22] [PASSED] ttm_bo_fini_shared_resv
[00:10:22] [PASSED] ttm_bo_pin_basic
[00:10:22] [PASSED] ttm_bo_pin_unpin_resource
[00:10:22] [PASSED] ttm_bo_multiple_pin_one_unpin
[00:10:22] ===================== [PASSED] ttm_bo ======================
[00:10:22] ============== ttm_bo_validate (21 subtests) ===============
[00:10:22] ============== ttm_bo_init_reserved_sys_man  ===============
[00:10:22] [PASSED] Buffer object for userspace
[00:10:22] [PASSED] Kernel buffer object
[00:10:22] [PASSED] Shared buffer object
[00:10:22] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[00:10:22] ============== ttm_bo_init_reserved_mock_man  ==============
[00:10:22] [PASSED] Buffer object for userspace
[00:10:22] [PASSED] Kernel buffer object
[00:10:22] [PASSED] Shared buffer object
[00:10:22] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[00:10:22] [PASSED] ttm_bo_init_reserved_resv
[00:10:22] ================== ttm_bo_validate_basic  ==================
[00:10:22] [PASSED] Buffer object for userspace
[00:10:22] [PASSED] Kernel buffer object
[00:10:22] [PASSED] Shared buffer object
[00:10:22] ============== [PASSED] ttm_bo_validate_basic ==============
[00:10:22] [PASSED] ttm_bo_validate_invalid_placement
[00:10:22] ============= ttm_bo_validate_same_placement  ==============
[00:10:22] [PASSED] System manager
[00:10:22] [PASSED] VRAM manager
[00:10:22] ========= [PASSED] ttm_bo_validate_same_placement ==========
[00:10:22] [PASSED] ttm_bo_validate_failed_alloc
[00:10:22] [PASSED] ttm_bo_validate_pinned
[00:10:22] [PASSED] ttm_bo_validate_busy_placement
[00:10:22] ================ ttm_bo_validate_multihop  =================
[00:10:22] [PASSED] Buffer object for userspace
[00:10:22] [PASSED] Kernel buffer object
[00:10:22] [PASSED] Shared buffer object
[00:10:22] ============ [PASSED] ttm_bo_validate_multihop =============
[00:10:22] ========== ttm_bo_validate_no_placement_signaled  ==========
[00:10:22] [PASSED] Buffer object in system domain, no page vector
[00:10:22] [PASSED] Buffer object in system domain with an existing page vector
[00:10:22] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[00:10:22] ======== ttm_bo_validate_no_placement_not_signaled  ========
[00:10:22] [PASSED] Buffer object for userspace
[00:10:22] [PASSED] Kernel buffer object
[00:10:22] [PASSED] Shared buffer object
[00:10:22] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[00:10:22] [PASSED] ttm_bo_validate_move_fence_signaled
[00:10:22] ========= ttm_bo_validate_move_fence_not_signaled  =========
[00:10:22] [PASSED] Waits for GPU
[00:10:22] [PASSED] Tries to lock straight away
[00:10:22] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[00:10:22] [PASSED] ttm_bo_validate_happy_evict
[00:10:22] [PASSED] ttm_bo_validate_all_pinned_evict
[00:10:22] [PASSED] ttm_bo_validate_allowed_only_evict
[00:10:22] [PASSED] ttm_bo_validate_deleted_evict
[00:10:22] [PASSED] ttm_bo_validate_busy_domain_evict
[00:10:22] [PASSED] ttm_bo_validate_evict_gutting
[00:10:22] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[00:10:22] ================= [PASSED] ttm_bo_validate =================
[00:10:22] ============================================================
[00:10:22] Testing complete. Ran 101 tests: passed: 101
[00:10:22] Elapsed time: 11.321s total, 1.673s configuring, 9.431s building, 0.179s 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: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev4)
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (9 preceding siblings ...)
  2026-02-05  0:10 ` ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev4) Patchwork
@ 2026-02-05  0:43 ` Patchwork
  2026-02-05 15:38 ` ✗ Xe.CI.FULL: failure " Patchwork
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-05  0:43 UTC (permalink / raw)
  To: Jia Yao; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev4)
URL   : https://patchwork.freedesktop.org/series/161100/
State : success

== Summary ==

CI Bug Log - changes from xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3_BAT -> xe-pw-161100v4_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3 -> xe-pw-161100v4

  IGT_8737: 8737
  xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3: 55e3e3aeecf80d9fd2536acd8ed785282be5a7b3
  xe-pw-161100v4: 161100v4

== Logs ==

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

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

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

* Re: [PATCH v2] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise
  2026-02-04 18:15     ` Yao, Jia
@ 2026-02-05 10:21       ` Matthew Auld
  0 siblings, 0 replies; 21+ messages in thread
From: Matthew Auld @ 2026-02-05 10:21 UTC (permalink / raw)
  To: Yao, Jia, intel-xe@lists.freedesktop.org
  Cc: Brost, Matthew, Lin, Shuicheng, Ghimiray, Himal Prasad,
	Thomas Hellström, Vivi, Rodrigo

On 04/02/2026 18:15, Yao, Jia wrote:
> Thanks! May I add your Reviewed-by tag in the next revision?

Yes, with the comments addressed.

> 
>> -----Original Message-----
>> From: Auld, Matthew <matthew.auld@intel.com>
>> Sent: Wednesday, February 4, 2026 7:44 AM
>> To: Yao, Jia <jia.yao@intel.com>; intel-xe@lists.freedesktop.org
>> Cc: Brost, Matthew <matthew.brost@intel.com>; Lin, Shuicheng
>> <shuicheng.lin@intel.com>; Ghimiray, Himal Prasad
>> <himal.prasad.ghimiray@intel.com>; Thomas Hellström
>> <thomas.hellstrom@linux.intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com>
>> Subject: Re: [PATCH v2] drm/xe: Add bounds check on pat_index to prevent
>> OOB kernel read in madvise
>>
>> On 03/02/2026 21:06, Jia Yao wrote:
>>> When user provides a bogus pat_index value through the madvise IOCTL,
>>> the
>>> xe_pat_index_get_coh_mode() function performs an array access without
>>> validating bounds. This allows a malicious user to trigger an
>>> out-of-bounds kernel read from the xe->pat.table array.
>>>
>>> The vulnerability exists because the validation in
>>> madvise_args_are_sane() directly calls xe_pat_index_get_coh_mode(xe,
>>> args->pat_index.val) without first checking if pat_index is within [0, xe-
>>> pat.n_entries).
>>>
>>> Although xe_pat_index_get_coh_mode() has a WARN_ON to catch this in
>>> debug builds, it still performs the unsafe array access in production kernels.
>>>
>>> v2(Matthew Auld)
>>> - Using array_index_nospec() to mitigate spectre attacks when the
>>> value is used
>>>
>>> Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
>>> Cc: Matthew Brost <matthew.brost@intel.com>
>>> Cc: Shuicheng Lin <shuicheng.lin@intel.com>
>>> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
>>> Cc: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
>>> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
>>> Cc: Matthew Auld <matthew.auld@intel.com>
>>> Signed-off-by: Jia Yao <jia.yao@intel.com>
>>
>> I think you dropped the stable Cc.
>>
>>> ---
>>>    drivers/gpu/drm/xe/xe_vm_madvise.c | 7 ++++++-
>>>    1 file changed, 6 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c
>>> b/drivers/gpu/drm/xe/xe_vm_madvise.c
>>> index add9a6ca2390..3564e1442694 100644
>>> --- a/drivers/gpu/drm/xe/xe_vm_madvise.c
>>> +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
>>> @@ -291,7 +291,12 @@ static bool madvise_args_are_sane(struct
>> xe_device *xe, const struct drm_xe_madv
>>>    		break;
>>>    	case DRM_XE_MEM_RANGE_ATTR_PAT:
>>>    	{
>>> -		u16 coh_mode = xe_pat_index_get_coh_mode(xe, args-
>>> pat_index.val);
>>> +		if (XE_IOCTL_DBG(xe, args->pat_index.val >= xe-
>>> pat.n_entries))
>>> +			return false;
>>> +
>>> +		u16 pat_index = array_index_nospec(args->pat_index.val,
>>> +xe->pat.n_entries);
>>> +
>>> +		u16 coh_mode = xe_pat_index_get_coh_mode(xe,
>> pat_index);
>>
>> nit: I think the normal coding style is to put the declarations at the start of the
>> block. The rest of this file seems to follow that.
>>
>> Otherwise:
>> Reviewed-by: Matthew Auld <matthew.auld@intel.com>
>>
>>>
>>>    		if (XE_IOCTL_DBG(xe, !coh_mode))
>>>    			return false;
> 


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

* ✗ Xe.CI.FULL: failure for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev4)
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (10 preceding siblings ...)
  2026-02-05  0:43 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-05 15:38 ` Patchwork
  2026-02-05 16:15 ` [PATCH v3] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-05 15:38 UTC (permalink / raw)
  To: Jia Yao; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev4)
URL   : https://patchwork.freedesktop.org/series/161100/
State : failure

== Summary ==

CI Bug Log - changes from xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3_FULL -> xe-pw-161100v4_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2:
    - shard-bmg:          [PASS][1] -> [SKIP][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-8/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2.html

  * igt@xe_pmu@gt-frequency:
    - shard-lnl:          [PASS][3] -> [FAIL][4] +1 other test fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-lnl-4/igt@xe_pmu@gt-frequency.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-6/igt@xe_pmu@gt-frequency.html

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

  Here are the changes found in xe-pw-161100v4_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-read:
    - shard-lnl:          NOTRUN -> [SKIP][5] ([Intel XE#1125])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@intel_hwmon@hwmon-read.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#2370])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@linear-8bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2327])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-270.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][8] ([Intel XE#7059])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#1124]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#1124]) +1 other test skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-bmg:          [PASS][11] -> [SKIP][12] ([Intel XE#2314] / [Intel XE#2894])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-9/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

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

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

  * igt@kms_bw@linear-tiling-4-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#1512])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html

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

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2887]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html

  * igt@kms_chamelium_color@gamma:
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#306])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_chamelium_color@gamma.html

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

  * igt@kms_chamelium_hpd@dp-hpd-fast:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#373])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_chamelium_hpd@dp-hpd-fast.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#6969]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-hdmi-a-3.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#6969] / [Intel XE#7006])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-hdmi-a-3.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][24] ([Intel XE#1178] / [Intel XE#3304])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-9/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html

  * igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][25] ([Intel XE#3304]) +1 other test fail
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-1/igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2320]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_crc@cursor-rapid-movement-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#1424]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2321])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#309])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-bmg:          [PASS][30] -> [DMESG-WARN][31] ([Intel XE#5354])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-10/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-bmg:          [PASS][32] -> [SKIP][33] ([Intel XE#2291]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

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

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2244])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2316])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-bmg:          [PASS][37] -> [DMESG-WARN][38] ([Intel XE#5208])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ad-dp2-hdmi-a3:
    - shard-bmg:          [PASS][39] -> [DMESG-WARN][40] ([Intel XE#3428])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ad-dp2-hdmi-a3.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ad-dp2-hdmi-a3.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-bmg:          [PASS][41] -> [SKIP][42] ([Intel XE#2316]) +4 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-10/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [PASS][43] -> [FAIL][44] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
    - shard-lnl:          [PASS][45] -> [FAIL][46] ([Intel XE#301])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#7178])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#7178])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_force_connector_basic@force-connector-state:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#352])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#651]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html

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

  * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#7061])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#2311]) +5 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#7061]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#2313]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#656]) +5 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2312]) +7 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [PASS][58] -> [SKIP][59] ([Intel XE#7086])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-9/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#6900])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-5:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#7131]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-5.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-3:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#7130]) +6 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-3.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#7111] / [Intel XE#7130]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-a-plane-0:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#7130]) +6 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier@pipe-a-plane-0.html

  * igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3:
    - shard-bmg:          [PASS][65] -> [ABORT][66] ([Intel XE#5545] / [Intel XE#6652]) +1 other test abort
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-2/igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#1406] / [Intel XE#2893])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr@fbc-psr2-primary-page-flip:
    - shard-lnl:          NOTRUN -> [SKIP][70] ([Intel XE#1406])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-page-flip.html

  * igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#4609])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html

  * igt@kms_psr@fbc-psr2-sprite-render:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_psr@fbc-psr2-sprite-render.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [PASS][73] -> [SKIP][74] ([Intel XE#1435])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-9/igt@kms_setmode@clone-exclusive-crtc.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaler:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#6503])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-scaler.html

  * igt@kms_vrr@negative-basic:
    - shard-bmg:          [PASS][76] -> [SKIP][77] ([Intel XE#1499])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-3/igt@kms_vrr@negative-basic.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_vrr@negative-basic.html

  * igt@xe_eudebug@multiple-sessions:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#4837]) +1 other test skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@xe_eudebug@multiple-sessions.html

  * igt@xe_eudebug@vma-ufence:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#4837])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-4/igt@xe_eudebug@vma-ufence.html

  * igt@xe_eudebug_online@stopped-thread:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@xe_eudebug_online@stopped-thread.html

  * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram:
    - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#4837] / [Intel XE#6665])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html

  * igt@xe_evict@evict-beng-small-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#688]) +1 other test skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@xe_evict@evict-beng-small-multi-vm.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#2322]) +2 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][84] ([Intel XE#1392]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-userptr.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-imm:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#7136])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-imm.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][86] ([Intel XE#7136]) +3 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-4/igt@xe_exec_fault_mode@many-multi-queue-userptr-prefetch.html

  * igt@xe_exec_multi_queue@max-queues-preempt-mode-basic:
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#6874]) +8 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic.html

  * igt@xe_exec_multi_queue@two-queues-close-fd-smem:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#6874]) +5 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@xe_exec_multi_queue@two-queues-close-fd-smem.html

  * igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#5007])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@many-stride-mmap-new-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#4943]) +4 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@xe_exec_system_allocator@many-stride-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-large-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#4943]) +7 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-large-mmap-new-huge.html

  * igt@xe_exec_threads@threads-many-queues:
    - shard-lnl:          NOTRUN -> [FAIL][92] ([Intel XE#7166])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@xe_exec_threads@threads-many-queues.html

  * igt@xe_exec_threads@threads-multi-queue-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#7138]) +3 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-rebind.html

  * igt@xe_multigpu_svm@mgpu-pagefault-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#6964])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html

  * igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#6964])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch.html

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

  * igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#4733]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html

  * igt@xe_query@multigpu-query-oa-units:
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#944])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@xe_query@multigpu-query-oa-units.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#4273])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@xe_sriov_flr@flr-vfs-parallel.html

  
#### Possible fixes ####

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [SKIP][100] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-bmg:          [SKIP][102] ([Intel XE#2291]) -> [PASS][103] +4 other tests pass
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-10/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][104] ([Intel XE#4633]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-bmg:          [FAIL][106] ([Intel XE#5299]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [SKIP][108] ([Intel XE#3009]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@kms_dp_aux_dev.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-10/igt@kms_dp_aux_dev.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [SKIP][110] ([Intel XE#2373]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-9/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-bmg:          [SKIP][112] ([Intel XE#2316]) -> [PASS][113] +15 other tests pass
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-7/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_flip@dpms-off-confusion-interruptible:
    - shard-lnl:          [INCOMPLETE][114] -> [PASS][115] +1 other test pass
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-lnl-6/igt@kms_flip@dpms-off-confusion-interruptible.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-3/igt@kms_flip@dpms-off-confusion-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [INCOMPLETE][116] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][117] +1 other test pass
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][118] ([Intel XE#1503]) -> [PASS][119]
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-8/igt@kms_hdr@invalid-hdr.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [SKIP][120] ([Intel XE#4596]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-10/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_rotation_crc@multiplane-rotation:
    - shard-lnl:          [FAIL][122] ([Intel XE#1874]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-lnl-3/igt@kms_rotation_crc@multiplane-rotation.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-2/igt@kms_rotation_crc@multiplane-rotation.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [SKIP][124] ([Intel XE#1435]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-9/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [FAIL][126] ([Intel XE#4459]) -> [PASS][127] +1 other test pass
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][128] ([Intel XE#6321]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
    - shard-lnl:          [FAIL][130] ([Intel XE#5625]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-lnl-6/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html

  
#### Warnings ####

  * igt@kms_content_protection@atomic-dpms:
    - shard-bmg:          [SKIP][132] ([Intel XE#2341]) -> [FAIL][133] ([Intel XE#1178] / [Intel XE#3304])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-9/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@atomic-hdcp14:
    - shard-bmg:          [SKIP][134] ([Intel XE#7194]) -> [FAIL][135] ([Intel XE#3304]) +1 other test fail
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_content_protection@atomic-hdcp14.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-1/igt@kms_content_protection@atomic-hdcp14.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          [FAIL][136] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][137] ([Intel XE#2341])
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-4/igt@kms_content_protection@srm.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_content_protection@srm.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][138] ([Intel XE#2312]) -> [SKIP][139] ([Intel XE#2311]) +18 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][140] ([Intel XE#2311]) -> [SKIP][141] ([Intel XE#2312]) +11 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][142] ([Intel XE#2312]) -> [SKIP][143] ([Intel XE#4141]) +8 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][144] ([Intel XE#4141]) -> [SKIP][145] ([Intel XE#2312]) +5 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
    - shard-bmg:          [SKIP][146] ([Intel XE#2312]) -> [SKIP][147] ([Intel XE#2313]) +20 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][148] ([Intel XE#2313]) -> [SKIP][149] ([Intel XE#2312]) +12 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][150] ([Intel XE#2426]) -> [FAIL][151] ([Intel XE#1729])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v4/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html

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

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [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#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [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#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [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#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
  [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
  [Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
  [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
  [Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166
  [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
  [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#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3 -> xe-pw-161100v4

  IGT_8737: 8737
  xe-4500-55e3e3aeecf80d9fd2536acd8ed785282be5a7b3: 55e3e3aeecf80d9fd2536acd8ed785282be5a7b3
  xe-pw-161100v4: 161100v4

== Logs ==

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

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

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

* [PATCH v3] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (11 preceding siblings ...)
  2026-02-05 15:38 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-05 16:15 ` Jia Yao
  2026-02-05 16:30   ` Matthew Auld
  2026-02-05 16:22 ` ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev5) Patchwork
                   ` (2 subsequent siblings)
  15 siblings, 1 reply; 21+ messages in thread
From: Jia Yao @ 2026-02-05 16:15 UTC (permalink / raw)
  To: intel-xe
  Cc: Jia Yao, Matthew Auld, stable, Matthew Brost, Shuicheng Lin,
	Himal Prasad Ghimiray, Thomas Hellström, Rodrigo Vivi

When user provides a bogus pat_index value through the madvise IOCTL, the
xe_pat_index_get_coh_mode() function performs an array access without
validating bounds. This allows a malicious user to trigger an out-of-bounds
kernel read from the xe->pat.table array.

The vulnerability exists because the validation in madvise_args_are_sane()
directly calls xe_pat_index_get_coh_mode(xe, args->pat_index.val) without
first checking if pat_index is within [0, xe->pat.n_entries).

Although xe_pat_index_get_coh_mode() has a WARN_ON to catch this in debug
builds, it still performs the unsafe array access in production kernels.

v2(Matthew Auld)
- Using array_index_nospec() to mitigate spectre attacks when the value
is used

v3(Matthew Auld)
- Put the declarations at the start of the block

Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Cc: <stable@vger.kernel.org> # v6.18+
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Shuicheng Lin <shuicheng.lin@intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Cc: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
---
 drivers/gpu/drm/xe/xe_vm_madvise.c | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
index add9a6ca2390..091e450b781c 100644
--- a/drivers/gpu/drm/xe/xe_vm_madvise.c
+++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
@@ -246,6 +246,10 @@ static int xe_vm_invalidate_madvise_range(struct xe_vm *vm, u64 start, u64 end)
 
 static bool madvise_args_are_sane(struct xe_device *xe, const struct drm_xe_madvise *args)
 {
+	s32 fd;
+	u16 pat_index;
+	u16 coh_mode;
+
 	if (XE_IOCTL_DBG(xe, !args))
 		return false;
 
@@ -261,7 +265,7 @@ static bool madvise_args_are_sane(struct xe_device *xe, const struct drm_xe_madv
 	switch (args->type) {
 	case DRM_XE_MEM_RANGE_ATTR_PREFERRED_LOC:
 	{
-		s32 fd = (s32)args->preferred_mem_loc.devmem_fd;
+		fd = (s32)args->preferred_mem_loc.devmem_fd;
 
 		if (XE_IOCTL_DBG(xe, fd < DRM_XE_PREFERRED_LOC_DEFAULT_SYSTEM))
 			return false;
@@ -291,8 +295,11 @@ static bool madvise_args_are_sane(struct xe_device *xe, const struct drm_xe_madv
 		break;
 	case DRM_XE_MEM_RANGE_ATTR_PAT:
 	{
-		u16 coh_mode = xe_pat_index_get_coh_mode(xe, args->pat_index.val);
+		if (XE_IOCTL_DBG(xe, args->pat_index.val >= xe->pat.n_entries))
+			return false;
 
+		pat_index = array_index_nospec(args->pat_index.val, xe->pat.n_entries);
+		coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
 		if (XE_IOCTL_DBG(xe, !coh_mode))
 			return false;
 
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev5)
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (12 preceding siblings ...)
  2026-02-05 16:15 ` [PATCH v3] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
@ 2026-02-05 16:22 ` Patchwork
  2026-02-05 17:03 ` ✓ Xe.CI.BAT: " Patchwork
  2026-02-06 15:19 ` ✗ Xe.CI.FULL: failure " Patchwork
  15 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-05 16:22 UTC (permalink / raw)
  To: Jia Yao; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev5)
URL   : https://patchwork.freedesktop.org/series/161100/
State : success

== Summary ==

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

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

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

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



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

* Re: [PATCH v3] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise
  2026-02-05 16:15 ` [PATCH v3] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
@ 2026-02-05 16:30   ` Matthew Auld
  0 siblings, 0 replies; 21+ messages in thread
From: Matthew Auld @ 2026-02-05 16:30 UTC (permalink / raw)
  To: Jia Yao, intel-xe
  Cc: stable, Matthew Brost, Shuicheng Lin, Himal Prasad Ghimiray,
	Thomas Hellström, Rodrigo Vivi

On 05/02/2026 16:15, Jia Yao wrote:
> When user provides a bogus pat_index value through the madvise IOCTL, the
> xe_pat_index_get_coh_mode() function performs an array access without
> validating bounds. This allows a malicious user to trigger an out-of-bounds
> kernel read from the xe->pat.table array.
> 
> The vulnerability exists because the validation in madvise_args_are_sane()
> directly calls xe_pat_index_get_coh_mode(xe, args->pat_index.val) without
> first checking if pat_index is within [0, xe->pat.n_entries).
> 
> Although xe_pat_index_get_coh_mode() has a WARN_ON to catch this in debug
> builds, it still performs the unsafe array access in production kernels.
> 
> v2(Matthew Auld)
> - Using array_index_nospec() to mitigate spectre attacks when the value
> is used
> 
> v3(Matthew Auld)
> - Put the declarations at the start of the block
> 
> Fixes: ada7486c5668 ("drm/xe: Implement madvise ioctl for xe")
> Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> Cc: <stable@vger.kernel.org> # v6.18+
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Shuicheng Lin <shuicheng.lin@intel.com>
> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
> Cc: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Jia Yao <jia.yao@intel.com>
> ---
>   drivers/gpu/drm/xe/xe_vm_madvise.c | 11 +++++++++--
>   1 file changed, 9 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c
> index add9a6ca2390..091e450b781c 100644
> --- a/drivers/gpu/drm/xe/xe_vm_madvise.c
> +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c
> @@ -246,6 +246,10 @@ static int xe_vm_invalidate_madvise_range(struct xe_vm *vm, u64 start, u64 end)
>   
>   static bool madvise_args_are_sane(struct xe_device *xe, const struct drm_xe_madvise *args)
>   {
> +	s32 fd;
> +	u16 pat_index;
> +	u16 coh_mode;
> +
>   	if (XE_IOCTL_DBG(xe, !args))
>   		return false;
>   
> @@ -261,7 +265,7 @@ static bool madvise_args_are_sane(struct xe_device *xe, const struct drm_xe_madv
>   	switch (args->type) {
>   	case DRM_XE_MEM_RANGE_ATTR_PREFERRED_LOC:
>   	{
> -		s32 fd = (s32)args->preferred_mem_loc.devmem_fd;

Nit: This was fine. The {} is also a block.

> +		fd = (s32)args->preferred_mem_loc.devmem_fd;
>   
>   		if (XE_IOCTL_DBG(xe, fd < DRM_XE_PREFERRED_LOC_DEFAULT_SYSTEM))
>   			return false;
> @@ -291,8 +295,11 @@ static bool madvise_args_are_sane(struct xe_device *xe, const struct drm_xe_madv
>   		break;
>   	case DRM_XE_MEM_RANGE_ATTR_PAT:
>   	{
> -		u16 coh_mode = xe_pat_index_get_coh_mode(xe, args->pat_index.val);

Same here, we could just add pat_index here. Anyway, this can be fixed 
up when merging, no need to resend.

> +		if (XE_IOCTL_DBG(xe, args->pat_index.val >= xe->pat.n_entries))
> +			return false;
>   
> +		pat_index = array_index_nospec(args->pat_index.val, xe->pat.n_entries);
> +		coh_mode = xe_pat_index_get_coh_mode(xe, pat_index);
>   		if (XE_IOCTL_DBG(xe, !coh_mode))
>   			return false;
>   


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

* ✓ Xe.CI.BAT: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev5)
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (13 preceding siblings ...)
  2026-02-05 16:22 ` ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev5) Patchwork
@ 2026-02-05 17:03 ` Patchwork
  2026-02-06 15:19 ` ✗ Xe.CI.FULL: failure " Patchwork
  15 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-05 17:03 UTC (permalink / raw)
  To: Jia Yao; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev5)
URL   : https://patchwork.freedesktop.org/series/161100/
State : success

== Summary ==

CI Bug Log - changes from xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f_BAT -> xe-pw-161100v5_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f -> xe-pw-161100v5

  IGT_8739: 8739
  xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f: 7fc41c69853312d5cb58afe7efd7943b6dfb092f
  xe-pw-161100v5: 161100v5

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev5)
  2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
                   ` (14 preceding siblings ...)
  2026-02-05 17:03 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-06 15:19 ` Patchwork
  15 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2026-02-06 15:19 UTC (permalink / raw)
  To: Jia Yao; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev5)
URL   : https://patchwork.freedesktop.org/series/161100/
State : failure

== Summary ==

CI Bug Log - changes from xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f_FULL -> xe-pw-161100v5_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@xe_exec_system_allocator@process-many-execqueues-free-nomemset:
    - shard-bmg:          [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-4/igt@xe_exec_system_allocator@process-many-execqueues-free-nomemset.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-8/igt@xe_exec_system_allocator@process-many-execqueues-free-nomemset.html

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

  Here are the changes found in xe-pw-161100v5_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][4] -> [INCOMPLETE][5] ([Intel XE#7084]) +1 other test incomplete
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#2887]) +2 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html

  * igt@kms_chamelium_hpd@dp-hpd-storm:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2252]) +1 other test skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-storm.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][8] ([Intel XE#1178] / [Intel XE#3304])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-10/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html

  * igt@kms_content_protection@suspend-resume:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#6705])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_content_protection@suspend-resume.html

  * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][10] ([Intel XE#6707])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-4/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-random-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2320])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_cursor_crc@cursor-random-64x21.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-bmg:          [PASS][12] -> [SKIP][13] ([Intel XE#2291]) +2 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2291])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-bmg:          [PASS][15] -> [SKIP][16] ([Intel XE#2316]) +7 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [PASS][17] -> [FAIL][18] ([Intel XE#301]) +1 other test fail
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#7178])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2311]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#4141])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2312]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2313]) +2 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#7061]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#1503])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_hdr@static-toggle:
    - shard-bmg:          [PASS][26] -> [SKIP][27] ([Intel XE#1503])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-8/igt@kms_hdr@static-toggle.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_hdr@static-toggle.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#6911])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-3:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#7130]) +3 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-3.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#7131])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-5.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#7111] / [Intel XE#7131])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [PASS][33] -> [SKIP][34] ([Intel XE#4596])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2391])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_psr@psr-sprite-render:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_psr@psr-sprite-render.html

  * igt@xe_eudebug@basic-vm-access-parameters:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#4837]) +2 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@xe_eudebug@basic-vm-access-parameters.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#2322])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#7136]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind.html

  * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#6874]) +5 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#4943]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge-nomemset.html

  * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#7138]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate-race.html

  * igt@xe_multigpu_svm@mgpu-coherency-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#6964])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@xe_multigpu_svm@mgpu-coherency-prefetch.html

  * igt@xe_survivability@runtime-survivability:
    - shard-bmg:          [PASS][44] -> [DMESG-WARN][45] ([Intel XE#6627])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-2/igt@xe_survivability@runtime-survivability.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@xe_survivability@runtime-survivability.html

  * igt@xe_waitfence@engine:
    - shard-bmg:          [PASS][46] -> [FAIL][47] ([Intel XE#6519])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-6/igt@xe_waitfence@engine.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-4/igt@xe_waitfence@engine.html

  
#### Possible fixes ####

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [SKIP][48] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-10/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
    - shard-bmg:          [SKIP][50] ([Intel XE#2291]) -> [PASS][51] +4 other tests pass
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][52] ([Intel XE#6715]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [SKIP][54] ([Intel XE#4302]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [SKIP][56] ([Intel XE#2316]) -> [PASS][57] +4 other tests pass
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][58] ([Intel XE#1503]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-3/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-bmg:          [SKIP][60] ([Intel XE#7086]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [SKIP][62] ([Intel XE#1435]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_vrr@negative-basic:
    - shard-bmg:          [SKIP][64] ([Intel XE#1499]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-6/igt@kms_vrr@negative-basic.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-7/igt@kms_vrr@negative-basic.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][66] ([Intel XE#6321]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_exec_system_allocator@many-malloc-busy-nomemset:
    - shard-bmg:          [INCOMPLETE][68] ([Intel XE#2594]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-9/igt@xe_exec_system_allocator@many-malloc-busy-nomemset.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@xe_exec_system_allocator@many-malloc-busy-nomemset.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
    - shard-lnl:          [FAIL][70] ([Intel XE#5625]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-lnl-6/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html

  
#### Warnings ####

  * igt@kms_content_protection@atomic-dpms:
    - shard-bmg:          [SKIP][72] ([Intel XE#2341]) -> [FAIL][73] ([Intel XE#1178] / [Intel XE#3304])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-10/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][74] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][75] ([Intel XE#2341])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-1/igt@kms_content_protection@legacy.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-6/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@uevent-hdcp14:
    - shard-bmg:          [SKIP][76] ([Intel XE#7194]) -> [FAIL][77] ([Intel XE#6707])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-6/igt@kms_content_protection@uevent-hdcp14.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-4/igt@kms_content_protection@uevent-hdcp14.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][78] ([Intel XE#4141]) -> [SKIP][79] ([Intel XE#2312]) +5 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][80] ([Intel XE#2312]) -> [SKIP][81] ([Intel XE#4141]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-4/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][82] ([Intel XE#2312]) -> [SKIP][83] ([Intel XE#2311]) +11 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-bmg:          [SKIP][84] ([Intel XE#2311]) -> [SKIP][85] ([Intel XE#2312]) +14 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][86] ([Intel XE#2313]) -> [SKIP][87] ([Intel XE#2312]) +15 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][88] ([Intel XE#2312]) -> [SKIP][89] ([Intel XE#2313]) +10 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][90] ([Intel XE#3544]) -> [SKIP][91] ([Intel XE#3374] / [Intel XE#3544])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          [SKIP][92] ([Intel XE#4596]) -> [SKIP][93] ([Intel XE#5021])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-bmg:          [ABORT][94] ([Intel XE#5466] / [Intel XE#6652]) -> [ABORT][95] ([Intel XE#5466])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f/shard-bmg-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161100v5/shard-bmg-10/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
  [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
  [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#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [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#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
  [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
  [Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
  [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
  [Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194


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

  * Linux: xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f -> xe-pw-161100v5

  IGT_8739: 8739
  xe-4508-7fc41c69853312d5cb58afe7efd7943b6dfb092f: 7fc41c69853312d5cb58afe7efd7943b6dfb092f
  xe-pw-161100v5: 161100v5

== Logs ==

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

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

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

end of thread, other threads:[~2026-02-06 15:19 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-03 17:20 [PATCH] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
2026-02-03 17:27 ` ✓ CI.KUnit: success for " Patchwork
2026-02-03 17:29 ` [PATCH] " Matthew Auld
2026-02-03 18:02 ` ✗ Xe.CI.BAT: failure for " Patchwork
2026-02-03 21:06 ` [PATCH v2] " Jia Yao
2026-02-04 15:44   ` Matthew Auld
2026-02-04 18:15     ` Yao, Jia
2026-02-05 10:21       ` Matthew Auld
2026-02-03 21:14 ` ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev2) Patchwork
2026-02-03 21:47 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-02-03 22:33 ` ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev3) Patchwork
2026-02-03 23:06 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-02-04 13:05 ` ✗ Xe.CI.FULL: " Patchwork
2026-02-05  0:10 ` ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev4) Patchwork
2026-02-05  0:43 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-05 15:38 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-05 16:15 ` [PATCH v3] drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise Jia Yao
2026-02-05 16:30   ` Matthew Auld
2026-02-05 16:22 ` ✓ CI.KUnit: success for drm/xe: Add bounds check on pat_index to prevent OOB kernel read in madvise (rev5) Patchwork
2026-02-05 17:03 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-06 15:19 ` ✗ 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