public inbox for intel-xe@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked
@ 2026-04-09  0:34 Shuicheng Lin
  2026-04-09  0:44 ` ✗ CI.checkpatch: warning for " Patchwork
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Shuicheng Lin @ 2026-04-09  0:34 UTC (permalink / raw)
  To: intel-xe; +Cc: Shuicheng Lin, Matthew Brost

xe_exec_queue_tlb_inval_last_fence_put_unlocked() uses q->vm->xe as the
first argument to xe_assert(). This function is called unconditionally
from xe_exec_queue_destroy() for all queues, including kernel queues
that have q->vm == NULL (e.g., queues created during GT init in
xe_gt_record_default_lrcs() with vm=NULL).

While current compilers optimize away the q->vm->xe dereference (even
in CONFIG_DRM_XE_DEBUG=y builds, the compiler pushes the dereference
into the WARN branch that is only taken when the assert condition is
false), the code is semantically incorrect and constitutes undefined
behavior in the C abstract machine for the NULL pointer case.

Use gt_to_xe(q->gt) instead, which is always valid for any exec queue.
This is consistent with how xe_exec_queue_destroy() itself obtains the
xe_device pointer in its own xe_assert at the top of the function.

Fixes: b2d7ec41f2a3 ("drm/xe: Attach last fence to TLB invalidation job queues")
Cc: Matthew Brost <matthew.brost@intel.com>
Assisted-by: Claude:claude-opus-4.6
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
---
 drivers/gpu/drm/xe/xe_exec_queue.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index 4603ff08d860..071b8c41df43 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -1763,7 +1763,7 @@ void xe_exec_queue_tlb_inval_last_fence_put(struct xe_exec_queue *q,
 void xe_exec_queue_tlb_inval_last_fence_put_unlocked(struct xe_exec_queue *q,
 						     unsigned int type)
 {
-	xe_assert(q->vm->xe, type == XE_EXEC_QUEUE_TLB_INVAL_MEDIA_GT ||
+	xe_assert(gt_to_xe(q->gt), type == XE_EXEC_QUEUE_TLB_INVAL_MEDIA_GT ||
 		  type == XE_EXEC_QUEUE_TLB_INVAL_PRIMARY_GT);
 
 	dma_fence_put(q->tlb_inval[type].last_fence);
-- 
2.43.0


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

* ✗ CI.checkpatch: warning for drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked
  2026-04-09  0:34 [PATCH] drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked Shuicheng Lin
@ 2026-04-09  0:44 ` Patchwork
  2026-04-09  0:45 ` ✗ CI.KUnit: failure " Patchwork
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-04-09  0:44 UTC (permalink / raw)
  To: Shuicheng Lin; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked
URL   : https://patchwork.freedesktop.org/series/164582/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 49563b7509ba8e613905a4135cbfe0bfbe330a2c
Author: Shuicheng Lin <shuicheng.lin@intel.com>
Date:   Thu Apr 9 00:34:49 2026 +0000

    drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked
    
    xe_exec_queue_tlb_inval_last_fence_put_unlocked() uses q->vm->xe as the
    first argument to xe_assert(). This function is called unconditionally
    from xe_exec_queue_destroy() for all queues, including kernel queues
    that have q->vm == NULL (e.g., queues created during GT init in
    xe_gt_record_default_lrcs() with vm=NULL).
    
    While current compilers optimize away the q->vm->xe dereference (even
    in CONFIG_DRM_XE_DEBUG=y builds, the compiler pushes the dereference
    into the WARN branch that is only taken when the assert condition is
    false), the code is semantically incorrect and constitutes undefined
    behavior in the C abstract machine for the NULL pointer case.
    
    Use gt_to_xe(q->gt) instead, which is always valid for any exec queue.
    This is consistent with how xe_exec_queue_destroy() itself obtains the
    xe_device pointer in its own xe_assert at the top of the function.
    
    Fixes: b2d7ec41f2a3 ("drm/xe: Attach last fence to TLB invalidation job queues")
    Cc: Matthew Brost <matthew.brost@intel.com>
    Assisted-by: Claude:claude-opus-4.6
    Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
+ /mt/dim checkpatch 08037efa91c349ee17b62ddd1908a846d7abd917 drm-intel
49563b7509ba drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked
-:25: WARNING:BAD_SIGN_OFF: Non-standard signature: Assisted-by:
#25: 
Assisted-by: Claude:claude-opus-4.6

-:25: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Claude:claude-opus-4.6'
#25: 
Assisted-by: Claude:claude-opus-4.6

total: 1 errors, 1 warnings, 0 checks, 8 lines checked



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

* ✗ CI.KUnit: failure for drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked
  2026-04-09  0:34 [PATCH] drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked Shuicheng Lin
  2026-04-09  0:44 ` ✗ CI.checkpatch: warning for " Patchwork
