intel-xe.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Improve handling of aborted probe
@ 2025-06-12 22:09 Michal Wajdeczko
  2025-06-12 22:09 ` [PATCH 1/2] drm/xe: Process deferred GGTT node removals on device unwind Michal Wajdeczko
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: Michal Wajdeczko @ 2025-06-12 22:09 UTC (permalink / raw)
  To: intel-xe; +Cc: Michal Wajdeczko

Fix some secondary issues observed during recent VF regression [1]

[1] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5214

Michal Wajdeczko (2):
  drm/xe: Process deferred GGTT node removals on device unwind
  drm/xe/guc: Explicitly exit CT safe mode on unwind

 drivers/gpu/drm/xe/xe_ggtt.c   | 11 +++++++++++
 drivers/gpu/drm/xe/xe_guc_ct.c | 10 ++++++----
 2 files changed, 17 insertions(+), 4 deletions(-)

-- 
2.47.1


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

* [PATCH 1/2] drm/xe: Process deferred GGTT node removals on device unwind
  2025-06-12 22:09 [PATCH 0/2] Improve handling of aborted probe Michal Wajdeczko
@ 2025-06-12 22:09 ` Michal Wajdeczko
  2025-06-23 21:22   ` Rodrigo Vivi
  2025-06-25 14:20   ` Maarten Lankhorst
  2025-06-12 22:09 ` [PATCH 2/2] drm/xe/guc: Explicitly exit CT safe mode on unwind Michal Wajdeczko
                   ` (4 subsequent siblings)
  5 siblings, 2 replies; 13+ messages in thread
From: Michal Wajdeczko @ 2025-06-12 22:09 UTC (permalink / raw)
  To: intel-xe; +Cc: Michal Wajdeczko, Rodrigo Vivi, Lucas De Marchi

While we are indirectly draining our dedicated workqueue ggtt->wq
that we use to complete asynchronous removal of some GGTT nodes,
this happends as part of the managed-drm unwinding (ggtt_fini_early),
which could be later then manage-device unwinding, where we could
already unmap our MMIO/GMS mapping (mmio_fini).