@ 2026-04-09  0:45 ` Patchwork
  2026-04-09  0:47 ` [PATCH] " Matthew Brost
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-04-09  0:45 UTC (permalink / raw)
  To: Shuicheng Lin; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked
URL   : https://patchwork.freedesktop.org/series/164582/
State : failure

== Summary ==

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

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

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
stty: 'standard input': Inappropriate ioctl for device
[00:45:12] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:45:14] 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:45:23] Starting KUnit Kernel (1/1)...
[00:45:23] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:45:23] ================= ttm_device (5 subtests) ==================
[00:45:23] [PASSED] ttm_device_init_basic
[00:45:23] [PASSED] ttm_device_init_multiple
[00:45:23] [PASSED] ttm_device_fini_basic
[00:45:23] [PASSED] ttm_device_init_no_vma_man
[00:45:23] ================== ttm_device_init_pools  ==================
[00:45:23] [PASSED] No DMA allocations, no DMA32 required
[00:45:23] # ttm_device_init_pools: ASSERTION FAILED at drivers/gpu/drm/ttm/tests/ttm_device_test.c:178
[00:45:23] Expected !list_lru_count(&pt.pages) to be false, but is true
[00:45:23] [FAILED] DMA allocations, DMA32 required
[00:45:23] [PASSED] No DMA allocations, DMA32 required
[00:45:23]     # ttm_device_init_pools: ASSERTION FAILED at drivers/gpu/drm/ttm/tests/ttm_device_test.c:178
[00:45:23]     Expected !list_lru_count(&pt.pages) to be false, but is true
[00:45:23] ------------[ cut here ]------------
[00:45:23] WARNING: lib/refcount.c:28 at devres_release_all+0xaa/0x100, CPU#0: kunit_try_catch/46
[00:45:23] refcount_t: underflow; use-after-free.
[00:45:23] CPU: 0 UID: 0 PID: 46 Comm: kunit_try_catch Tainted: G        W        N  7.0.0-rc7-g49563b7509ba #3 VOLUNTARY
[00:45:23] Tainted: [W]=WARN, [N]=TEST
[00:45:23] Stack:
[00:45:23]  6044ed8b 00000000 00000000 00000001
[00:45:23]  ffffff00 6044ed8b 6032367a 00000009
[00:45:23]  0000001c 60043e88 6002381c b78cbd40
[00:45:23] Call Trace:
[00:45:23]  [<6032367a>] ? devres_release_all+0xaa/0x100
[00:45:23]  [<60043e88>] ? dump_stack_lvl+0x5e/0x7a
[00:45:23]  [<6002381c>] ? _printk+0x0/0x65
[00:45:23]  [<6001f09f>] ? __warn.cold+0x79/0x11f
[00:45:23]  [<6001f1d9>] ? warn_slowpath_fmt+0x94/0xa1
[00:45:23]  [<601ef1a0>] ? kernfs_free_rcu+0x0/0x70
[00:45:23]  [<60052e36>] ? um_set_signals+0x36/0x60
[00:45:23]  [<600c5a42>] ? call_rcu+0x52/0x90
[00:45:23]  [<6001f145>] ? warn_slowpath_fmt+0x0/0xa1
[00:45:23]  [<60147f50>] ? kfree+0x0/0x250
[00:45:23]  [<6032367a>] ? devres_release_all+0xaa/0x100
[00:45:23]  [<60396bb0>] ? mutex_unlock+0x0/0x30
[00:45:23]  [<6031c3c0>] ? bus_notify+0x0/0x60
[00:45:23]  [<60396bb0>] ? mutex_unlock+0x0/0x30
[00:45:23]  [<60398620>] ? mutex_lock+0x0/0x40
[00:45:23]  [<6031ca24>] ? device_unbind_cleanup+0x14/0xb0
[00:45:23]  [<6031e1f6>] ? device_release_driver_internal+0x256/0x2b0
[00:45:23]  [<60372210>] ? kobject_put+0x0/0x150
[00:45:23]  [<601f3d40>] ? sysfs_remove_file_ns+0x0/0x20
[00:45:23]  [<6031c00f>] ? bus_remove_device+0x10f/0x1a0
[00:45:23]  [<601f3d40>] ? sysfs_remove_file_ns+0x0/0x20
[00:45:23]  [<601f17b8>] ? kernfs_remove_by_name_ns+0x98/0x130
[00:45:23]  [<60315a8c>] ? device_del+0x1bc/0x600
[00:45:23]  [<60052e00>] ? um_set_signals+0x0/0x60
[00:45:23]  [<6025b2a0>] ? device_unregister_wrapper+0x0/0x10
[00:45:23]  [<60052e00>] ? um_set_signals+0x0/0x60
[00:45:23]  [<60315ee4>] ? device_unregister+0x14/0x40
[00:45:23]  [<60257e66>] ? kunit_release_action+0xf6/0x170
[00:45:23]  [<60257d70>] ? kunit_release_action+0x0/0x170
[00:45:23]  [<6025b2e2>] ? kunit_device_unregister+0x32/0x80
[00:45:23]  [<60259890>] ? kunit_generic_run_threadfn_adapter+0x0/0x30
[00:45:23]  [<6025748e>] ? kunit_try_run_case_cleanup+0x2e/0x40
[00:45:23]  [<602598a6>] ? kunit_generic_run_threadfn_adapter+0x16/0x30
[00:45:23]  [<60081e36>] ? kthread+0xe6/0x150
[00:45:23]  [<60046435>] ? new_thread_handler+0x45/0x60
[00:45:23] ---[ end trace 0000000000000000 ]---
[00:45:23] [FAILED] DMA allocations, no DMA32 required
[00:45:23] # ttm_device_init_pools: pass:2 fail:2 skip:0 total:4
[00:45:23] ============== [FAILED] ttm_device_init_pools ==============
[00:45:23]     # module: ttm_device_test
[00:45:23] # ttm_device: pass:4 fail:1 skip:0 total:5
[00:45:23] # Totals: pass:6 fail:2 skip:0 total:8
[00:45:23] =================== [FAILED] ttm_device ====================
[00:45:23] ================== ttm_pool (8 subtests) ===================
[00:45:23] ================== ttm_pool_alloc_basic  ===================
[00:45:23] [PASSED] One page
[00:45:23] [PASSED] More than one page
[00:45:23] [PASSED] Above the allocation limit
[00:45:23] [PASSED] One page, with coherent DMA mappings enabled
[00:45:23] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:45:23] ============== [PASSED] ttm_pool_alloc_basic ===============
[00:45:23] ============== ttm_pool_alloc_basic_dma_addr  ==============
[00:45:23] [PASSED] One page
[00:45:23] [PASSED] More than one page
[00:45:23] [PASSED] Above the allocation limit
[00:45:23] [PASSED] One page, with coherent DMA mappings enabled
[00:45:23] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:45:23] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[00:45:23] [PASSED] ttm_pool_alloc_order_caching_match
[00:45:23] [PASSED] ttm_pool_alloc_caching_mismatch
[00:45:23] [PASSED] ttm_pool_alloc_order_mismatch
[00:45:23] [PASSED] ttm_pool_free_dma_alloc
[00:45:24] [ERROR] Test: ttm_pool: missing expected subtest!
[00:45:24] 
[00:45:24] Pid: 75, comm: kunit_try_catch Tainted: G        W        N  7.0.0-rc7-g49563b7509ba
[00:45:24] RIP: 0033:list_lru_count_node+0xe/0x20
[00:45:24] RSP: 00000000b78cbed8  EFLAGS: 00010246
[00:45:24] RAX: 0000000000000000 RBX: 00000000b7803c90 RCX: 0000000077e4c7d8
[00:45:24] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000077c86880
[00:45:24] RBP: 0000000077c86800 R08: 00000000b671bc28 R09: 0000000077c50c80
[00:45:24] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000077c50c80
[00:45:24] R13: 0000000060440770 R14: 000000006010eb50 R15: 0000000077c86880
[00:45:24] Kernel panic - not syncing: Segfault with no mm
[00:45:24] [CRASHED] 
[00:45:24] [ERROR] Test: ttm_pool: missing expected subtest!
[00:45:24] [CRASHED] 
[00:45:24] [ERROR] Test: ttm_pool: missing subtest result line!
[00:45:24] # module: ttm_pool_test
[00:45:24] ==================== [CRASHED] ttm_pool ====================
[00:45:24] [ERROR] Test: main: missing expected subtest!
[00:45:24] [CRASHED] 
[00:45:24] [ERROR] Test: main: missing expected subtest!
[00:45:24] [CRASHED] 
[00:45:24] [ERROR] Test: main: missing expected subtest!
[00:45:24] [CRASHED] 
[00:45:24] [ERROR] Test: main: missing expected subtest!
[00:45:24] [CRASHED] 
[00:45:24] ============================================================
[00:45:24] Testing complete. Ran 28 tests: passed: 20, failed: 2, crashed: 6, errors: 7
The kernel seems to have crashed; you can decode the stack traces with:
$ scripts/decode_stacktrace.sh .kunit/vmlinux .kunit < .kunit/test.log | tee .kunit/decoded.log | /kernel/tools/testing/kunit/kunit.py parse
[00:45:24] Elapsed time: 11.392s total, 1.682s configuring, 9.443s building, 0.266s running

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



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

* Re: [PATCH] drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked
  2026-04-09  0:34 [PATCH] drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked Shuicheng Lin
  2026-04-09  0:44 ` ✗ CI.checkpatch: warning for " Patchwork
  2026-04-09  0:45 ` ✗ CI.KUnit: failure " Patchwork
@ 2026-04-09  0:47 ` Matthew Brost
  2026-04-10  1:28 ` ✗ CI.checkpatch: warning for drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked (rev2) Patchwork
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Matthew Brost @ 2026-04-09  0:47 UTC (permalink / raw)
  To: Shuicheng Lin; +Cc: intel-xe

On Thu, Apr 09, 2026 at 12:34:49AM +0000, Shuicheng Lin wrote:
> xe_exec_queue_tlb_inval_last_fence_put_unlocked() uses q->vm->xe as the
> first argument to xe_assert(). This function is called unconditionally
> from xe_exec_queue_destroy() for all queues, including kernel queues
> that have q->vm == NULL (e.g., queues created during GT init in
> xe_gt_record_default_lrcs() with vm=NULL).
> 
> While current compilers optimize away the q->vm->xe dereference (even
> in CONFIG_DRM_XE_DEBUG=y builds, the compiler pushes the dereference
> into the WARN branch that is only taken when the assert condition is
> false), the code is semantically incorrect and constitutes undefined
> behavior in the C abstract machine for the NULL pointer case.
> 
> Use gt_to_xe(q->gt) instead, which is always valid for any exec queue.
> This is consistent with how xe_exec_queue_destroy() itself obtains the
> xe_device pointer in its own xe_assert at the top of the function.
> 
> Fixes: b2d7ec41f2a3 ("drm/xe: Attach last fence to TLB invalidation job queues")
> Cc: Matthew Brost <matthew.brost@intel.com>

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