This was recently observed during unsuccessful VF initialization:

 [ ] xe 0000:00:02.1: probe with driver xe failed with error -62
 [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747340 __xe_bo_unpin_map_no_vm (16 bytes)
 [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747540 __xe_bo_unpin_map_no_vm (16 bytes)
 [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747240 __xe_bo_unpin_map_no_vm (16 bytes)
 [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747040 tiles_fini (16 bytes)
 [ ] xe 0000:00:02.1: DEVRES REL ffff88811e746840 mmio_fini (16 bytes)
 [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747f40 xe_bo_pinned_fini (16 bytes)
 [ ] xe 0000:00:02.1: DEVRES REL ffff88811e746b40 devm_drm_dev_init_release (16 bytes)
 [ ] xe 0000:00:02.1: [drm:drm_managed_release] drmres release begin
 [ ] xe 0000:00:02.1: [drm:drm_managed_release] REL ffff88810ef81640 __fini_relay (8 bytes)
 [ ] xe 0000:00:02.1: [drm:drm_managed_release] REL ffff88810ef80d40 guc_ct_fini (8 bytes)
 [ ] xe 0000:00:02.1: [drm:drm_managed_release] REL ffff88810ef80040 __drmm_mutex_release (8 bytes)
 [ ] xe 0000:00:02.1: [drm:drm_managed_release] REL ffff88810ef80140 ggtt_fini_early (8 bytes)

and this was leading to:

 [ ] BUG: unable to handle page fault for address: ffffc900058162a0
 [ ] #PF: supervisor write access in kernel mode
 [ ] #PF: error_code(0x0002) - not-present page
 [ ] Oops: Oops: 0002 [#1] SMP NOPTI
 [ ] Tainted: [W]=WARN
 [ ] Workqueue: xe-ggtt-wq ggtt_node_remove_work_func [xe]
 [ ] RIP: 0010:xe_ggtt_set_pte+0x6d/0x350 [xe]
 [ ] Call Trace:
 [ ]  <TASK>
 [ ]  xe_ggtt_clear+0xb0/0x270 [xe]
 [ ]  ggtt_node_remove+0xbb/0x120 [xe]
 [ ]  ggtt_node_remove_work_func+0x30/0x50 [xe]
 [ ]  process_one_work+0x22b/0x6f0
 [ ]  worker_thread+0x1e8/0x3d

Add managed-device action that will explicitly drain the workqueue
with all pending node removals prior to releasing MMIO/GSM mapping.

Fixes: 919bb54e989c ("drm/xe: Fix missing runtime outer protection for ggtt_remove_node")
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
---
 drivers/gpu/drm/xe/xe_ggtt.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_ggtt.c b/drivers/gpu/drm/xe/xe_ggtt.c
index 7b11fa1356f0..a8830cdb185f 100644
--- a/drivers/gpu/drm/xe/xe_ggtt.c
+++ b/drivers/gpu/drm/xe/xe_ggtt.c
@@ -238,6 +238,13 @@ int xe_ggtt_init_kunit(struct xe_ggtt *ggtt, u32 reserved, u32 size)
 }
 EXPORT_SYMBOL_IF_KUNIT(xe_ggtt_init_kunit);
 
+static void dev_fini_ggtt(void *arg)
+{
+	struct xe_ggtt *ggtt = arg;
+
+	drain_workqueue(ggtt->wq);
+}
+
 /**
  * xe_ggtt_init_early - Early GGTT initialization
  * @ggtt: the &xe_ggtt to be initialized
@@ -290,6 +297,10 @@ int xe_ggtt_init_early(struct xe_ggtt *ggtt)
 	if (err)
 		return err;
 
+	err = devm_add_action_or_reset(xe->drm.dev, dev_fini_ggtt, ggtt);
+	if (err)
+		return err;
+
 	if (IS_SRIOV_VF(xe)) {
 		err = xe_tile_sriov_vf_prepare_ggtt(ggtt->tile);
 		if (err)
-- 
2.47.1


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

* [PATCH 2/2] drm/xe/guc: Explicitly exit CT safe mode on unwind
  2025-06-12 22:09 [PATCH 0/2] Improve handling of aborted probe Michal Wajdeczko
  2025-06-12 22:09 ` [PATCH 1/2] drm/xe: Process deferred GGTT node removals on device unwind Michal Wajdeczko
@ 2025-06-12 22:09 ` Michal Wajdeczko
  2025-06-23 21:29   ` Rodrigo Vivi
  2025-06-13  5:23 ` ✗ CI.checkpatch: warning for Improve handling of aborted probe Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 13+ messages in thread
From: Michal Wajdeczko @ 2025-06-12 22:09 UTC (permalink / raw)
  To: intel-xe; +Cc: Michal Wajdeczko, Matthew Brost

During driver probe we might be briefly using CT safe mode, which
is based on a delayed work, but usually we are able to stop this
once we have IRQ fully operational.  However, if we abort the probe
quite early then during unwind we might try to destroy the workqueue
while there is still a pending delayed work that attempts to restart
itself which triggers a WARN.

This was recently observed during unsuccessful VF initialization:

 [ ] xe 0000:00:02.1: probe with driver xe failed with error -62
 [ ] ------------[ cut here ]------------
 [ ] workqueue: cannot queue safe_mode_worker_func [xe] on wq xe-g2h-wq
 [ ] WARNING: CPU: 9 PID: 0 at kernel/workqueue.c:2257 __queue_work+0x287/0x710
 [ ] RIP: 0010:__queue_work+0x287/0x710
 [ ] Call Trace:
 [ ]  delayed_work_timer_fn+0x19/0x30
 [ ]  call_timer_fn+0xa1/0x2a0

Exit the CT safe mode on unwind to avoid that warning.

Fixes: 09b286950f29 ("drm/xe/guc: Allow CTB G2H processing without G2H IRQ")
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
---
 drivers/gpu/drm/xe/xe_guc_ct.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index 822f4c33f730..6e353757e204 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -35,6 +35,11 @@
 #include "xe_pm.h"
 #include "xe_trace_guc.h"
 
+static void receive_g2h(struct xe_guc_ct *ct);
+static void g2h_worker_func(struct work_struct *w);
+static void safe_mode_worker_func(struct work_struct *w);
+static void ct_exit_safe_mode(struct xe_guc_ct *ct);
+
 #if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
 enum {
 	/* Internal states, not error conditions */
@@ -189,14 +194,11 @@ static void guc_ct_fini(struct drm_device *drm, void *arg)
 {
 	struct xe_guc_ct *ct = arg;
 
+	ct_exit_safe_mode(ct);
 	destroy_workqueue(ct->g2h_wq);
 	xa_destroy(&ct->fence_lookup);
 }
 
-static void receive_g2h(struct xe_guc_ct *ct);
-static void g2h_worker_func(struct work_struct *w);
-static void safe_mode_worker_func(struct work_struct *w);
-
 static void primelockdep(struct xe_guc_ct *ct)
 {
 	if (!IS_ENABLED(CONFIG_LOCKDEP))
-- 
2.47.1


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

* ✗ CI.checkpatch: warning for Improve handling of aborted probe
  2025-06-12 22:09 [PATCH 0/2] Improve handling of aborted probe Michal Wajdeczko
  2025-06-12 22:09 ` [PATCH 1/2] drm/xe: Process deferred GGTT node removals on device unwind Michal Wajdeczko
  2025-06-12 22:09 ` [PATCH 2/2] drm/xe/guc: Explicitly exit CT safe mode on unwind Michal Wajdeczko
@ 2025-06-13  5:23 ` Patchwork
  2025-06-13  5:24 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-13  5:23 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

== Series Details ==

Series: Improve handling of aborted probe
URL   : https://patchwork.freedesktop.org/series/150190/
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
202708c00696422fd217223bb679a353a5936e23
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit bc8c21860f79f357076c40cd0b4d195bd432938d
Author: Michal Wajdeczko <michal.wajdeczko@intel.com>
Date:   Fri Jun 13 00:09:37 2025 +0200

    drm/xe/guc: Explicitly exit CT safe mode on unwind
    
    During driver probe we might be briefly using CT safe mode, which
    is based on a delayed work, but usually we are able to stop this
    once we have IRQ fully operational.  However, if we abort the probe
    quite early then during unwind we might try to destroy the workqueue
    while there is still a pending delayed work that attempts to restart
    itself which triggers a WARN.
    
    This was recently observed during unsuccessful VF initialization:
    
     [ ] xe 0000:00:02.1: probe with driver xe failed with error -62
     [ ] ------------[ cut here ]------------
     [ ] workqueue: cannot queue safe_mode_worker_func [xe] on wq xe-g2h-wq
     [ ] WARNING: CPU: 9 PID: 0 at kernel/workqueue.c:2257 __queue_work+0x287/0x710
     [ ] RIP: 0010:__queue_work+0x287/0x710
     [ ] Call Trace:
     [ ]  delayed_work_timer_fn+0x19/0x30
     [ ]  call_timer_fn+0xa1/0x2a0
    
    Exit the CT safe mode on unwind to avoid that warning.
    
    Fixes: 09b286950f29 ("drm/xe/guc: Allow CTB G2H processing without G2H IRQ")
    Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
    Cc: Matthew Brost <matthew.brost@intel.com>
+ /mt/dim checkpatch 07cb1c19ef8056f2f964909c9273b3c45049760e drm-intel
7a42e794b090 drm/xe: Process deferred GGTT node removals on device unwind
-:15: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#15: 
 [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747340 __xe_bo_unpin_map_no_vm (16 bytes)

total: 0 errors, 1 warnings, 0 checks, 23 lines checked
bc8c21860f79 drm/xe/guc: Explicitly exit CT safe mode on unwind
-:18: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#18: 
 [ ] WARNING: CPU: 9 PID: 0 at kernel/workqueue.c:2257 __queue_work+0x287/0x710

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



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

* ✓ CI.KUnit: success for Improve handling of aborted probe
  2025-06-12 22:09 [PATCH 0/2] Improve handling of aborted probe Michal Wajdeczko
                   ` (2 preceding siblings ...)
  2025-06-13  5:23 ` ✗ CI.checkpatch: warning for Improve handling of aborted probe Patchwork
@ 2025-06-13  5:24 ` Patchwork
  2025-06-13  6:51 ` ✓ Xe.CI.BAT: " Patchwork
  2025-06-14 10:47 ` ✓ Xe.CI.Full: " Patchwork
  5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-13  5:24 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

== Series Details ==

Series: Improve handling of aborted probe
URL   : https://patchwork.freedesktop.org/series/150190/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for Improve handling of aborted probe
  2025-06-12 22:09 [PATCH 0/2] Improve handling of aborted probe Michal Wajdeczko
                   ` (3 preceding siblings ...)
  2025-06-13  5:24 ` ✓ CI.KUnit: success " Patchwork
@ 2025-06-13  6:51 ` Patchwork
  2025-06-14 10:47 ` ✓ Xe.CI.Full: " Patchwork
  5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-13  6:51 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

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

== Series Details ==

Series: Improve handling of aborted probe
URL   : https://patchwork.freedesktop.org/series/150190/
State : success

== Summary ==

CI Bug Log - changes from xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e_BAT -> xe-pw-150190v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (7 -> 7)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e -> xe-pw-150190v1

  IGT_8410: 5826cdbf1cb8f5ec8a42bae33deb6b2b63e59e6e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e: 190bbece34ea123c98a27f5692e8ce8e9559200e
  xe-pw-150190v1: 150190v1

== Logs ==

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

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

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

* ✓ Xe.CI.Full: success for Improve handling of aborted probe
  2025-06-12 22:09 [PATCH 0/2] Improve handling of aborted probe Michal Wajdeczko
                   ` (4 preceding siblings ...)
  2025-06-13  6:51 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-14 10:47 ` Patchwork
  5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-14 10:47 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe

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

== Series Details ==

Series: Improve handling of aborted probe
URL   : https://patchwork.freedesktop.org/series/150190/
State : success

== Summary ==

CI Bug Log - changes from xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e_FULL -> xe-pw-150190v1_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-4:
    - shard-dg2-set2:     [PASS][1] -> [FAIL][2] ([Intel XE#827]) +1 other test fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-dg2-433/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-4.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-4.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][3] ([Intel XE#3658])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][4] ([Intel XE#1407])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

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

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

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][7] ([Intel XE#1124]) +2 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-dg2-set2:     NOTRUN -> [SKIP][8] ([Intel XE#1124]) +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#2191])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

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

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

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

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

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#2887]) +3 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#3442])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#3432])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#3432])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][18] -> [INCOMPLETE][19] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) +1 other test incomplete
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [PASS][20] -> [INCOMPLETE][21] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

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

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][25] ([Intel XE#787]) +6 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2325])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_frames@dp-crc-multiple:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#373])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_chamelium_frames@dp-crc-multiple.html

  * igt@kms_chamelium_frames@hdmi-cmp-planes-random:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2252]) +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html

  * igt@kms_chamelium_hpd@hdmi-hpd:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#373]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd.html

  * igt@kms_content_protection@content-type-change:
    - shard-lnl:          NOTRUN -> [SKIP][30] ([Intel XE#5176])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_content_protection@content-type-change.html

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

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

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

  * igt@kms_cursor_crc@cursor-offscreen-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#1424]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-max-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][35] -> [SKIP][36] ([Intel XE#2291]) +5 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#309]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#4210])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-bmg:          [PASS][39] -> [SKIP][40] ([Intel XE#1340])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#2244])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_dsc@dsc-with-bpc-formats.html

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

  * igt@kms_flip@2x-plain-flip:
    - shard-bmg:          [PASS][43] -> [SKIP][44] ([Intel XE#2316]) +4 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-5/igt@kms_flip@2x-plain-flip.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-6/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
    - shard-dg2-set2:     [PASS][45] -> [FAIL][46] ([Intel XE#301]) +5 other tests fail
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [PASS][47] -> [INCOMPLETE][48] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-dp4:
    - shard-dg2-set2:     [PASS][49] -> [INCOMPLETE][50] ([Intel XE#2049] / [Intel XE#2597])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible@b-dp4.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible@b-dp4.html

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-adlp:         [PASS][51] -> [DMESG-WARN][52] ([Intel XE#2953] / [Intel XE#4173]) +9 other tests dmesg-warn
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-adlp-2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-adlp-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_flip@wf_vblank-ts-check:
    - shard-lnl:          [PASS][53] -> [FAIL][54] ([Intel XE#3098] / [Intel XE#3149] / [Intel XE#886])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check.html

  * igt@kms_flip@wf_vblank-ts-check@a-edp1:
    - shard-lnl:          [PASS][55] -> [FAIL][56] ([Intel XE#3098])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check@a-edp1.html

  * igt@kms_flip@wf_vblank-ts-check@b-edp1:
    - shard-lnl:          [PASS][57] -> [FAIL][58] ([Intel XE#886]) +1 other test fail
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check@b-edp1.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2293]) +1 other test skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#651]) +4 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#656]) +8 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#651]) +4 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html

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

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#2311]) +5 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2313]) +9 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-bmg:          [PASS][67] -> [SKIP][68] ([Intel XE#1503])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-1/igt@kms_hdr@static-toggle-suspend.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#5020])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-lnl:          [PASS][70] -> [FAIL][71] ([Intel XE#718])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#1439] / [Intel XE#836])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-lnl:          NOTRUN -> [SKIP][73] ([Intel XE#1439] / [Intel XE#836])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#1489])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#2893]) +2 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#1489]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr@fbc-psr-sprite-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-blt.html

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

  * igt@kms_psr@fbc-psr2-cursor-plane-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][79] ([Intel XE#1406]) +2 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html

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

  * igt@kms_rotation_crc@bad-tiling:
    - shard-lnl:          NOTRUN -> [SKIP][81] ([Intel XE#3414] / [Intel XE#3904])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#1127])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [PASS][83] -> [SKIP][84] ([Intel XE#1435]) +1 other test skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#2450])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#1499])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#1091] / [Intel XE#2849])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
    - shard-bmg:          NOTRUN -> [SKIP][88] ([Intel XE#4837]) +3 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html

  * igt@xe_eudebug_online@interrupt-other-debuggable:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#4837]) +1 other test skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@xe_eudebug_online@interrupt-other-debuggable.html

  * igt@xe_eudebug_online@set-breakpoint:
    - shard-dg2-set2:     NOTRUN -> [SKIP][90] ([Intel XE#4837]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@xe_eudebug_online@set-breakpoint.html

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

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

  * igt@xe_exec_basic@multigpu-no-exec-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#2322]) +1 other test skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][94] ([Intel XE#3876])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-1/igt@xe_exec_reset@parallel-gt-reset.html

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

  * igt@xe_exec_system_allocator@threads-many-mmap-free-huge:
    - shard-bmg:          NOTRUN -> [SKIP][96] ([Intel XE#4943]) +3 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-mmap-free-huge.html

  * igt@xe_exec_system_allocator@threads-many-mmap-remap:
    - shard-dg2-set2:     NOTRUN -> [SKIP][97] ([Intel XE#4915]) +21 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-mmap-remap.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
    - shard-lnl:          [PASS][98] -> [FAIL][99] ([Intel XE#5018])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html

  * igt@xe_exec_threads@threads-hang-userptr-rebind:
    - shard-dg2-set2:     [PASS][100] -> [DMESG-WARN][101] ([Intel XE#3876])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-dg2-436/igt@xe_exec_threads@threads-hang-userptr-rebind.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-436/igt@xe_exec_threads@threads-hang-userptr-rebind.html

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

  * igt@xe_oa@non-sampling-read-error:
    - shard-dg2-set2:     NOTRUN -> [SKIP][103] ([Intel XE#2541] / [Intel XE#3573])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@xe_oa@non-sampling-read-error.html

  * igt@xe_pm@d3cold-mocs:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#2284])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@s3-basic-exec:
    - shard-adlp:         [PASS][105] -> [DMESG-WARN][106] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#569])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-adlp-9/igt@xe_pm@s3-basic-exec.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-adlp-9/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-lnl:          [PASS][107] -> [ABORT][108] ([Intel XE#1794]) +1 other test abort
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-lnl-8/igt@xe_pm@s4-vm-bind-unbind-all.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html

  * igt@xe_pm@s4-vm-bind-userptr:
    - shard-adlp:         [PASS][109] -> [ABORT][110] ([Intel XE#1794])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-adlp-8/igt@xe_pm@s4-vm-bind-userptr.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-adlp-9/igt@xe_pm@s4-vm-bind-userptr.html

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

  * igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy:
    - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#4733])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html

  * igt@xe_query@multigpu-query-uc-fw-version-guc:
    - shard-lnl:          NOTRUN -> [SKIP][113] ([Intel XE#944])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@xe_query@multigpu-query-uc-fw-version-guc.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets:
    - shard-bmg:          NOTRUN -> [SKIP][114] ([Intel XE#4351])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html

  * igt@xe_vm@large-misaligned-binds-67108864:
    - shard-dg2-set2:     [PASS][115] -> [INCOMPLETE][116] ([Intel XE#2594])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-dg2-464/igt@xe_vm@large-misaligned-binds-67108864.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-464/igt@xe_vm@large-misaligned-binds-67108864.html

  
#### Possible fixes ####

  * igt@core_hotunplug@hotrebind:
    - shard-adlp:         [DMESG-WARN][117] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][118] +1 other test pass
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-adlp-3/igt@core_hotunplug@hotrebind.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-adlp-4/igt@core_hotunplug@hotrebind.html

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-lnl:          [FAIL][119] ([Intel XE#827]) -> [PASS][120] +1 other test pass
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-lnl-4/igt@kms_async_flips@alternate-sync-async-flip.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-6/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [SKIP][121] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][123] ([Intel XE#3862]) -> [PASS][124] +1 other test pass
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][125] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][126] +1 other test pass
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-bmg:          [SKIP][127] ([Intel XE#2291]) -> [PASS][128] +1 other test pass
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [SKIP][129] ([Intel XE#2316]) -> [PASS][130] +9 other tests pass
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@bc-hdmi-a6-dp4:
    - shard-dg2-set2:     [INCOMPLETE][131] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][132] +1 other test pass
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-dg2-464/igt@kms_flip@2x-flip-vs-suspend-interruptible@bc-hdmi-a6-dp4.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@bc-hdmi-a6-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank@a-dp4:
    - shard-dg2-set2:     [FAIL][133] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][134]
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6:
    - shard-dg2-set2:     [FAIL][135] ([Intel XE#301]) -> [PASS][136]
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html

  * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1:
    - shard-adlp:         [FAIL][137] ([Intel XE#886]) -> [PASS][138] +1 other test pass
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-adlp-9/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-adlp-4/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html

  * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a3:
    - shard-bmg:          [FAIL][139] ([Intel XE#2882]) -> [PASS][140] +2 other tests pass
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-6/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a3.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a3.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [SKIP][141] ([Intel XE#1503]) -> [PASS][142]
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-6/igt@kms_hdr@static-swap.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-bmg:          [SKIP][143] ([Intel XE#3012]) -> [PASS][144]
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [SKIP][145] ([Intel XE#4596]) -> [PASS][146] +1 other test pass
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-bmg:          [SKIP][147] ([Intel XE#2571]) -> [PASS][148]
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_vrr@negative-basic:
    - shard-bmg:          [SKIP][149] ([Intel XE#1499]) -> [PASS][150]
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-6/igt@kms_vrr@negative-basic.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-4/igt@kms_vrr@negative-basic.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
    - shard-lnl:          [FAIL][151] ([Intel XE#4937]) -> [PASS][152]
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html

  * igt@xe_pm@s4-d3hot-basic-exec:
    - shard-lnl:          [ABORT][153] ([Intel XE#1794]) -> [PASS][154] +1 other test pass
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-lnl-7/igt@xe_pm@s4-d3hot-basic-exec.html

  
#### Warnings ####

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [FAIL][155] ([Intel XE#1178]) -> [SKIP][156] ([Intel XE#2341])
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-1/igt@kms_content_protection@atomic.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-6/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [SKIP][157] ([Intel XE#2341]) -> [FAIL][158] ([Intel XE#1178])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-6/igt@kms_content_protection@legacy.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-3/igt@kms_content_protection@legacy.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-bmg:          [FAIL][159] ([Intel XE#2882]) -> [SKIP][160] ([Intel XE#2316])
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][161] ([Intel XE#2312]) -> [SKIP][162] ([Intel XE#2311]) +16 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][163] ([Intel XE#2311]) -> [SKIP][164] ([Intel XE#2312]) +12 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][165] ([Intel XE#2312]) -> [SKIP][166] ([Intel XE#4141]) +8 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][167] ([Intel XE#4141]) -> [SKIP][168] ([Intel XE#2312]) +5 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][169] ([Intel XE#2313]) -> [SKIP][170] ([Intel XE#2312]) +16 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][171] ([Intel XE#2312]) -> [SKIP][172] ([Intel XE#2313]) +16 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][173] ([Intel XE#5021]) -> [SKIP][174] ([Intel XE#4596])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][175] ([Intel XE#2426]) -> [SKIP][176] ([Intel XE#2509])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_pmu@engine-activity-load:
    - shard-adlp:         [DMESG-WARN][177] ([Intel XE#5214]) -> [ABORT][178] ([Intel XE#5214]) +3 other tests abort
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-adlp-1/igt@xe_pmu@engine-activity-load.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-adlp-1/igt@xe_pmu@engine-activity-load.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
    - shard-adlp:         [DMESG-FAIL][179] -> [ABORT][180] ([Intel XE#5214]) +1 other test abort
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e/shard-adlp-1/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150190v1/shard-adlp-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html

  
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
  [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5176]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5176
  [Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e -> xe-pw-150190v1

  IGT_8410: 5826cdbf1cb8f5ec8a42bae33deb6b2b63e59e6e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-3245-190bbece34ea123c98a27f5692e8ce8e9559200e: 190bbece34ea123c98a27f5692e8ce8e9559200e
  xe-pw-150190v1: 150190v1

== Logs ==

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

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

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

* Re: [PATCH 1/2] drm/xe: Process deferred GGTT node removals on device unwind
  2025-06-12 22:09 ` [PATCH 1/2] drm/xe: Process deferred GGTT node removals on device unwind Michal Wajdeczko
@ 2025-06-23 21:22   ` Rodrigo Vivi
  2025-06-25 14:20   ` Maarten Lankhorst
  1 sibling, 0 replies; 13+ messages in thread
From: Rodrigo Vivi @ 2025-06-23 21:22 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe, Lucas De Marchi

On Fri, Jun 13, 2025 at 12:09:36AM +0200, Michal Wajdeczko wrote:
> While we are indirectly draining our dedicated workqueue ggtt->wq
> that we use to complete asynchronous removal of some GGTT nodes,
> this happends as part of the managed-drm unwinding (ggtt_fini_early),
> which could be later then manage-device unwinding, where we could
> already unmap our MMIO/GMS mapping (mmio_fini).
> 
> This was recently observed during unsuccessful VF initialization:
> 
>  [ ] xe 0000:00:02.1: probe with driver xe failed with error -62
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747340 __xe_bo_unpin_map_no_vm (16 bytes)
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747540 __xe_bo_unpin_map_no_vm (16 bytes)
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747240 __xe_bo_unpin_map_no_vm (16 bytes)
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747040 tiles_fini (16 bytes)
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e746840 mmio_fini (16 bytes)
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747f40 xe_bo_pinned_fini (16 bytes)
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e746b40 devm_drm_dev_init_release (16 bytes)
>  [ ] xe 0000:00:02.1: [drm:drm_managed_release] drmres release begin
>  [ ] xe 0000:00:02.1: [drm:drm_managed_release] REL ffff88810ef81640 __fini_relay (8 bytes)
>  [ ] xe 0000:00:02.1: [drm:drm_managed_release] REL ffff88810ef80d40 guc_ct_fini (8 bytes)
>  [ ] xe 0000:00:02.1: [drm:drm_managed_release] REL ffff88810ef80040 __drmm_mutex_release (8 bytes)
>  [ ] xe 0000:00:02.1: [drm:drm_managed_release] REL ffff88810ef80140 ggtt_fini_early (8 bytes)
> 
> and this was leading to:
> 
>  [ ] BUG: unable to handle page fault for address: ffffc900058162a0
>  [ ] #PF: supervisor write access in kernel mode
>  [ ] #PF: error_code(0x0002) - not-present page
>  [ ] Oops: Oops: 0002 [#1] SMP NOPTI
>  [ ] Tainted: [W]=WARN
>  [ ] Workqueue: xe-ggtt-wq ggtt_node_remove_work_func [xe]
>  [ ] RIP: 0010:xe_ggtt_set_pte+0x6d/0x350 [xe]
>  [ ] Call Trace:
>  [ ]  <TASK>
>  [ ]  xe_ggtt_clear+0xb0/0x270 [xe]
>  [ ]  ggtt_node_remove+0xbb/0x120 [xe]
>  [ ]  ggtt_node_remove_work_func+0x30/0x50 [xe]
>  [ ]  process_one_work+0x22b/0x6f0
>  [ ]  worker_thread+0x1e8/0x3d
> 
> Add managed-device action that will explicitly drain the workqueue
> with all pending node removals prior to releasing MMIO/GSM mapping.
> 
> Fixes: 919bb54e989c ("drm/xe: Fix missing runtime outer protection for ggtt_remove_node")
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>

Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>

> ---
>  drivers/gpu/drm/xe/xe_ggtt.c | 11 +++++++++++
>  1 file changed, 11 insertions(+)
> 
> diff --git a/drivers/gpu/drm/xe/xe_ggtt.c b/drivers/gpu/drm/xe/xe_ggtt.c
> index 7b11fa1356f0..a8830cdb185f 100644
> --- a/drivers/gpu/drm/xe/xe_ggtt.c
> +++ b/drivers/gpu/drm/xe/xe_ggtt.c
> @@ -238,6 +238,13 @@ int xe_ggtt_init_kunit(struct xe_ggtt *ggtt, u32 reserved, u32 size)
>  }
>  EXPORT_SYMBOL_IF_KUNIT(xe_ggtt_init_kunit);
>  
> +static void dev_fini_ggtt(void *arg)
> +{
> +	struct xe_ggtt *ggtt = arg;
> +
> +	drain_workqueue(ggtt->wq);
> +}
> +
>  /**
>   * xe_ggtt_init_early - Early GGTT initialization
>   * @ggtt: the &xe_ggtt to be initialized
> @@ -290,6 +297,10 @@ int xe_ggtt_init_early(struct xe_ggtt *ggtt)
>  	if (err)
>  		return err;
>  
> +	err = devm_add_action_or_reset(xe->drm.dev, dev_fini_ggtt, ggtt);
> +	if (err)
> +		return err;
> +
>  	if (IS_SRIOV_VF(xe)) {
>  		err = xe_tile_sriov_vf_prepare_ggtt(ggtt->tile);
>  		if (err)
> -- 
> 2.47.1
> 

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

* Re: [PATCH 2/2] drm/xe/guc: Explicitly exit CT safe mode on unwind
  2025-06-12 22:09 ` [PATCH 2/2] drm/xe/guc: Explicitly exit CT safe mode on unwind Michal Wajdeczko
@ 2025-06-23 21:29   ` Rodrigo Vivi
  2025-06-24 15:32     ` Matthew Brost
  0 siblings, 1 reply; 13+ messages in thread
From: Rodrigo Vivi @ 2025-06-23 21:29 UTC (permalink / raw)
  To: Michal Wajdeczko; +Cc: intel-xe, Matthew Brost

On Fri, Jun 13, 2025 at 12:09:37AM +0200, Michal Wajdeczko wrote:
> During driver probe we might be briefly using CT safe mode, which
> is based on a delayed work, but usually we are able to stop this
> once we have IRQ fully operational.  However, if we abort the probe
> quite early then during unwind we might try to destroy the workqueue
> while there is still a pending delayed work that attempts to restart
> itself which triggers a WARN.
> 
> This was recently observed during unsuccessful VF initialization:
> 
>  [ ] xe 0000:00:02.1: probe with driver xe failed with error -62
>  [ ] ------------[ cut here ]------------
>  [ ] workqueue: cannot queue safe_mode_worker_func [xe] on wq xe-g2h-wq
>  [ ] WARNING: CPU: 9 PID: 0 at kernel/workqueue.c:2257 __queue_work+0x287/0x710
>  [ ] RIP: 0010:__queue_work+0x287/0x710
>  [ ] Call Trace:
>  [ ]  delayed_work_timer_fn+0x19/0x30
>  [ ]  call_timer_fn+0xa1/0x2a0
> 
> Exit the CT safe mode on unwind to avoid that warning.
> 
> Fixes: 09b286950f29 ("drm/xe/guc: Allow CTB G2H processing without G2H IRQ")
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_guc_ct.c | 10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
> index 822f4c33f730..6e353757e204 100644
> --- a/drivers/gpu/drm/xe/xe_guc_ct.c
> +++ b/drivers/gpu/drm/xe/xe_guc_ct.c
> @@ -35,6 +35,11 @@
>  #include "xe_pm.h"
>  #include "xe_trace_guc.h"
>  
> +static void receive_g2h(struct xe_guc_ct *ct);
> +static void g2h_worker_func(struct work_struct *w);
> +static void safe_mode_worker_func(struct work_struct *w);
> +static void ct_exit_safe_mode(struct xe_guc_ct *ct);
> +
>  #if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
>  enum {
>  	/* Internal states, not error conditions */
> @@ -189,14 +194,11 @@ static void guc_ct_fini(struct drm_device *drm, void *arg)
>  {
>  	struct xe_guc_ct *ct = arg;
>  
> +	ct_exit_safe_mode(ct);

I was going to ask if we also don't need to disable more of the ct
at this point, but I believe it is indeed not relevant at this point
of the code.

But it is any possibility of double call of this function in some of
the regular removal paths?

>  	destroy_workqueue(ct->g2h_wq);
>  	xa_destroy(&ct->fence_lookup);
>  }
>  
> -static void receive_g2h(struct xe_guc_ct *ct);
> -static void g2h_worker_func(struct work_struct *w);
> -static void safe_mode_worker_func(struct work_struct *w);
> -
>  static void primelockdep(struct xe_guc_ct *ct)
>  {
>  	if (!IS_ENABLED(CONFIG_LOCKDEP))
> -- 
> 2.47.1
> 

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

* Re: [PATCH 2/2] drm/xe/guc: Explicitly exit CT safe mode on unwind
  2025-06-23 21:29   ` Rodrigo Vivi
@ 2025-06-24 15:32     ` Matthew Brost
  2025-06-24 21:30       ` Rodrigo Vivi
  0 siblings, 1 reply; 13+ messages in thread
From: Matthew Brost @ 2025-06-24 15:32 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: Michal Wajdeczko, intel-xe

On Mon, Jun 23, 2025 at 05:29:21PM -0400, Rodrigo Vivi wrote:
> On Fri, Jun 13, 2025 at 12:09:37AM +0200, Michal Wajdeczko wrote:
> > During driver probe we might be briefly using CT safe mode, which
> > is based on a delayed work, but usually we are able to stop this
> > once we have IRQ fully operational.  However, if we abort the probe
> > quite early then during unwind we might try to destroy the workqueue
> > while there is still a pending delayed work that attempts to restart
> > itself which triggers a WARN.
> > 
> > This was recently observed during unsuccessful VF initialization:
> > 
> >  [ ] xe 0000:00:02.1: probe with driver xe failed with error -62
> >  [ ] ------------[ cut here ]------------
> >  [ ] workqueue: cannot queue safe_mode_worker_func [xe] on wq xe-g2h-wq
> >  [ ] WARNING: CPU: 9 PID: 0 at kernel/workqueue.c:2257 __queue_work+0x287/0x710
> >  [ ] RIP: 0010:__queue_work+0x287/0x710
> >  [ ] Call Trace:
> >  [ ]  delayed_work_timer_fn+0x19/0x30
> >  [ ]  call_timer_fn+0xa1/0x2a0
> > 
> > Exit the CT safe mode on unwind to avoid that warning.
> > 
> > Fixes: 09b286950f29 ("drm/xe/guc: Allow CTB G2H processing without G2H IRQ")
> > Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> > Cc: Matthew Brost <matthew.brost@intel.com>
> > ---
> >  drivers/gpu/drm/xe/xe_guc_ct.c | 10 ++++++----
> >  1 file changed, 6 insertions(+), 4 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
> > index 822f4c33f730..6e353757e204 100644
> > --- a/drivers/gpu/drm/xe/xe_guc_ct.c
> > +++ b/drivers/gpu/drm/xe/xe_guc_ct.c
> > @@ -35,6 +35,11 @@
> >  #include "xe_pm.h"
> >  #include "xe_trace_guc.h"
> >  
> > +static void receive_g2h(struct xe_guc_ct *ct);
> > +static void g2h_worker_func(struct work_struct *w);
> > +static void safe_mode_worker_func(struct work_struct *w);
> > +static void ct_exit_safe_mode(struct xe_guc_ct *ct);
> > +
> >  #if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
> >  enum {
> >  	/* Internal states, not error conditions */
> > @@ -189,14 +194,11 @@ static void guc_ct_fini(struct drm_device *drm, void *arg)
> >  {
> >  	struct xe_guc_ct *ct = arg;
> >  
> > +	ct_exit_safe_mode(ct);
> 
> I was going to ask if we also don't need to disable more of the ct
> at this point, but I believe it is indeed not relevant at this point
> of the code.
> 
> But it is any possibility of double call of this function in some of
> the regular removal paths?
> 

ct_exit_safe_mode is safe to be called many times - it just cancels a
delayed worker.

The code looks correct to me.
Reviewed-by: Matthew Brost <matthew.brost@intel.com>

> >  	destroy_workqueue(ct->g2h_wq);
> >  	xa_destroy(&ct->fence_lookup);
> >  }
> >  
> > -static void receive_g2h(struct xe_guc_ct *ct);
> > -static void g2h_worker_func(struct work_struct *w);
> > -static void safe_mode_worker_func(struct work_struct *w);
> > -
> >  static void primelockdep(struct xe_guc_ct *ct)
> >  {
> >  	if (!IS_ENABLED(CONFIG_LOCKDEP))
> > -- 
> > 2.47.1
> > 

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

* Re: [PATCH 2/2] drm/xe/guc: Explicitly exit CT safe mode on unwind
  2025-06-24 15:32     ` Matthew Brost
@ 2025-06-24 21:30       ` Rodrigo Vivi
  2025-06-25  7:51         ` Michal Wajdeczko
  0 siblings, 1 reply; 13+ messages in thread
From: Rodrigo Vivi @ 2025-06-24 21:30 UTC (permalink / raw)
  To: Matthew Brost; +Cc: Michal Wajdeczko, intel-xe

On Tue, Jun 24, 2025 at 08:32:29AM -0700, Matthew Brost wrote:
> On Mon, Jun 23, 2025 at 05:29:21PM -0400, Rodrigo Vivi wrote:
> > On Fri, Jun 13, 2025 at 12:09:37AM +0200, Michal Wajdeczko wrote:
> > > During driver probe we might be briefly using CT safe mode, which
> > > is based on a delayed work, but usually we are able to stop this
> > > once we have IRQ fully operational.  However, if we abort the probe
> > > quite early then during unwind we might try to destroy the workqueue
> > > while there is still a pending delayed work that attempts to restart
> > > itself which triggers a WARN.
> > > 
> > > This was recently observed during unsuccessful VF initialization:
> > > 
> > >  [ ] xe 0000:00:02.1: probe with driver xe failed with error -62
> > >  [ ] ------------[ cut here ]------------
> > >  [ ] workqueue: cannot queue safe_mode_worker_func [xe] on wq xe-g2h-wq
> > >  [ ] WARNING: CPU: 9 PID: 0 at kernel/workqueue.c:2257 __queue_work+0x287/0x710
> > >  [ ] RIP: 0010:__queue_work+0x287/0x710
> > >  [ ] Call Trace:
> > >  [ ]  delayed_work_timer_fn+0x19/0x30
> > >  [ ]  call_timer_fn+0xa1/0x2a0
> > > 
> > > Exit the CT safe mode on unwind to avoid that warning.
> > > 
> > > Fixes: 09b286950f29 ("drm/xe/guc: Allow CTB G2H processing without G2H IRQ")
> > > Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> > > Cc: Matthew Brost <matthew.brost@intel.com>
> > > ---
> > >  drivers/gpu/drm/xe/xe_guc_ct.c | 10 ++++++----
> > >  1 file changed, 6 insertions(+), 4 deletions(-)
> > > 
> > > diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
> > > index 822f4c33f730..6e353757e204 100644
> > > --- a/drivers/gpu/drm/xe/xe_guc_ct.c
> > > +++ b/drivers/gpu/drm/xe/xe_guc_ct.c
> > > @@ -35,6 +35,11 @@
> > >  #include "xe_pm.h"
> > >  #include "xe_trace_guc.h"
> > >  
> > > +static void receive_g2h(struct xe_guc_ct *ct);
> > > +static void g2h_worker_func(struct work_struct *w);
> > > +static void safe_mode_worker_func(struct work_struct *w);
> > > +static void ct_exit_safe_mode(struct xe_guc_ct *ct);
> > > +
> > >  #if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
> > >  enum {
> > >  	/* Internal states, not error conditions */
> > > @@ -189,14 +194,11 @@ static void guc_ct_fini(struct drm_device *drm, void *arg)
> > >  {
> > >  	struct xe_guc_ct *ct = arg;
> > >  
> > > +	ct_exit_safe_mode(ct);
> > 
> > I was going to ask if we also don't need to disable more of the ct
> > at this point, but I believe it is indeed not relevant at this point
> > of the code.
> > 
> > But it is any possibility of double call of this function in some of
> > the regular removal paths?
> > 
> 
> ct_exit_safe_mode is safe to be called many times - it just cancels a
> delayed worker.
> 
> The code looks correct to me.
> Reviewed-by: Matthew Brost <matthew.brost@intel.com>

I was going to push this right now, but it looks it needs a rebase now...

> 
> > >  	destroy_workqueue(ct->g2h_wq);
> > >  	xa_destroy(&ct->fence_lookup);
> > >  }
> > >  
> > > -static void receive_g2h(struct xe_guc_ct *ct);
> > > -static void g2h_worker_func(struct work_struct *w);
> > > -static void safe_mode_worker_func(struct work_struct *w);
> > > -
> > >  static void primelockdep(struct xe_guc_ct *ct)
> > >  {
> > >  	if (!IS_ENABLED(CONFIG_LOCKDEP))
> > > -- 
> > > 2.47.1
> > > 

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

* Re: [PATCH 2/2] drm/xe/guc: Explicitly exit CT safe mode on unwind
  2025-06-24 21:30       ` Rodrigo Vivi
@ 2025-06-25  7:51         ` Michal Wajdeczko
  0 siblings, 0 replies; 13+ messages in thread
From: Michal Wajdeczko @ 2025-06-25  7:51 UTC (permalink / raw)
  To: Rodrigo Vivi, Matthew Brost; +Cc: intel-xe



On 24.06.2025 23:30, Rodrigo Vivi wrote:
>> The code looks correct to me.
>> Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> I was going to push this right now, but it looks it needs a rebase now...

thanks, but there is no need to rebase, it's already merged ;)


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

* Re: [PATCH 1/2] drm/xe: Process deferred GGTT node removals on device unwind
  2025-06-12 22:09 ` [PATCH 1/2] drm/xe: Process deferred GGTT node removals on device unwind Michal Wajdeczko
  2025-06-23 21:22   ` Rodrigo Vivi
@ 2025-06-25 14:20   ` Maarten Lankhorst
  1 sibling, 0 replies; 13+ messages in thread
From: Maarten Lankhorst @ 2025-06-25 14:20 UTC (permalink / raw)
  To: Michal Wajdeczko, intel-xe; +Cc: Rodrigo Vivi, Lucas De Marchi

Hey,

On 2025-06-13 00:09, Michal Wajdeczko wrote:
> While we are indirectly draining our dedicated workqueue ggtt->wq
> that we use to complete asynchronous removal of some GGTT nodes,
> this happends as part of the managed-drm unwinding (ggtt_fini_early),
> which could be later then manage-device unwinding, where we could
> already unmap our MMIO/GMS mapping (mmio_fini).
> 
> This was recently observed during unsuccessful VF initialization:
> 
>  [ ] xe 0000:00:02.1: probe with driver xe failed with error -62
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747340 __xe_bo_unpin_map_no_vm (16 bytes)
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747540 __xe_bo_unpin_map_no_vm (16 bytes)
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747240 __xe_bo_unpin_map_no_vm (16 bytes)
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747040 tiles_fini (16 bytes)
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e746840 mmio_fini (16 bytes)
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e747f40 xe_bo_pinned_fini (16 bytes)
>  [ ] xe 0000:00:02.1: DEVRES REL ffff88811e746b40 devm_drm_dev_init_release (16 bytes)
>  [ ] xe 0000:00:02.1: [drm:drm_managed_release] drmres release begin
>  [ ] xe 0000:00:02.1: [drm:drm_managed_release] REL ffff88810ef81640 __fini_relay (8 bytes)
>  [ ] xe 0000:00:02.1: [drm:drm_managed_release] REL ffff88810ef80d40 guc_ct_fini (8 bytes)
>  [ ] xe 0000:00:02.1: [drm:drm_managed_release] REL ffff88810ef80040 __drmm_mutex_release (8 bytes)
>  [ ] xe 0000:00:02.1: [drm:drm_managed_release] REL ffff88810ef80140 ggtt_fini_early (8 bytes)
> 
> and this was leading to:
> 
>  [ ] BUG: unable to handle page fault for address: ffffc900058162a0
>  [ ] #PF: supervisor write access in kernel mode
>  [ ] #PF: error_code(0x0002) - not-present page
>  [ ] Oops: Oops: 0002 [#1] SMP NOPTI
>  [ ] Tainted: [W]=WARN
>  [ ] Workqueue: xe-ggtt-wq ggtt_node_remove_work_func [xe]
>  [ ] RIP: 0010:xe_ggtt_set_pte+0x6d/0x350 [xe]
>  [ ] Call Trace:
>  [ ]  <TASK>
>  [ ]  xe_ggtt_clear+0xb0/0x270 [xe]
>  [ ]  ggtt_node_remove+0xbb/0x120 [xe]
>  [ ]  ggtt_node_remove_work_func+0x30/0x50 [xe]
>  [ ]  process_one_work+0x22b/0x6f0
>  [ ]  worker_thread+0x1e8/0x3d
> 
> Add managed-device action that will explicitly drain the workqueue
> with all pending node removals prior to releasing MMIO/GSM mapping.

I'm curious, would it not make sense to put drain_workqueue inside the ggtt_fini_early()
call mentioned there instead of adding a new devm call?

Kind regards,
~Maarten


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

end of thread, other threads:[~2025-06-25 14:21 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-12 22:09 [PATCH 0/2] Improve handling of aborted probe Michal Wajdeczko
2025-06-12 22:09 ` [PATCH 1/2] drm/xe: Process deferred GGTT node removals on device unwind Michal Wajdeczko
2025-06-23 21:22   ` Rodrigo Vivi
2025-06-25 14:20   ` Maarten Lankhorst
2025-06-12 22:09 ` [PATCH 2/2] drm/xe/guc: Explicitly exit CT safe mode on unwind Michal Wajdeczko
2025-06-23 21:29   ` Rodrigo Vivi
2025-06-24 15:32     ` Matthew Brost
2025-06-24 21:30       ` Rodrigo Vivi
2025-06-25  7:51         ` Michal Wajdeczko
2025-06-13  5:23 ` ✗ CI.checkpatch: warning for Improve handling of aborted probe Patchwork
2025-06-13  5:24 ` ✓ CI.KUnit: success " Patchwork
2025-06-13  6:51 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-14 10:47 ` ✓ 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;
as well as URLs for NNTP newsgroup(s).