> Assisted-by: Claude:claude-opus-4.6
> Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_exec_queue.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
> index 4603ff08d860..071b8c41df43 100644
> --- a/drivers/gpu/drm/xe/xe_exec_queue.c
> +++ b/drivers/gpu/drm/xe/xe_exec_queue.c
> @@ -1763,7 +1763,7 @@ void xe_exec_queue_tlb_inval_last_fence_put(struct xe_exec_queue *q,
>  void xe_exec_queue_tlb_inval_last_fence_put_unlocked(struct xe_exec_queue *q,
>  						     unsigned int type)
>  {
> -	xe_assert(q->vm->xe, type == XE_EXEC_QUEUE_TLB_INVAL_MEDIA_GT ||
> +	xe_assert(gt_to_xe(q->gt), type == XE_EXEC_QUEUE_TLB_INVAL_MEDIA_GT ||
>  		  type == XE_EXEC_QUEUE_TLB_INVAL_PRIMARY_GT);
>  
>  	dma_fence_put(q->tlb_inval[type].last_fence);
> -- 
> 2.43.0
> 

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

* ✗ CI.checkpatch: warning for drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked (rev2)
  2026-04-09  0:34 [PATCH] drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked Shuicheng Lin
                   ` (2 preceding siblings ...)
  2026-04-09  0:47 ` [PATCH] " Matthew Brost
@ 2026-04-10  1:28 ` Patchwork
  2026-04-10  1:30 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-04-10  1:28 UTC (permalink / raw)
  To: Shuicheng Lin; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked (rev2)
URL   : https://patchwork.freedesktop.org/series/164582/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 277a3323fb1a64ceed4484dc8f3011dae35c04f7
Author: Shuicheng Lin <shuicheng.lin@intel.com>
Date:   Thu Apr 9 00:34:49 2026 +0000

    drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked
    
    xe_exec_queue_tlb_inval_last_fence_put_unlocked() uses q->vm->xe as the
    first argument to xe_assert(). This function is called unconditionally
    from xe_exec_queue_destroy() for all queues, including kernel queues
    that have q->vm == NULL (e.g., queues created during GT init in
    xe_gt_record_default_lrcs() with vm=NULL).
    
    While current compilers optimize away the q->vm->xe dereference (even
    in CONFIG_DRM_XE_DEBUG=y builds, the compiler pushes the dereference
    into the WARN branch that is only taken when the assert condition is
    false), the code is semantically incorrect and constitutes undefined
    behavior in the C abstract machine for the NULL pointer case.
    
    Use gt_to_xe(q->gt) instead, which is always valid for any exec queue.
    This is consistent with how xe_exec_queue_destroy() itself obtains the
    xe_device pointer in its own xe_assert at the top of the function.
    
    Fixes: b2d7ec41f2a3 ("drm/xe: Attach last fence to TLB invalidation job queues")
    Cc: Matthew Brost <matthew.brost@intel.com>
    Assisted-by: Claude:claude-opus-4.6
    Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
    Reviewed-by: Matthew Brost <matthew.brost@intel.com>
+ /mt/dim checkpatch 97d8833ffba6bd3d6aaa51169069620ac17a2e37 drm-intel
277a3323fb1a drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked
-:25: WARNING:BAD_SIGN_OFF: Non-standard signature: Assisted-by:
#25: 
Assisted-by: Claude:claude-opus-4.6

-:25: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Claude:claude-opus-4.6'
#25: 
Assisted-by: Claude:claude-opus-4.6

total: 1 errors, 1 warnings, 0 checks, 8 lines checked



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

* ✓ CI.KUnit: success for drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked (rev2)
  2026-04-09  0:34 [PATCH] drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked Shuicheng Lin
                   ` (3 preceding siblings ...)
  2026-04-10  1:28 ` ✗ CI.checkpatch: warning for drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked (rev2) Patchwork
@ 2026-04-10  1:30 ` Patchwork
  2026-04-10  2:29 ` ✓ Xe.CI.BAT: " Patchwork
  2026-04-10  6:04 ` ✓ Xe.CI.FULL: " Patchwork
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-04-10  1:30 UTC (permalink / raw)
  To: Shuicheng Lin; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked (rev2)
URL   : https://patchwork.freedesktop.org/series/164582/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked (rev2)
  2026-04-09  0:34 [PATCH] drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked Shuicheng Lin
                   ` (4 preceding siblings ...)
  2026-04-10  1:30 ` ✓ CI.KUnit: success " Patchwork
@ 2026-04-10  2:29 ` Patchwork
  2026-04-10  6:04 ` ✓ Xe.CI.FULL: " Patchwork
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-04-10  2:29 UTC (permalink / raw)
  To: Shuicheng Lin; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked (rev2)
URL   : https://patchwork.freedesktop.org/series/164582/
State : success

== Summary ==

CI Bug Log - changes from xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37_BAT -> xe-pw-164582v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (14 -> 14)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-bmg-2:          [PASS][1] -> [ABORT][2] ([Intel XE#7249] / [Intel XE#7578])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [PASS][3] -> [FAIL][4] ([Intel XE#6520])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/bat-dg2-oem2/igt@xe_waitfence@reltime.html

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


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

  * Linux: xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37 -> xe-pw-164582v2

  IGT_8852: 8852
  xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37: 97d8833ffba6bd3d6aaa51169069620ac17a2e37
  xe-pw-164582v2: 164582v2

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked (rev2)
  2026-04-09  0:34 [PATCH] drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked Shuicheng Lin
                   ` (5 preceding siblings ...)
  2026-04-10  2:29 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-10  6:04 ` Patchwork
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-04-10  6:04 UTC (permalink / raw)
  To: Shuicheng Lin; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked (rev2)
URL   : https://patchwork.freedesktop.org/series/164582/
State : success

== Summary ==

CI Bug Log - changes from xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37_FULL -> xe-pw-164582v2_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-write:
    - shard-bmg:          NOTRUN -> [FAIL][1] ([Intel XE#7445])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-7/igt@intel_hwmon@hwmon-write.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][2] ([Intel XE#1124]) +2 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][3] ([Intel XE#2328] / [Intel XE#7367])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb.html

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

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

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#2887]) +5 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html

  * igt@kms_chamelium_edid@dp-mode-timings:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2252]) +1 other test skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@kms_chamelium_edid@dp-mode-timings.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2390] / [Intel XE#6974])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_cursor_crc@cursor-rapid-movement-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#2320])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html

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

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#7178] / [Intel XE#7351])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#2311]) +8 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#4141]) +5 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2352] / [Intel XE#7399])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2313]) +10 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [PASS][17] -> [SKIP][18] ([Intel XE#1503])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-10/igt@kms_hdr@invalid-hdr.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#7283])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html

  * igt@kms_plane_lowres@tiling-4@pipe-a-dp-2:
    - shard-bmg:          [PASS][20] -> [ABORT][21] ([Intel XE#7200]) +1 other test abort
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-5/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-3/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html

  * igt@kms_plane_lowres@tiling-4@pipe-d-hdmi-a-3:
    - shard-bmg:          [PASS][22] -> [DMESG-WARN][23] ([Intel XE#5681] / [Intel XE#7200]) +6 other tests dmesg-warn
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-5/igt@kms_plane_lowres@tiling-4@pipe-d-hdmi-a-3.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-3/igt@kms_plane_lowres@tiling-4@pipe-d-hdmi-a-3.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2393])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#1489])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2387] / [Intel XE#7429])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html

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

  * igt@kms_rotation_crc@multiplane-rotation-cropping-top:
    - shard-bmg:          [PASS][28] -> [FAIL][29] ([Intel XE#7589])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#6503])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][32] -> [FAIL][33] ([Intel XE#4459]) +1 other test fail
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2168] / [Intel XE#7444])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-7/igt@kms_vrr@lobf.html

  * igt@xe_eudebug@connect-user:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#7636]) +4 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@xe_eudebug@connect-user.html

  * igt@xe_evict@evict-small-multi-queue-priority-cm:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#7140])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-7/igt@xe_evict@evict-small-multi-queue-priority-cm.html

  * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#7136]) +3 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html

  * igt@xe_exec_multi_queue@many-queues-dyn-priority-smem:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#6874]) +9 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@xe_exec_multi_queue@many-queues-dyn-priority-smem.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-nomemset:
    - shard-bmg:          [PASS][40] -> [DMESG-FAIL][41] ([Intel XE#5545] / [Intel XE#6652])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-nomemset.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-mlock:
    - shard-bmg:          [PASS][42] -> [SKIP][43] ([Intel XE#6703]) +147 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-mlock.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-mlock.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2229])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_multigpu_svm@mgpu-migration-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#6964])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@xe_multigpu_svm@mgpu-migration-prefetch.html

  * igt@xe_pat@l2-flush-opt-svm-pat-restrict:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#7590])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-8/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html

  
#### Possible fixes ####

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-bmg:          [FAIL][47] ([Intel XE#3149] / [Intel XE#3321]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][49] ([Intel XE#3149]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html

  * igt@kms_setmode@basic@pipe-b-edp-1:
    - shard-lnl:          [FAIL][51] ([Intel XE#6361]) -> [PASS][52] +2 other tests pass
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html

  
#### Warnings ####

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          [SKIP][53] ([Intel XE#2327]) -> [SKIP][54] ([Intel XE#6703]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_big_fb@linear-32bpp-rotate-270.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][55] ([Intel XE#1124]) -> [SKIP][56] ([Intel XE#6703]) +2 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_bw@linear-tiling-1-displays-3840x2160p:
    - shard-bmg:          [SKIP][57] ([Intel XE#367] / [Intel XE#7354]) -> [SKIP][58] ([Intel XE#6703])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs:
    - shard-bmg:          [SKIP][59] ([Intel XE#2887]) -> [SKIP][60] ([Intel XE#6557] / [Intel XE#6703])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
    - shard-bmg:          [SKIP][61] ([Intel XE#2887]) -> [SKIP][62] ([Intel XE#6703]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-bmg:          [SKIP][63] ([Intel XE#3432]) -> [SKIP][64] ([Intel XE#6703])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-bmg:          [SKIP][65] ([Intel XE#2252]) -> [SKIP][66] ([Intel XE#6703]) +2 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_chamelium_audio@hdmi-audio-edid.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [FAIL][67] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][68] ([Intel XE#6703])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_content_protection@uevent.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-bmg:          [SKIP][69] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][70] ([Intel XE#6703])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_cursor_crc@cursor-random-512x170.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-bmg:          [SKIP][71] ([Intel XE#4354] / [Intel XE#5882]) -> [SKIP][72] ([Intel XE#6703])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_dp_link_training@non-uhbr-mst.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-bmg:          [SKIP][73] ([Intel XE#2244]) -> [SKIP][74] ([Intel XE#6703])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-bmg:          [SKIP][75] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][76] ([Intel XE#6703])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
    - shard-bmg:          [SKIP][77] ([Intel XE#7179]) -> [SKIP][78] ([Intel XE#6703])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][79] ([Intel XE#4141]) -> [SKIP][80] ([Intel XE#6703]) +2 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][81] ([Intel XE#2311]) -> [SKIP][82] ([Intel XE#6703]) +7 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][83] ([Intel XE#2313]) -> [SKIP][84] ([Intel XE#6703]) +7 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt:
    - shard-bmg:          [SKIP][85] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][86] ([Intel XE#6703])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][87] ([Intel XE#3544]) -> [SKIP][88] ([Intel XE#3374] / [Intel XE#3544])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
    - shard-bmg:          [SKIP][89] ([Intel XE#1489]) -> [SKIP][90] ([Intel XE#6703]) +2 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html

  * igt@kms_psr@pr-no-drrs:
    - shard-bmg:          [SKIP][91] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][92] ([Intel XE#6703]) +1 other test skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_psr@pr-no-drrs.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_psr@pr-no-drrs.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-bmg:          [SKIP][93] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][94] ([Intel XE#6703])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-90.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_sharpness_filter@filter-scaler-downscale:
    - shard-bmg:          [SKIP][95] ([Intel XE#6503]) -> [SKIP][96] ([Intel XE#6703])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_sharpness_filter@filter-scaler-downscale.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_sharpness_filter@filter-scaler-downscale.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-bmg:          [SKIP][97] ([Intel XE#2450] / [Intel XE#5857]) -> [SKIP][98] ([Intel XE#6557] / [Intel XE#6703])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@kms_tv_load_detect@load-detect.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html

  * igt@xe_eudebug@basic-read-event:
    - shard-bmg:          [SKIP][99] ([Intel XE#7636]) -> [SKIP][100] ([Intel XE#6703]) +1 other test skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@xe_eudebug@basic-read-event.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@xe_eudebug@basic-read-event.html

  * igt@xe_exec_basic@multigpu-once-null-defer-mmap:
    - shard-bmg:          [SKIP][101] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][102] ([Intel XE#6703]) +2 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html

  * igt@xe_exec_fault_mode@many-multi-queue-invalid-fault:
    - shard-bmg:          [SKIP][103] ([Intel XE#7136]) -> [SKIP][104] ([Intel XE#6703]) +3 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@xe_exec_fault_mode@many-multi-queue-invalid-fault.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-invalid-fault.html

  * igt@xe_exec_multi_queue@many-execs-basic-smem:
    - shard-bmg:          [SKIP][105] ([Intel XE#6874]) -> [SKIP][106] ([Intel XE#6703]) +7 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@xe_exec_multi_queue@many-execs-basic-smem.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@xe_exec_multi_queue@many-execs-basic-smem.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr:
    - shard-bmg:          [SKIP][107] ([Intel XE#7138]) -> [SKIP][108] ([Intel XE#6703]) +2 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html

  * igt@xe_pat@pat-sw-hw-compare:
    - shard-bmg:          [FAIL][109] ([Intel XE#7695]) -> [SKIP][110] ([Intel XE#6703])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@xe_pat@pat-sw-hw-compare.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@xe_pat@pat-sw-hw-compare.html

  * igt@xe_query@multigpu-query-gt-list:
    - shard-bmg:          [SKIP][111] ([Intel XE#944]) -> [SKIP][112] ([Intel XE#6703])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37/shard-bmg-4/igt@xe_query@multigpu-query-gt-list.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164582v2/shard-bmg-2/igt@xe_query@multigpu-query-gt-list.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [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#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5681
  [Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
  [Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
  [Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
  [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [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#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#7200]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7200
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
  [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
  [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
  [Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
  [Intel XE#7589]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7589
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37 -> xe-pw-164582v2

  IGT_8852: 8852
  xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37: 97d8833ffba6bd3d6aaa51169069620ac17a2e37
  xe-pw-164582v2: 164582v2

== Logs ==

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

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

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

end of thread, other threads:[~2026-04-10  6:04 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-09  0:34 [PATCH] drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked Shuicheng Lin
2026-04-09  0:44 ` ✗ CI.checkpatch: warning for " Patchwork
2026-04-09  0:45 ` ✗ CI.KUnit: failure " Patchwork
2026-04-09  0:47 ` [PATCH] " Matthew Brost
2026-04-10  1:28 ` ✗ CI.checkpatch: warning for drm/xe: Fix potential NULL deref in xe_exec_queue_tlb_inval_last_fence_put_unlocked (rev2) Patchwork
2026-04-10  1:30 ` ✓ CI.KUnit: success " Patchwork
2026-04-10  2:29 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-10  6:04 ` ✓ Xe.CI.FULL: " Patchwork

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