* [PATCH v5 1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure
@ 2026-02-20 22:53 Zhanjun Dong
2026-02-20 23:00 ` ✓ CI.KUnit: success for series starting with [v5,1/1] " Patchwork
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Zhanjun Dong @ 2026-02-20 22:53 UTC (permalink / raw)
To: intel-xe; +Cc: Zhanjun Dong, Daniele Ceraolo Spurio
xe_gsc_proxy_remove undoes what is done in both xe_gsc_proxy_init and
xe_gsc_proxy_start; however, if we fail between those 2 calls, it is
possible that the HW forcewake access hasn't been initialized yet and so
we hit errors when the cleanup code tries to write GSC register. To
avoid that, split the cleanup in 2 functions so that the HW cleanup is
only called if the HW setup was completed successfully.
Since the HW cleanup (interrupt disabling) is now removed from
xe_gsc_proxy_remove, the cleanup on error paths in xe_gsc_proxy_start
must be updated to disable interrupts before returning.
Fixes: ff6cd29b690b ("drm/xe: Cleanup unwind of gt initialization")
Signed-off-by: Zhanjun Dong <zhanjun.dong@intel.com>
Reviewed-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
---
v5:
- Update comments (Daniele)
v4:
- Replace devm-managed cleanup action for xe_gsc_proxy_stop() with a
manual flag-based approach using a 'started' flag. This avoids a race
condition where module unload could start while the async GSC proxy
initialization is still in progress, potentially causing the devm
cleanup to be called at the wrong time.
- Set gsc->proxy.started = true at the end of xe_gsc_proxy_start() when
initialization completes successfully.
- Check gsc->proxy.started in xe_gsc_proxy_remove() to conditionally
call xe_gsc_proxy_stop() only if the proxy was actually started.
v3:
- Move xe_gsc_wait_for_worker_completion() to xe_gsc_proxy_stop() after
disabling interrupts, since the worker shouldn't be queued anymore
after interrupts are disabled.
- Update commit message to clarify that the error handling changes in
xe_gsc_proxy_start() are necessary due to the cleanup refactoring,
not a separate fix.
v2:
- Split cleanup into two functions: xe_gsc_proxy_remove() for SW cleanup
and xe_gsc_proxy_stop() for HW cleanup that requires forcewake access.
- Add error handling in xe_gsc_proxy_start to disable interrupts on
early error exits.
---
drivers/gpu/drm/xe/xe_gsc_proxy.c | 43 +++++++++++++++++++++++++------
drivers/gpu/drm/xe/xe_gsc_types.h | 2 ++
2 files changed, 37 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gsc_proxy.c b/drivers/gpu/drm/xe/xe_gsc_proxy.c
index 42438b21f235..707db650a2ae 100644
--- a/drivers/gpu/drm/xe/xe_gsc_proxy.c
+++ b/drivers/gpu/drm/xe/xe_gsc_proxy.c
@@ -435,15 +435,11 @@ static int proxy_channel_alloc(struct xe_gsc *gsc)
return 0;
}
-static void xe_gsc_proxy_remove(void *arg)
+static void xe_gsc_proxy_stop(struct xe_gsc *gsc)
{
- struct xe_gsc *gsc = arg;
struct xe_gt *gt = gsc_to_gt(gsc);
struct xe_device *xe = gt_to_xe(gt);
- if (!gsc->proxy.component_added)
- return;
-
/* disable HECI2 IRQs */
scoped_guard(xe_pm_runtime, xe) {
CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GSC);
@@ -455,6 +451,30 @@ static void xe_gsc_proxy_remove(void *arg)
}
xe_gsc_wait_for_worker_completion(gsc);
+ gsc->proxy.started = false;
+}
+
+static void xe_gsc_proxy_remove(void *arg)
+{
+ struct xe_gsc *gsc = arg;
+ struct xe_gt *gt = gsc_to_gt(gsc);
+ struct xe_device *xe = gt_to_xe(gt);
+
+ if (!gsc->proxy.component_added)
+ return;
+
+ /*
+ * GSC proxy start is an async process that can be ongoing during
+ * Xe module load/unload. Using devm managed action to register
+ * xe_gsc_proxy_stop could cause issues if Xe module unload has
+ * already started when the action is registered, potentially leading
+ * to the cleanup being called at the wrong time. Therefore, instead
+ * of registering a separate devm action to undo what is done in
+ * proxy start, we call it from here, but only if the start has
+ * completed successfully (tracked with the 'started' flag).
+ */
+ if (gsc->proxy.started)
+ xe_gsc_proxy_stop(gsc);
component_del(xe->drm.dev, &xe_gsc_proxy_component_ops);
gsc->proxy.component_added = false;
@@ -510,6 +530,7 @@ int xe_gsc_proxy_init(struct xe_gsc *gsc)
*/
int xe_gsc_proxy_start(struct xe_gsc *gsc)
{
+ struct xe_gt *gt = gsc_to_gt(gsc);
int err;
/* enable the proxy interrupt in the GSC shim layer */
@@ -521,12 +542,18 @@ int xe_gsc_proxy_start(struct xe_gsc *gsc)
*/
err = xe_gsc_proxy_request_handler(gsc);
if (err)
- return err;
+ goto err_irq_disable;
if (!xe_gsc_proxy_init_done(gsc)) {
- xe_gt_err(gsc_to_gt(gsc), "GSC FW reports proxy init not completed\n");
- return -EIO;
+ xe_gt_err(gt, "GSC FW reports proxy init not completed\n");
+ err = -EIO;
+ goto err_irq_disable;
}
+ gsc->proxy.started = true;
return 0;
+
+err_irq_disable:
+ gsc_proxy_irq_toggle(gsc, false);
+ return err;
}
diff --git a/drivers/gpu/drm/xe/xe_gsc_types.h b/drivers/gpu/drm/xe/xe_gsc_types.h
index 97c056656df0..5aaa2a75861f 100644
--- a/drivers/gpu/drm/xe/xe_gsc_types.h
+++ b/drivers/gpu/drm/xe/xe_gsc_types.h
@@ -58,6 +58,8 @@ struct xe_gsc {
struct mutex mutex;
/** @proxy.component_added: whether the component has been added */
bool component_added;
+ /** @proxy.started: whether the proxy has been started */
+ bool started;
/** @proxy.bo: object to store message to and from the GSC */
struct xe_bo *bo;
/** @proxy.to_gsc: map of the memory used to send messages to the GSC */
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure
2026-02-20 22:53 [PATCH v5 1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure Zhanjun Dong
@ 2026-02-20 23:00 ` Patchwork
2026-02-20 23:34 ` ✓ Xe.CI.BAT: " Patchwork
` (5 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-20 23:00 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
== Series Details ==
Series: series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure
URL : https://patchwork.freedesktop.org/series/161912/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[22:58:41] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:58:46] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:59:17] Starting KUnit Kernel (1/1)...
[22:59:17] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:59:18] ================== guc_buf (11 subtests) ===================
[22:59:18] [PASSED] test_smallest
[22:59:18] [PASSED] test_largest
[22:59:18] [PASSED] test_granular
[22:59:18] [PASSED] test_unique
[22:59:18] [PASSED] test_overlap
[22:59:18] [PASSED] test_reusable
[22:59:18] [PASSED] test_too_big
[22:59:18] [PASSED] test_flush
[22:59:18] [PASSED] test_lookup
[22:59:18] [PASSED] test_data
[22:59:18] [PASSED] test_class
[22:59:18] ===================== [PASSED] guc_buf =====================
[22:59:18] =================== guc_dbm (7 subtests) ===================
[22:59:18] [PASSED] test_empty
[22:59:18] [PASSED] test_default
[22:59:18] ======================== test_size ========================
[22:59:18] [PASSED] 4
[22:59:18] [PASSED] 8
[22:59:18] [PASSED] 32
[22:59:18] [PASSED] 256
[22:59:18] ==================== [PASSED] test_size ====================
[22:59:18] ======================= test_reuse ========================
[22:59:18] [PASSED] 4
[22:59:18] [PASSED] 8
[22:59:18] [PASSED] 32
[22:59:18] [PASSED] 256
[22:59:18] =================== [PASSED] test_reuse ====================
[22:59:18] =================== test_range_overlap ====================
[22:59:18] [PASSED] 4
[22:59:18] [PASSED] 8
[22:59:18] [PASSED] 32
[22:59:18] [PASSED] 256
[22:59:18] =============== [PASSED] test_range_overlap ================
[22:59:18] =================== test_range_compact ====================
[22:59:18] [PASSED] 4
[22:59:18] [PASSED] 8
[22:59:18] [PASSED] 32
[22:59:18] [PASSED] 256
[22:59:18] =============== [PASSED] test_range_compact ================
[22:59:18] ==================== test_range_spare =====================
[22:59:18] [PASSED] 4
[22:59:18] [PASSED] 8
[22:59:18] [PASSED] 32
[22:59:18] [PASSED] 256
[22:59:18] ================ [PASSED] test_range_spare =================
[22:59:18] ===================== [PASSED] guc_dbm =====================
[22:59:18] =================== guc_idm (6 subtests) ===================
[22:59:18] [PASSED] bad_init
[22:59:18] [PASSED] no_init
[22:59:18] [PASSED] init_fini
[22:59:18] [PASSED] check_used
[22:59:18] [PASSED] check_quota
[22:59:18] [PASSED] check_all
[22:59:18] ===================== [PASSED] guc_idm =====================
[22:59:18] ================== no_relay (3 subtests) ===================
[22:59:18] [PASSED] xe_drops_guc2pf_if_not_ready
[22:59:18] [PASSED] xe_drops_guc2vf_if_not_ready
[22:59:18] [PASSED] xe_rejects_send_if_not_ready
[22:59:18] ==================== [PASSED] no_relay =====================
[22:59:18] ================== pf_relay (14 subtests) ==================
[22:59:18] [PASSED] pf_rejects_guc2pf_too_short
[22:59:18] [PASSED] pf_rejects_guc2pf_too_long
[22:59:18] [PASSED] pf_rejects_guc2pf_no_payload
[22:59:18] [PASSED] pf_fails_no_payload
[22:59:18] [PASSED] pf_fails_bad_origin
[22:59:18] [PASSED] pf_fails_bad_type
[22:59:18] [PASSED] pf_txn_reports_error
[22:59:18] [PASSED] pf_txn_sends_pf2guc
[22:59:18] [PASSED] pf_sends_pf2guc
[22:59:18] [SKIPPED] pf_loopback_nop
[22:59:18] [SKIPPED] pf_loopback_echo
[22:59:18] [SKIPPED] pf_loopback_fail
[22:59:18] [SKIPPED] pf_loopback_busy
[22:59:18] [SKIPPED] pf_loopback_retry
[22:59:18] ==================== [PASSED] pf_relay =====================
[22:59:18] ================== vf_relay (3 subtests) ===================
[22:59:18] [PASSED] vf_rejects_guc2vf_too_short
[22:59:18] [PASSED] vf_rejects_guc2vf_too_long
[22:59:18] [PASSED] vf_rejects_guc2vf_no_payload
[22:59:18] ==================== [PASSED] vf_relay =====================
[22:59:18] ================ pf_gt_config (9 subtests) =================
[22:59:18] [PASSED] fair_contexts_1vf
[22:59:18] [PASSED] fair_doorbells_1vf
[22:59:18] [PASSED] fair_ggtt_1vf
[22:59:18] ====================== fair_vram_1vf ======================
[22:59:18] [PASSED] 3.50 GiB
[22:59:18] [PASSED] 11.5 GiB
[22:59:18] [PASSED] 15.5 GiB
[22:59:18] [PASSED] 31.5 GiB
[22:59:18] [PASSED] 63.5 GiB
[22:59:18] [PASSED] 13.9 GiB
[22:59:18] ================== [PASSED] fair_vram_1vf ==================
[22:59:18] ================ fair_vram_1vf_admin_only =================
[22:59:18] [PASSED] 3.50 GiB
[22:59:18] [PASSED] 11.5 GiB
[22:59:18] [PASSED] 15.5 GiB
[22:59:18] [PASSED] 31.5 GiB
[22:59:18] [PASSED] 63.5 GiB
[22:59:18] [PASSED] 13.9 GiB
[22:59:18] ============ [PASSED] fair_vram_1vf_admin_only =============
[22:59:18] ====================== fair_contexts ======================
[22:59:18] [PASSED] 1 VF
[22:59:18] [PASSED] 2 VFs
[22:59:18] [PASSED] 3 VFs
[22:59:18] [PASSED] 4 VFs
[22:59:18] [PASSED] 5 VFs
[22:59:18] [PASSED] 6 VFs
[22:59:18] [PASSED] 7 VFs
[22:59:18] [PASSED] 8 VFs
[22:59:18] [PASSED] 9 VFs
[22:59:18] [PASSED] 10 VFs
[22:59:18] [PASSED] 11 VFs
[22:59:18] [PASSED] 12 VFs
[22:59:18] [PASSED] 13 VFs
[22:59:18] [PASSED] 14 VFs
[22:59:18] [PASSED] 15 VFs
[22:59:18] [PASSED] 16 VFs
[22:59:18] [PASSED] 17 VFs
[22:59:18] [PASSED] 18 VFs
[22:59:18] [PASSED] 19 VFs
[22:59:18] [PASSED] 20 VFs
[22:59:18] [PASSED] 21 VFs
[22:59:18] [PASSED] 22 VFs
[22:59:18] [PASSED] 23 VFs
[22:59:18] [PASSED] 24 VFs
[22:59:18] [PASSED] 25 VFs
[22:59:18] [PASSED] 26 VFs
[22:59:18] [PASSED] 27 VFs
[22:59:18] [PASSED] 28 VFs
[22:59:18] [PASSED] 29 VFs
[22:59:18] [PASSED] 30 VFs
[22:59:18] [PASSED] 31 VFs
[22:59:18] [PASSED] 32 VFs
[22:59:18] [PASSED] 33 VFs
[22:59:18] [PASSED] 34 VFs
[22:59:18] [PASSED] 35 VFs
[22:59:18] [PASSED] 36 VFs
[22:59:18] [PASSED] 37 VFs
[22:59:18] [PASSED] 38 VFs
[22:59:18] [PASSED] 39 VFs
[22:59:18] [PASSED] 40 VFs
[22:59:18] [PASSED] 41 VFs
[22:59:18] [PASSED] 42 VFs
[22:59:18] [PASSED] 43 VFs
[22:59:18] [PASSED] 44 VFs
[22:59:18] [PASSED] 45 VFs
[22:59:18] [PASSED] 46 VFs
[22:59:18] [PASSED] 47 VFs
[22:59:18] [PASSED] 48 VFs
[22:59:18] [PASSED] 49 VFs
[22:59:18] [PASSED] 50 VFs
[22:59:18] [PASSED] 51 VFs
[22:59:18] [PASSED] 52 VFs
[22:59:18] [PASSED] 53 VFs
[22:59:18] [PASSED] 54 VFs
[22:59:18] [PASSED] 55 VFs
[22:59:18] [PASSED] 56 VFs
[22:59:18] [PASSED] 57 VFs
[22:59:18] [PASSED] 58 VFs
[22:59:18] [PASSED] 59 VFs
[22:59:18] [PASSED] 60 VFs
[22:59:18] [PASSED] 61 VFs
[22:59:18] [PASSED] 62 VFs
[22:59:18] [PASSED] 63 VFs
[22:59:18] ================== [PASSED] fair_contexts ==================
[22:59:18] ===================== fair_doorbells ======================
[22:59:18] [PASSED] 1 VF
[22:59:18] [PASSED] 2 VFs
[22:59:18] [PASSED] 3 VFs
[22:59:18] [PASSED] 4 VFs
[22:59:18] [PASSED] 5 VFs
[22:59:18] [PASSED] 6 VFs
[22:59:18] [PASSED] 7 VFs
[22:59:18] [PASSED] 8 VFs
[22:59:18] [PASSED] 9 VFs
[22:59:18] [PASSED] 10 VFs
[22:59:18] [PASSED] 11 VFs
[22:59:18] [PASSED] 12 VFs
[22:59:18] [PASSED] 13 VFs
[22:59:18] [PASSED] 14 VFs
[22:59:18] [PASSED] 15 VFs
[22:59:18] [PASSED] 16 VFs
[22:59:18] [PASSED] 17 VFs
[22:59:18] [PASSED] 18 VFs
[22:59:18] [PASSED] 19 VFs
[22:59:18] [PASSED] 20 VFs
[22:59:18] [PASSED] 21 VFs
[22:59:18] [PASSED] 22 VFs
[22:59:18] [PASSED] 23 VFs
[22:59:18] [PASSED] 24 VFs
[22:59:18] [PASSED] 25 VFs
[22:59:18] [PASSED] 26 VFs
[22:59:18] [PASSED] 27 VFs
[22:59:18] [PASSED] 28 VFs
[22:59:18] [PASSED] 29 VFs
[22:59:18] [PASSED] 30 VFs
[22:59:18] [PASSED] 31 VFs
[22:59:18] [PASSED] 32 VFs
[22:59:18] [PASSED] 33 VFs
[22:59:18] [PASSED] 34 VFs
[22:59:18] [PASSED] 35 VFs
[22:59:18] [PASSED] 36 VFs
[22:59:18] [PASSED] 37 VFs
[22:59:18] [PASSED] 38 VFs
[22:59:18] [PASSED] 39 VFs
[22:59:18] [PASSED] 40 VFs
[22:59:18] [PASSED] 41 VFs
[22:59:18] [PASSED] 42 VFs
[22:59:18] [PASSED] 43 VFs
[22:59:18] [PASSED] 44 VFs
[22:59:18] [PASSED] 45 VFs
[22:59:18] [PASSED] 46 VFs
[22:59:18] [PASSED] 47 VFs
[22:59:18] [PASSED] 48 VFs
[22:59:18] [PASSED] 49 VFs
[22:59:18] [PASSED] 50 VFs
[22:59:18] [PASSED] 51 VFs
[22:59:18] [PASSED] 52 VFs
[22:59:18] [PASSED] 53 VFs
[22:59:18] [PASSED] 54 VFs
[22:59:18] [PASSED] 55 VFs
[22:59:18] [PASSED] 56 VFs
[22:59:18] [PASSED] 57 VFs
[22:59:18] [PASSED] 58 VFs
[22:59:18] [PASSED] 59 VFs
[22:59:18] [PASSED] 60 VFs
[22:59:18] [PASSED] 61 VFs
[22:59:18] [PASSED] 62 VFs
[22:59:18] [PASSED] 63 VFs
[22:59:18] ================= [PASSED] fair_doorbells ==================
[22:59:18] ======================== fair_ggtt ========================
[22:59:18] [PASSED] 1 VF
[22:59:18] [PASSED] 2 VFs
[22:59:18] [PASSED] 3 VFs
[22:59:18] [PASSED] 4 VFs
[22:59:18] [PASSED] 5 VFs
[22:59:18] [PASSED] 6 VFs
[22:59:18] [PASSED] 7 VFs
[22:59:18] [PASSED] 8 VFs
[22:59:18] [PASSED] 9 VFs
[22:59:18] [PASSED] 10 VFs
[22:59:18] [PASSED] 11 VFs
[22:59:18] [PASSED] 12 VFs
[22:59:18] [PASSED] 13 VFs
[22:59:18] [PASSED] 14 VFs
[22:59:18] [PASSED] 15 VFs
[22:59:18] [PASSED] 16 VFs
[22:59:18] [PASSED] 17 VFs
[22:59:18] [PASSED] 18 VFs
[22:59:18] [PASSED] 19 VFs
[22:59:18] [PASSED] 20 VFs
[22:59:18] [PASSED] 21 VFs
[22:59:18] [PASSED] 22 VFs
[22:59:18] [PASSED] 23 VFs
[22:59:18] [PASSED] 24 VFs
[22:59:18] [PASSED] 25 VFs
[22:59:18] [PASSED] 26 VFs
[22:59:18] [PASSED] 27 VFs
[22:59:18] [PASSED] 28 VFs
[22:59:18] [PASSED] 29 VFs
[22:59:18] [PASSED] 30 VFs
[22:59:18] [PASSED] 31 VFs
[22:59:18] [PASSED] 32 VFs
[22:59:18] [PASSED] 33 VFs
[22:59:18] [PASSED] 34 VFs
[22:59:18] [PASSED] 35 VFs
[22:59:18] [PASSED] 36 VFs
[22:59:18] [PASSED] 37 VFs
[22:59:18] [PASSED] 38 VFs
[22:59:18] [PASSED] 39 VFs
[22:59:18] [PASSED] 40 VFs
[22:59:18] [PASSED] 41 VFs
[22:59:18] [PASSED] 42 VFs
[22:59:18] [PASSED] 43 VFs
[22:59:18] [PASSED] 44 VFs
[22:59:18] [PASSED] 45 VFs
[22:59:18] [PASSED] 46 VFs
[22:59:18] [PASSED] 47 VFs
[22:59:18] [PASSED] 48 VFs
[22:59:18] [PASSED] 49 VFs
[22:59:18] [PASSED] 50 VFs
[22:59:18] [PASSED] 51 VFs
[22:59:18] [PASSED] 52 VFs
[22:59:18] [PASSED] 53 VFs
[22:59:18] [PASSED] 54 VFs
[22:59:18] [PASSED] 55 VFs
[22:59:18] [PASSED] 56 VFs
[22:59:18] [PASSED] 57 VFs
[22:59:18] [PASSED] 58 VFs
[22:59:18] [PASSED] 59 VFs
[22:59:18] [PASSED] 60 VFs
[22:59:18] [PASSED] 61 VFs
[22:59:18] [PASSED] 62 VFs
[22:59:18] [PASSED] 63 VFs
[22:59:18] ==================== [PASSED] fair_ggtt ====================
[22:59:18] ======================== fair_vram ========================
[22:59:18] [PASSED] 1 VF
[22:59:18] [PASSED] 2 VFs
[22:59:18] [PASSED] 3 VFs
[22:59:18] [PASSED] 4 VFs
[22:59:18] [PASSED] 5 VFs
[22:59:18] [PASSED] 6 VFs
[22:59:18] [PASSED] 7 VFs
[22:59:18] [PASSED] 8 VFs
[22:59:18] [PASSED] 9 VFs
[22:59:18] [PASSED] 10 VFs
[22:59:18] [PASSED] 11 VFs
[22:59:18] [PASSED] 12 VFs
[22:59:18] [PASSED] 13 VFs
[22:59:18] [PASSED] 14 VFs
[22:59:18] [PASSED] 15 VFs
[22:59:18] [PASSED] 16 VFs
[22:59:18] [PASSED] 17 VFs
[22:59:18] [PASSED] 18 VFs
[22:59:18] [PASSED] 19 VFs
[22:59:18] [PASSED] 20 VFs
[22:59:18] [PASSED] 21 VFs
[22:59:18] [PASSED] 22 VFs
[22:59:18] [PASSED] 23 VFs
[22:59:18] [PASSED] 24 VFs
[22:59:18] [PASSED] 25 VFs
[22:59:18] [PASSED] 26 VFs
[22:59:18] [PASSED] 27 VFs
[22:59:18] [PASSED] 28 VFs
[22:59:18] [PASSED] 29 VFs
[22:59:18] [PASSED] 30 VFs
[22:59:18] [PASSED] 31 VFs
[22:59:18] [PASSED] 32 VFs
[22:59:18] [PASSED] 33 VFs
[22:59:18] [PASSED] 34 VFs
[22:59:18] [PASSED] 35 VFs
[22:59:18] [PASSED] 36 VFs
[22:59:18] [PASSED] 37 VFs
[22:59:18] [PASSED] 38 VFs
[22:59:18] [PASSED] 39 VFs
[22:59:18] [PASSED] 40 VFs
[22:59:18] [PASSED] 41 VFs
[22:59:18] [PASSED] 42 VFs
[22:59:18] [PASSED] 43 VFs
[22:59:18] [PASSED] 44 VFs
[22:59:18] [PASSED] 45 VFs
[22:59:18] [PASSED] 46 VFs
[22:59:18] [PASSED] 47 VFs
[22:59:18] [PASSED] 48 VFs
[22:59:18] [PASSED] 49 VFs
[22:59:18] [PASSED] 50 VFs
[22:59:18] [PASSED] 51 VFs
[22:59:18] [PASSED] 52 VFs
[22:59:18] [PASSED] 53 VFs
[22:59:18] [PASSED] 54 VFs
[22:59:18] [PASSED] 55 VFs
[22:59:18] [PASSED] 56 VFs
[22:59:18] [PASSED] 57 VFs
[22:59:18] [PASSED] 58 VFs
[22:59:18] [PASSED] 59 VFs
[22:59:18] [PASSED] 60 VFs
[22:59:18] [PASSED] 61 VFs
[22:59:18] [PASSED] 62 VFs
[22:59:18] [PASSED] 63 VFs
[22:59:18] ==================== [PASSED] fair_vram ====================
[22:59:18] ================== [PASSED] pf_gt_config ===================
[22:59:18] ===================== lmtt (1 subtest) =====================
[22:59:18] ======================== test_ops =========================
[22:59:18] [PASSED] 2-level
[22:59:18] [PASSED] multi-level
[22:59:18] ==================== [PASSED] test_ops =====================
[22:59:18] ====================== [PASSED] lmtt =======================
[22:59:18] ================= pf_service (11 subtests) =================
[22:59:18] [PASSED] pf_negotiate_any
[22:59:18] [PASSED] pf_negotiate_base_match
[22:59:18] [PASSED] pf_negotiate_base_newer
[22:59:18] [PASSED] pf_negotiate_base_next
[22:59:18] [SKIPPED] pf_negotiate_base_older
[22:59:18] [PASSED] pf_negotiate_base_prev
[22:59:18] [PASSED] pf_negotiate_latest_match
[22:59:18] [PASSED] pf_negotiate_latest_newer
[22:59:18] [PASSED] pf_negotiate_latest_next
[22:59:18] [SKIPPED] pf_negotiate_latest_older
[22:59:18] [SKIPPED] pf_negotiate_latest_prev
[22:59:18] =================== [PASSED] pf_service ====================
[22:59:18] ================= xe_guc_g2g (2 subtests) ==================
[22:59:18] ============== xe_live_guc_g2g_kunit_default ==============
[22:59:18] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[22:59:18] ============== xe_live_guc_g2g_kunit_allmem ===============
[22:59:18] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[22:59:18] =================== [SKIPPED] xe_guc_g2g ===================
[22:59:18] =================== xe_mocs (2 subtests) ===================
[22:59:18] ================ xe_live_mocs_kernel_kunit ================
[22:59:18] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[22:59:18] ================ xe_live_mocs_reset_kunit =================
[22:59:18] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[22:59:18] ==================== [SKIPPED] xe_mocs =====================
[22:59:18] ================= xe_migrate (2 subtests) ==================
[22:59:18] ================= xe_migrate_sanity_kunit =================
[22:59:18] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[22:59:18] ================== xe_validate_ccs_kunit ==================
[22:59:18] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[22:59:18] =================== [SKIPPED] xe_migrate ===================
[22:59:18] ================== xe_dma_buf (1 subtest) ==================
[22:59:18] ==================== xe_dma_buf_kunit =====================
[22:59:18] ================ [SKIPPED] xe_dma_buf_kunit ================
[22:59:18] =================== [SKIPPED] xe_dma_buf ===================
[22:59:18] ================= xe_bo_shrink (1 subtest) =================
[22:59:18] =================== xe_bo_shrink_kunit ====================
[22:59:18] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[22:59:18] ================== [SKIPPED] xe_bo_shrink ==================
[22:59:18] ==================== xe_bo (2 subtests) ====================
[22:59:18] ================== xe_ccs_migrate_kunit ===================
[22:59:18] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[22:59:18] ==================== xe_bo_evict_kunit ====================
[22:59:18] =============== [SKIPPED] xe_bo_evict_kunit ================
[22:59:18] ===================== [SKIPPED] xe_bo ======================
[22:59:18] ==================== args (13 subtests) ====================
[22:59:18] [PASSED] count_args_test
[22:59:18] [PASSED] call_args_example
[22:59:18] [PASSED] call_args_test
[22:59:18] [PASSED] drop_first_arg_example
[22:59:18] [PASSED] drop_first_arg_test
[22:59:18] [PASSED] first_arg_example
[22:59:18] [PASSED] first_arg_test
[22:59:18] [PASSED] last_arg_example
[22:59:18] [PASSED] last_arg_test
[22:59:18] [PASSED] pick_arg_example
[22:59:18] [PASSED] if_args_example
[22:59:18] [PASSED] if_args_test
[22:59:18] [PASSED] sep_comma_example
[22:59:18] ====================== [PASSED] args =======================
[22:59:18] =================== xe_pci (3 subtests) ====================
[22:59:18] ==================== check_graphics_ip ====================
[22:59:18] [PASSED] 12.00 Xe_LP
[22:59:18] [PASSED] 12.10 Xe_LP+
[22:59:18] [PASSED] 12.55 Xe_HPG
[22:59:18] [PASSED] 12.60 Xe_HPC
[22:59:18] [PASSED] 12.70 Xe_LPG
[22:59:18] [PASSED] 12.71 Xe_LPG
[22:59:18] [PASSED] 12.74 Xe_LPG+
[22:59:18] [PASSED] 20.01 Xe2_HPG
[22:59:18] [PASSED] 20.02 Xe2_HPG
[22:59:18] [PASSED] 20.04 Xe2_LPG
[22:59:18] [PASSED] 30.00 Xe3_LPG
[22:59:18] [PASSED] 30.01 Xe3_LPG
[22:59:18] [PASSED] 30.03 Xe3_LPG
[22:59:18] [PASSED] 30.04 Xe3_LPG
[22:59:18] [PASSED] 30.05 Xe3_LPG
[22:59:18] [PASSED] 35.10 Xe3p_LPG
[22:59:18] [PASSED] 35.11 Xe3p_XPC
[22:59:18] ================ [PASSED] check_graphics_ip ================
[22:59:18] ===================== check_media_ip ======================
[22:59:18] [PASSED] 12.00 Xe_M
[22:59:18] [PASSED] 12.55 Xe_HPM
[22:59:18] [PASSED] 13.00 Xe_LPM+
[22:59:18] [PASSED] 13.01 Xe2_HPM
[22:59:18] [PASSED] 20.00 Xe2_LPM
[22:59:18] [PASSED] 30.00 Xe3_LPM
[22:59:18] [PASSED] 30.02 Xe3_LPM
[22:59:18] [PASSED] 35.00 Xe3p_LPM
[22:59:18] [PASSED] 35.03 Xe3p_HPM
[22:59:18] ================= [PASSED] check_media_ip ==================
[22:59:18] =================== check_platform_desc ===================
[22:59:18] [PASSED] 0x9A60 (TIGERLAKE)
[22:59:18] [PASSED] 0x9A68 (TIGERLAKE)
[22:59:18] [PASSED] 0x9A70 (TIGERLAKE)
[22:59:18] [PASSED] 0x9A40 (TIGERLAKE)
[22:59:18] [PASSED] 0x9A49 (TIGERLAKE)
[22:59:18] [PASSED] 0x9A59 (TIGERLAKE)
[22:59:18] [PASSED] 0x9A78 (TIGERLAKE)
[22:59:18] [PASSED] 0x9AC0 (TIGERLAKE)
[22:59:18] [PASSED] 0x9AC9 (TIGERLAKE)
[22:59:18] [PASSED] 0x9AD9 (TIGERLAKE)
[22:59:18] [PASSED] 0x9AF8 (TIGERLAKE)
[22:59:18] [PASSED] 0x4C80 (ROCKETLAKE)
[22:59:18] [PASSED] 0x4C8A (ROCKETLAKE)
[22:59:18] [PASSED] 0x4C8B (ROCKETLAKE)
[22:59:18] [PASSED] 0x4C8C (ROCKETLAKE)
[22:59:18] [PASSED] 0x4C90 (ROCKETLAKE)
[22:59:18] [PASSED] 0x4C9A (ROCKETLAKE)
[22:59:18] [PASSED] 0x4680 (ALDERLAKE_S)
[22:59:18] [PASSED] 0x4682 (ALDERLAKE_S)
[22:59:18] [PASSED] 0x4688 (ALDERLAKE_S)
[22:59:18] [PASSED] 0x468A (ALDERLAKE_S)
[22:59:18] [PASSED] 0x468B (ALDERLAKE_S)
[22:59:18] [PASSED] 0x4690 (ALDERLAKE_S)
[22:59:18] [PASSED] 0x4692 (ALDERLAKE_S)
[22:59:18] [PASSED] 0x4693 (ALDERLAKE_S)
[22:59:18] [PASSED] 0x46A0 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46A1 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46A2 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46A3 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46A6 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46A8 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46AA (ALDERLAKE_P)
[22:59:18] [PASSED] 0x462A (ALDERLAKE_P)
[22:59:18] [PASSED] 0x4626 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x4628 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46B0 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46B1 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46B2 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46B3 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46C0 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46C1 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46C2 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46C3 (ALDERLAKE_P)
[22:59:18] [PASSED] 0x46D0 (ALDERLAKE_N)
[22:59:18] [PASSED] 0x46D1 (ALDERLAKE_N)
[22:59:18] [PASSED] 0x46D2 (ALDERLAKE_N)
[22:59:18] [PASSED] 0x46D3 (ALDERLAKE_N)
[22:59:18] [PASSED] 0x46D4 (ALDERLAKE_N)
[22:59:18] [PASSED] 0xA721 (ALDERLAKE_P)
[22:59:18] [PASSED] 0xA7A1 (ALDERLAKE_P)
[22:59:18] [PASSED] 0xA7A9 (ALDERLAKE_P)
[22:59:18] [PASSED] 0xA7AC (ALDERLAKE_P)
[22:59:18] [PASSED] 0xA7AD (ALDERLAKE_P)
[22:59:18] [PASSED] 0xA720 (ALDERLAKE_P)
[22:59:18] [PASSED] 0xA7A0 (ALDERLAKE_P)
[22:59:18] [PASSED] 0xA7A8 (ALDERLAKE_P)
[22:59:18] [PASSED] 0xA7AA (ALDERLAKE_P)
[22:59:18] [PASSED] 0xA7AB (ALDERLAKE_P)
[22:59:18] [PASSED] 0xA780 (ALDERLAKE_S)
[22:59:18] [PASSED] 0xA781 (ALDERLAKE_S)
[22:59:18] [PASSED] 0xA782 (ALDERLAKE_S)
[22:59:18] [PASSED] 0xA783 (ALDERLAKE_S)
[22:59:18] [PASSED] 0xA788 (ALDERLAKE_S)
[22:59:18] [PASSED] 0xA789 (ALDERLAKE_S)
[22:59:18] [PASSED] 0xA78A (ALDERLAKE_S)
[22:59:18] [PASSED] 0xA78B (ALDERLAKE_S)
[22:59:18] [PASSED] 0x4905 (DG1)
[22:59:18] [PASSED] 0x4906 (DG1)
[22:59:18] [PASSED] 0x4907 (DG1)
[22:59:18] [PASSED] 0x4908 (DG1)
[22:59:18] [PASSED] 0x4909 (DG1)
[22:59:18] [PASSED] 0x56C0 (DG2)
[22:59:18] [PASSED] 0x56C2 (DG2)
[22:59:18] [PASSED] 0x56C1 (DG2)
[22:59:18] [PASSED] 0x7D51 (METEORLAKE)
[22:59:18] [PASSED] 0x7DD1 (METEORLAKE)
[22:59:18] [PASSED] 0x7D41 (METEORLAKE)
[22:59:18] [PASSED] 0x7D67 (METEORLAKE)
[22:59:18] [PASSED] 0xB640 (METEORLAKE)
[22:59:18] [PASSED] 0x56A0 (DG2)
[22:59:18] [PASSED] 0x56A1 (DG2)
[22:59:18] [PASSED] 0x56A2 (DG2)
[22:59:18] [PASSED] 0x56BE (DG2)
[22:59:18] [PASSED] 0x56BF (DG2)
[22:59:18] [PASSED] 0x5690 (DG2)
[22:59:18] [PASSED] 0x5691 (DG2)
[22:59:18] [PASSED] 0x5692 (DG2)
[22:59:18] [PASSED] 0x56A5 (DG2)
[22:59:18] [PASSED] 0x56A6 (DG2)
[22:59:18] [PASSED] 0x56B0 (DG2)
[22:59:18] [PASSED] 0x56B1 (DG2)
[22:59:18] [PASSED] 0x56BA (DG2)
[22:59:18] [PASSED] 0x56BB (DG2)
[22:59:18] [PASSED] 0x56BC (DG2)
[22:59:18] [PASSED] 0x56BD (DG2)
[22:59:18] [PASSED] 0x5693 (DG2)
[22:59:18] [PASSED] 0x5694 (DG2)
[22:59:18] [PASSED] 0x5695 (DG2)
[22:59:18] [PASSED] 0x56A3 (DG2)
[22:59:18] [PASSED] 0x56A4 (DG2)
[22:59:18] [PASSED] 0x56B2 (DG2)
[22:59:18] [PASSED] 0x56B3 (DG2)
[22:59:18] [PASSED] 0x5696 (DG2)
[22:59:18] [PASSED] 0x5697 (DG2)
[22:59:18] [PASSED] 0xB69 (PVC)
[22:59:18] [PASSED] 0xB6E (PVC)
[22:59:18] [PASSED] 0xBD4 (PVC)
[22:59:18] [PASSED] 0xBD5 (PVC)
[22:59:18] [PASSED] 0xBD6 (PVC)
[22:59:18] [PASSED] 0xBD7 (PVC)
[22:59:18] [PASSED] 0xBD8 (PVC)
[22:59:18] [PASSED] 0xBD9 (PVC)
[22:59:18] [PASSED] 0xBDA (PVC)
[22:59:18] [PASSED] 0xBDB (PVC)
[22:59:18] [PASSED] 0xBE0 (PVC)
[22:59:18] [PASSED] 0xBE1 (PVC)
[22:59:18] [PASSED] 0xBE5 (PVC)
[22:59:18] [PASSED] 0x7D40 (METEORLAKE)
[22:59:18] [PASSED] 0x7D45 (METEORLAKE)
[22:59:18] [PASSED] 0x7D55 (METEORLAKE)
[22:59:18] [PASSED] 0x7D60 (METEORLAKE)
[22:59:18] [PASSED] 0x7DD5 (METEORLAKE)
[22:59:18] [PASSED] 0x6420 (LUNARLAKE)
[22:59:18] [PASSED] 0x64A0 (LUNARLAKE)
[22:59:18] [PASSED] 0x64B0 (LUNARLAKE)
[22:59:18] [PASSED] 0xE202 (BATTLEMAGE)
[22:59:18] [PASSED] 0xE209 (BATTLEMAGE)
[22:59:18] [PASSED] 0xE20B (BATTLEMAGE)
[22:59:18] [PASSED] 0xE20C (BATTLEMAGE)
[22:59:18] [PASSED] 0xE20D (BATTLEMAGE)
[22:59:18] [PASSED] 0xE210 (BATTLEMAGE)
[22:59:18] [PASSED] 0xE211 (BATTLEMAGE)
[22:59:18] [PASSED] 0xE212 (BATTLEMAGE)
[22:59:18] [PASSED] 0xE216 (BATTLEMAGE)
[22:59:18] [PASSED] 0xE220 (BATTLEMAGE)
[22:59:18] [PASSED] 0xE221 (BATTLEMAGE)
[22:59:18] [PASSED] 0xE222 (BATTLEMAGE)
[22:59:18] [PASSED] 0xE223 (BATTLEMAGE)
[22:59:18] [PASSED] 0xB080 (PANTHERLAKE)
[22:59:18] [PASSED] 0xB081 (PANTHERLAKE)
[22:59:18] [PASSED] 0xB082 (PANTHERLAKE)
[22:59:18] [PASSED] 0xB083 (PANTHERLAKE)
[22:59:18] [PASSED] 0xB084 (PANTHERLAKE)
[22:59:18] [PASSED] 0xB085 (PANTHERLAKE)
[22:59:18] [PASSED] 0xB086 (PANTHERLAKE)
[22:59:18] [PASSED] 0xB087 (PANTHERLAKE)
[22:59:18] [PASSED] 0xB08F (PANTHERLAKE)
[22:59:18] [PASSED] 0xB090 (PANTHERLAKE)
[22:59:18] [PASSED] 0xB0A0 (PANTHERLAKE)
[22:59:18] [PASSED] 0xB0B0 (PANTHERLAKE)
[22:59:18] [PASSED] 0xFD80 (PANTHERLAKE)
[22:59:18] [PASSED] 0xFD81 (PANTHERLAKE)
[22:59:18] [PASSED] 0xD740 (NOVALAKE_S)
[22:59:18] [PASSED] 0xD741 (NOVALAKE_S)
[22:59:18] [PASSED] 0xD742 (NOVALAKE_S)
[22:59:18] [PASSED] 0xD743 (NOVALAKE_S)
[22:59:18] [PASSED] 0xD744 (NOVALAKE_S)
[22:59:18] [PASSED] 0xD745 (NOVALAKE_S)
[22:59:18] [PASSED] 0x674C (CRESCENTISLAND)
[22:59:18] [PASSED] 0xD750 (NOVALAKE_P)
[22:59:18] [PASSED] 0xD751 (NOVALAKE_P)
[22:59:18] [PASSED] 0xD752 (NOVALAKE_P)
[22:59:18] [PASSED] 0xD753 (NOVALAKE_P)
[22:59:18] [PASSED] 0xD754 (NOVALAKE_P)
[22:59:18] [PASSED] 0xD755 (NOVALAKE_P)
[22:59:18] [PASSED] 0xD756 (NOVALAKE_P)
[22:59:18] [PASSED] 0xD757 (NOVALAKE_P)
[22:59:18] [PASSED] 0xD75F (NOVALAKE_P)
[22:59:18] =============== [PASSED] check_platform_desc ===============
[22:59:18] ===================== [PASSED] xe_pci ======================
[22:59:18] =================== xe_rtp (2 subtests) ====================
[22:59:18] =============== xe_rtp_process_to_sr_tests ================
[22:59:18] [PASSED] coalesce-same-reg
[22:59:18] [PASSED] no-match-no-add
[22:59:18] [PASSED] match-or
[22:59:18] [PASSED] match-or-xfail
[22:59:18] [PASSED] no-match-no-add-multiple-rules
[22:59:18] [PASSED] two-regs-two-entries
[22:59:18] [PASSED] clr-one-set-other
[22:59:18] [PASSED] set-field
[22:59:18] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[22:59:18] [PASSED] conflict-not-disjoint
[22:59:18] [PASSED] conflict-reg-type
[22:59:18] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[22:59:18] ================== xe_rtp_process_tests ===================
[22:59:18] [PASSED] active1
[22:59:18] [PASSED] active2
[22:59:18] [PASSED] active-inactive
[22:59:18] [PASSED] inactive-active
[22:59:18] [PASSED] inactive-1st_or_active-inactive
[22:59:18] [PASSED] inactive-2nd_or_active-inactive
[22:59:18] [PASSED] inactive-last_or_active-inactive
[22:59:18] [PASSED] inactive-no_or_active-inactive
[22:59:18] ============== [PASSED] xe_rtp_process_tests ===============
[22:59:18] ===================== [PASSED] xe_rtp ======================
[22:59:18] ==================== xe_wa (1 subtest) =====================
[22:59:18] ======================== xe_wa_gt =========================
[22:59:18] [PASSED] TIGERLAKE B0
[22:59:18] [PASSED] DG1 A0
[22:59:18] [PASSED] DG1 B0
[22:59:18] [PASSED] ALDERLAKE_S A0
[22:59:18] [PASSED] ALDERLAKE_S B0
[22:59:18] [PASSED] ALDERLAKE_S C0
[22:59:18] [PASSED] ALDERLAKE_S D0
[22:59:18] [PASSED] ALDERLAKE_P A0
[22:59:18] [PASSED] ALDERLAKE_P B0
[22:59:18] [PASSED] ALDERLAKE_P C0
[22:59:18] [PASSED] ALDERLAKE_S RPLS D0
[22:59:18] [PASSED] ALDERLAKE_P RPLU E0
[22:59:18] [PASSED] DG2 G10 C0
[22:59:18] [PASSED] DG2 G11 B1
[22:59:18] [PASSED] DG2 G12 A1
[22:59:18] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:59:18] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:59:18] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[22:59:18] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[22:59:18] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[22:59:18] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[22:59:18] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[22:59:18] ==================== [PASSED] xe_wa_gt =====================
[22:59:18] ====================== [PASSED] xe_wa ======================
[22:59:18] ============================================================
[22:59:18] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[22:59:18] Elapsed time: 36.481s total, 4.222s configuring, 31.642s building, 0.562s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[22:59:18] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:59:20] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:59:45] Starting KUnit Kernel (1/1)...
[22:59:45] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:59:45] ============ drm_test_pick_cmdline (2 subtests) ============
[22:59:45] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[22:59:45] =============== drm_test_pick_cmdline_named ===============
[22:59:45] [PASSED] NTSC
[22:59:45] [PASSED] NTSC-J
[22:59:45] [PASSED] PAL
[22:59:45] [PASSED] PAL-M
[22:59:45] =========== [PASSED] drm_test_pick_cmdline_named ===========
[22:59:45] ============== [PASSED] drm_test_pick_cmdline ==============
[22:59:45] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[22:59:45] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[22:59:45] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[22:59:45] =========== drm_validate_clone_mode (2 subtests) ===========
[22:59:45] ============== drm_test_check_in_clone_mode ===============
[22:59:45] [PASSED] in_clone_mode
[22:59:45] [PASSED] not_in_clone_mode
[22:59:45] ========== [PASSED] drm_test_check_in_clone_mode ===========
[22:59:45] =============== drm_test_check_valid_clones ===============
[22:59:45] [PASSED] not_in_clone_mode
[22:59:45] [PASSED] valid_clone
[22:59:45] [PASSED] invalid_clone
[22:59:45] =========== [PASSED] drm_test_check_valid_clones ===========
[22:59:45] ============= [PASSED] drm_validate_clone_mode =============
[22:59:45] ============= drm_validate_modeset (1 subtest) =============
[22:59:45] [PASSED] drm_test_check_connector_changed_modeset
[22:59:45] ============== [PASSED] drm_validate_modeset ===============
[22:59:45] ====== drm_test_bridge_get_current_state (2 subtests) ======
[22:59:45] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[22:59:45] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[22:59:45] ======== [PASSED] drm_test_bridge_get_current_state ========
[22:59:45] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[22:59:45] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[22:59:45] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[22:59:45] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[22:59:45] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[22:59:45] ============== drm_bridge_alloc (2 subtests) ===============
[22:59:45] [PASSED] drm_test_drm_bridge_alloc_basic
[22:59:45] [PASSED] drm_test_drm_bridge_alloc_get_put
[22:59:45] ================ [PASSED] drm_bridge_alloc =================
[22:59:45] ============= drm_cmdline_parser (40 subtests) =============
[22:59:45] [PASSED] drm_test_cmdline_force_d_only
[22:59:45] [PASSED] drm_test_cmdline_force_D_only_dvi
[22:59:45] [PASSED] drm_test_cmdline_force_D_only_hdmi
[22:59:45] [PASSED] drm_test_cmdline_force_D_only_not_digital
[22:59:45] [PASSED] drm_test_cmdline_force_e_only
[22:59:45] [PASSED] drm_test_cmdline_res
[22:59:45] [PASSED] drm_test_cmdline_res_vesa
[22:59:45] [PASSED] drm_test_cmdline_res_vesa_rblank
[22:59:45] [PASSED] drm_test_cmdline_res_rblank
[22:59:45] [PASSED] drm_test_cmdline_res_bpp
[22:59:45] [PASSED] drm_test_cmdline_res_refresh
[22:59:45] [PASSED] drm_test_cmdline_res_bpp_refresh
[22:59:45] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[22:59:45] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[22:59:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[22:59:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[22:59:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[22:59:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[22:59:45] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[22:59:45] [PASSED] drm_test_cmdline_res_margins_force_on
[22:59:45] [PASSED] drm_test_cmdline_res_vesa_margins
[22:59:45] [PASSED] drm_test_cmdline_name
[22:59:45] [PASSED] drm_test_cmdline_name_bpp
[22:59:45] [PASSED] drm_test_cmdline_name_option
[22:59:45] [PASSED] drm_test_cmdline_name_bpp_option
[22:59:45] [PASSED] drm_test_cmdline_rotate_0
[22:59:45] [PASSED] drm_test_cmdline_rotate_90
[22:59:45] [PASSED] drm_test_cmdline_rotate_180
[22:59:45] [PASSED] drm_test_cmdline_rotate_270
[22:59:45] [PASSED] drm_test_cmdline_hmirror
[22:59:45] [PASSED] drm_test_cmdline_vmirror
[22:59:45] [PASSED] drm_test_cmdline_margin_options
[22:59:45] [PASSED] drm_test_cmdline_multiple_options
[22:59:45] [PASSED] drm_test_cmdline_bpp_extra_and_option
[22:59:45] [PASSED] drm_test_cmdline_extra_and_option
[22:59:45] [PASSED] drm_test_cmdline_freestanding_options
[22:59:45] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[22:59:45] [PASSED] drm_test_cmdline_panel_orientation
[22:59:45] ================ drm_test_cmdline_invalid =================
[22:59:45] [PASSED] margin_only
[22:59:45] [PASSED] interlace_only
[22:59:45] [PASSED] res_missing_x
[22:59:45] [PASSED] res_missing_y
[22:59:45] [PASSED] res_bad_y
[22:59:45] [PASSED] res_missing_y_bpp
[22:59:45] [PASSED] res_bad_bpp
[22:59:45] [PASSED] res_bad_refresh
[22:59:45] [PASSED] res_bpp_refresh_force_on_off
[22:59:45] [PASSED] res_invalid_mode
[22:59:45] [PASSED] res_bpp_wrong_place_mode
[22:59:45] [PASSED] name_bpp_refresh
[22:59:45] [PASSED] name_refresh
[22:59:45] [PASSED] name_refresh_wrong_mode
[22:59:45] [PASSED] name_refresh_invalid_mode
[22:59:45] [PASSED] rotate_multiple
[22:59:45] [PASSED] rotate_invalid_val
[22:59:45] [PASSED] rotate_truncated
[22:59:45] [PASSED] invalid_option
[22:59:45] [PASSED] invalid_tv_option
[22:59:45] [PASSED] truncated_tv_option
[22:59:45] ============ [PASSED] drm_test_cmdline_invalid =============
[22:59:45] =============== drm_test_cmdline_tv_options ===============
[22:59:45] [PASSED] NTSC
[22:59:45] [PASSED] NTSC_443
[22:59:45] [PASSED] NTSC_J
[22:59:45] [PASSED] PAL
[22:59:45] [PASSED] PAL_M
[22:59:45] [PASSED] PAL_N
[22:59:45] [PASSED] SECAM
[22:59:45] [PASSED] MONO_525
[22:59:45] [PASSED] MONO_625
[22:59:45] =========== [PASSED] drm_test_cmdline_tv_options ===========
[22:59:45] =============== [PASSED] drm_cmdline_parser ================
[22:59:45] ========== drmm_connector_hdmi_init (20 subtests) ==========
[22:59:45] [PASSED] drm_test_connector_hdmi_init_valid
[22:59:45] [PASSED] drm_test_connector_hdmi_init_bpc_8
[22:59:45] [PASSED] drm_test_connector_hdmi_init_bpc_10
[22:59:45] [PASSED] drm_test_connector_hdmi_init_bpc_12
[22:59:45] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[22:59:45] [PASSED] drm_test_connector_hdmi_init_bpc_null
[22:59:45] [PASSED] drm_test_connector_hdmi_init_formats_empty
[22:59:45] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[22:59:45] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:59:45] [PASSED] supported_formats=0x9 yuv420_allowed=1
[22:59:45] [PASSED] supported_formats=0x9 yuv420_allowed=0
[22:59:45] [PASSED] supported_formats=0x3 yuv420_allowed=1
[22:59:45] [PASSED] supported_formats=0x3 yuv420_allowed=0
[22:59:45] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:59:45] [PASSED] drm_test_connector_hdmi_init_null_ddc
[22:59:45] [PASSED] drm_test_connector_hdmi_init_null_product
[22:59:45] [PASSED] drm_test_connector_hdmi_init_null_vendor
[22:59:45] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[22:59:45] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[22:59:45] [PASSED] drm_test_connector_hdmi_init_product_valid
[22:59:45] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[22:59:45] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[22:59:45] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[22:59:45] ========= drm_test_connector_hdmi_init_type_valid =========
[22:59:45] [PASSED] HDMI-A
[22:59:45] [PASSED] HDMI-B
[22:59:45] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[22:59:45] ======== drm_test_connector_hdmi_init_type_invalid ========
[22:59:45] [PASSED] Unknown
[22:59:45] [PASSED] VGA
[22:59:45] [PASSED] DVI-I
[22:59:45] [PASSED] DVI-D
[22:59:45] [PASSED] DVI-A
[22:59:45] [PASSED] Composite
[22:59:45] [PASSED] SVIDEO
[22:59:45] [PASSED] LVDS
[22:59:45] [PASSED] Component
[22:59:45] [PASSED] DIN
[22:59:45] [PASSED] DP
[22:59:45] [PASSED] TV
[22:59:45] [PASSED] eDP
[22:59:45] [PASSED] Virtual
[22:59:45] [PASSED] DSI
[22:59:45] [PASSED] DPI
[22:59:45] [PASSED] Writeback
[22:59:45] [PASSED] SPI
[22:59:45] [PASSED] USB
[22:59:45] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[22:59:45] ============ [PASSED] drmm_connector_hdmi_init =============
[22:59:45] ============= drmm_connector_init (3 subtests) =============
[22:59:45] [PASSED] drm_test_drmm_connector_init
[22:59:45] [PASSED] drm_test_drmm_connector_init_null_ddc
[22:59:45] ========= drm_test_drmm_connector_init_type_valid =========
[22:59:45] [PASSED] Unknown
[22:59:45] [PASSED] VGA
[22:59:45] [PASSED] DVI-I
[22:59:45] [PASSED] DVI-D
[22:59:45] [PASSED] DVI-A
[22:59:45] [PASSED] Composite
[22:59:45] [PASSED] SVIDEO
[22:59:45] [PASSED] LVDS
[22:59:45] [PASSED] Component
[22:59:45] [PASSED] DIN
[22:59:45] [PASSED] DP
[22:59:45] [PASSED] HDMI-A
[22:59:45] [PASSED] HDMI-B
[22:59:45] [PASSED] TV
[22:59:45] [PASSED] eDP
[22:59:45] [PASSED] Virtual
[22:59:45] [PASSED] DSI
[22:59:45] [PASSED] DPI
[22:59:45] [PASSED] Writeback
[22:59:45] [PASSED] SPI
[22:59:45] [PASSED] USB
[22:59:45] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[22:59:45] =============== [PASSED] drmm_connector_init ===============
[22:59:45] ========= drm_connector_dynamic_init (6 subtests) ==========
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_init
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_init_properties
[22:59:45] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[22:59:45] [PASSED] Unknown
[22:59:45] [PASSED] VGA
[22:59:45] [PASSED] DVI-I
[22:59:45] [PASSED] DVI-D
[22:59:45] [PASSED] DVI-A
[22:59:45] [PASSED] Composite
[22:59:45] [PASSED] SVIDEO
[22:59:45] [PASSED] LVDS
[22:59:45] [PASSED] Component
[22:59:45] [PASSED] DIN
[22:59:45] [PASSED] DP
[22:59:45] [PASSED] HDMI-A
[22:59:45] [PASSED] HDMI-B
[22:59:45] [PASSED] TV
[22:59:45] [PASSED] eDP
[22:59:45] [PASSED] Virtual
[22:59:45] [PASSED] DSI
[22:59:45] [PASSED] DPI
[22:59:45] [PASSED] Writeback
[22:59:45] [PASSED] SPI
[22:59:45] [PASSED] USB
[22:59:45] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[22:59:45] ======== drm_test_drm_connector_dynamic_init_name =========
[22:59:45] [PASSED] Unknown
[22:59:45] [PASSED] VGA
[22:59:45] [PASSED] DVI-I
[22:59:45] [PASSED] DVI-D
[22:59:45] [PASSED] DVI-A
[22:59:45] [PASSED] Composite
[22:59:45] [PASSED] SVIDEO
[22:59:45] [PASSED] LVDS
[22:59:45] [PASSED] Component
[22:59:45] [PASSED] DIN
[22:59:45] [PASSED] DP
[22:59:45] [PASSED] HDMI-A
[22:59:45] [PASSED] HDMI-B
[22:59:45] [PASSED] TV
[22:59:45] [PASSED] eDP
[22:59:45] [PASSED] Virtual
[22:59:45] [PASSED] DSI
[22:59:45] [PASSED] DPI
[22:59:45] [PASSED] Writeback
[22:59:45] [PASSED] SPI
[22:59:45] [PASSED] USB
[22:59:45] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[22:59:45] =========== [PASSED] drm_connector_dynamic_init ============
[22:59:45] ==== drm_connector_dynamic_register_early (4 subtests) =====
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[22:59:45] ====== [PASSED] drm_connector_dynamic_register_early =======
[22:59:45] ======= drm_connector_dynamic_register (7 subtests) ========
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[22:59:45] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[22:59:45] ========= [PASSED] drm_connector_dynamic_register ==========
[22:59:45] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[22:59:45] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[22:59:45] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[22:59:45] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[22:59:45] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[22:59:45] ========== drm_test_get_tv_mode_from_name_valid ===========
[22:59:45] [PASSED] NTSC
[22:59:45] [PASSED] NTSC-443
[22:59:45] [PASSED] NTSC-J
[22:59:45] [PASSED] PAL
[22:59:45] [PASSED] PAL-M
[22:59:45] [PASSED] PAL-N
[22:59:45] [PASSED] SECAM
[22:59:45] [PASSED] Mono
[22:59:45] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[22:59:45] [PASSED] drm_test_get_tv_mode_from_name_truncated
[22:59:45] ============ [PASSED] drm_get_tv_mode_from_name ============
[22:59:45] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[22:59:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[22:59:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[22:59:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[22:59:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[22:59:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[22:59:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[22:59:45] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[22:59:45] [PASSED] VIC 96
[22:59:45] [PASSED] VIC 97
[22:59:45] [PASSED] VIC 101
[22:59:45] [PASSED] VIC 102
[22:59:45] [PASSED] VIC 106
[22:59:45] [PASSED] VIC 107
[22:59:45] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[22:59:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[22:59:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[22:59:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[22:59:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[22:59:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[22:59:45] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[22:59:45] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[22:59:45] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[22:59:45] [PASSED] Automatic
[22:59:45] [PASSED] Full
[22:59:45] [PASSED] Limited 16:235
[22:59:45] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[22:59:45] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[22:59:45] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[22:59:45] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[22:59:45] === drm_test_drm_hdmi_connector_get_output_format_name ====
[22:59:45] [PASSED] RGB
[22:59:45] [PASSED] YUV 4:2:0
[22:59:45] [PASSED] YUV 4:2:2
[22:59:45] [PASSED] YUV 4:4:4
[22:59:45] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[22:59:45] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[22:59:45] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[22:59:45] ============= drm_damage_helper (21 subtests) ==============
[22:59:45] [PASSED] drm_test_damage_iter_no_damage
[22:59:45] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[22:59:45] [PASSED] drm_test_damage_iter_no_damage_src_moved
[22:59:45] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[22:59:45] [PASSED] drm_test_damage_iter_no_damage_not_visible
[22:59:45] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[22:59:45] [PASSED] drm_test_damage_iter_no_damage_no_fb
[22:59:45] [PASSED] drm_test_damage_iter_simple_damage
[22:59:45] [PASSED] drm_test_damage_iter_single_damage
[22:59:45] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[22:59:45] [PASSED] drm_test_damage_iter_single_damage_outside_src
[22:59:45] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[22:59:45] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[22:59:45] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[22:59:45] [PASSED] drm_test_damage_iter_single_damage_src_moved
[22:59:45] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[22:59:45] [PASSED] drm_test_damage_iter_damage
[22:59:45] [PASSED] drm_test_damage_iter_damage_one_intersect
[22:59:45] [PASSED] drm_test_damage_iter_damage_one_outside
[22:59:45] [PASSED] drm_test_damage_iter_damage_src_moved
[22:59:45] [PASSED] drm_test_damage_iter_damage_not_visible
[22:59:45] ================ [PASSED] drm_damage_helper ================
[22:59:45] ============== drm_dp_mst_helper (3 subtests) ==============
[22:59:45] ============== drm_test_dp_mst_calc_pbn_mode ==============
[22:59:45] [PASSED] Clock 154000 BPP 30 DSC disabled
[22:59:45] [PASSED] Clock 234000 BPP 30 DSC disabled
[22:59:45] [PASSED] Clock 297000 BPP 24 DSC disabled
[22:59:45] [PASSED] Clock 332880 BPP 24 DSC enabled
[22:59:45] [PASSED] Clock 324540 BPP 24 DSC enabled
[22:59:45] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[22:59:45] ============== drm_test_dp_mst_calc_pbn_div ===============
[22:59:45] [PASSED] Link rate 2000000 lane count 4
[22:59:45] [PASSED] Link rate 2000000 lane count 2
[22:59:45] [PASSED] Link rate 2000000 lane count 1
[22:59:45] [PASSED] Link rate 1350000 lane count 4
[22:59:45] [PASSED] Link rate 1350000 lane count 2
[22:59:45] [PASSED] Link rate 1350000 lane count 1
[22:59:45] [PASSED] Link rate 1000000 lane count 4
[22:59:45] [PASSED] Link rate 1000000 lane count 2
[22:59:45] [PASSED] Link rate 1000000 lane count 1
[22:59:45] [PASSED] Link rate 810000 lane count 4
[22:59:45] [PASSED] Link rate 810000 lane count 2
[22:59:45] [PASSED] Link rate 810000 lane count 1
[22:59:45] [PASSED] Link rate 540000 lane count 4
[22:59:45] [PASSED] Link rate 540000 lane count 2
[22:59:45] [PASSED] Link rate 540000 lane count 1
[22:59:45] [PASSED] Link rate 270000 lane count 4
[22:59:45] [PASSED] Link rate 270000 lane count 2
[22:59:45] [PASSED] Link rate 270000 lane count 1
[22:59:45] [PASSED] Link rate 162000 lane count 4
[22:59:45] [PASSED] Link rate 162000 lane count 2
[22:59:45] [PASSED] Link rate 162000 lane count 1
[22:59:45] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[22:59:45] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[22:59:45] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[22:59:45] [PASSED] DP_POWER_UP_PHY with port number
[22:59:45] [PASSED] DP_POWER_DOWN_PHY with port number
[22:59:45] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[22:59:45] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[22:59:45] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[22:59:45] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[22:59:45] [PASSED] DP_QUERY_PAYLOAD with port number
[22:59:45] [PASSED] DP_QUERY_PAYLOAD with VCPI
[22:59:45] [PASSED] DP_REMOTE_DPCD_READ with port number
[22:59:45] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[22:59:45] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[22:59:45] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[22:59:45] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[22:59:45] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[22:59:45] [PASSED] DP_REMOTE_I2C_READ with port number
[22:59:45] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[22:59:45] [PASSED] DP_REMOTE_I2C_READ with transactions array
[22:59:45] [PASSED] DP_REMOTE_I2C_WRITE with port number
[22:59:45] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[22:59:45] [PASSED] DP_REMOTE_I2C_WRITE with data array
[22:59:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[22:59:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[22:59:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[22:59:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[22:59:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[22:59:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[22:59:45] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[22:59:45] ================ [PASSED] drm_dp_mst_helper ================
[22:59:45] ================== drm_exec (7 subtests) ===================
[22:59:45] [PASSED] sanitycheck
[22:59:45] [PASSED] test_lock
[22:59:45] [PASSED] test_lock_unlock
[22:59:45] [PASSED] test_duplicates
[22:59:45] [PASSED] test_prepare
[22:59:45] [PASSED] test_prepare_array
[22:59:45] [PASSED] test_multiple_loops
[22:59:45] ==================== [PASSED] drm_exec =====================
[22:59:45] =========== drm_format_helper_test (17 subtests) ===========
[22:59:45] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[22:59:45] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[22:59:45] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[22:59:45] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[22:59:45] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[22:59:45] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[22:59:45] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[22:59:45] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[22:59:45] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[22:59:45] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[22:59:45] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[22:59:45] ============== drm_test_fb_xrgb8888_to_mono ===============
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[22:59:45] ==================== drm_test_fb_swab =====================
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ================ [PASSED] drm_test_fb_swab =================
[22:59:45] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[22:59:45] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[22:59:45] [PASSED] single_pixel_source_buffer
[22:59:45] [PASSED] single_pixel_clip_rectangle
[22:59:45] [PASSED] well_known_colors
[22:59:45] [PASSED] destination_pitch
[22:59:45] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[22:59:45] ================= drm_test_fb_clip_offset =================
[22:59:45] [PASSED] pass through
[22:59:45] [PASSED] horizontal offset
[22:59:45] [PASSED] vertical offset
[22:59:45] [PASSED] horizontal and vertical offset
[22:59:45] [PASSED] horizontal offset (custom pitch)
[22:59:45] [PASSED] vertical offset (custom pitch)
[22:59:45] [PASSED] horizontal and vertical offset (custom pitch)
[22:59:45] ============= [PASSED] drm_test_fb_clip_offset =============
[22:59:45] =================== drm_test_fb_memcpy ====================
[22:59:45] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[22:59:45] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[22:59:45] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[22:59:45] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[22:59:45] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[22:59:45] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[22:59:45] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[22:59:45] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[22:59:45] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[22:59:45] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[22:59:45] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[22:59:45] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[22:59:45] =============== [PASSED] drm_test_fb_memcpy ================
[22:59:45] ============= [PASSED] drm_format_helper_test ==============
[22:59:45] ================= drm_format (18 subtests) =================
[22:59:45] [PASSED] drm_test_format_block_width_invalid
[22:59:45] [PASSED] drm_test_format_block_width_one_plane
[22:59:45] [PASSED] drm_test_format_block_width_two_plane
[22:59:45] [PASSED] drm_test_format_block_width_three_plane
[22:59:45] [PASSED] drm_test_format_block_width_tiled
[22:59:45] [PASSED] drm_test_format_block_height_invalid
[22:59:45] [PASSED] drm_test_format_block_height_one_plane
[22:59:45] [PASSED] drm_test_format_block_height_two_plane
[22:59:45] [PASSED] drm_test_format_block_height_three_plane
[22:59:45] [PASSED] drm_test_format_block_height_tiled
[22:59:45] [PASSED] drm_test_format_min_pitch_invalid
[22:59:45] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[22:59:45] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[22:59:45] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[22:59:45] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[22:59:45] [PASSED] drm_test_format_min_pitch_two_plane
[22:59:45] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[22:59:45] [PASSED] drm_test_format_min_pitch_tiled
[22:59:45] =================== [PASSED] drm_format ====================
[22:59:45] ============== drm_framebuffer (10 subtests) ===============
[22:59:45] ========== drm_test_framebuffer_check_src_coords ==========
[22:59:45] [PASSED] Success: source fits into fb
[22:59:45] [PASSED] Fail: overflowing fb with x-axis coordinate
[22:59:45] [PASSED] Fail: overflowing fb with y-axis coordinate
[22:59:45] [PASSED] Fail: overflowing fb with source width
[22:59:45] [PASSED] Fail: overflowing fb with source height
[22:59:45] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[22:59:45] [PASSED] drm_test_framebuffer_cleanup
[22:59:45] =============== drm_test_framebuffer_create ===============
[22:59:45] [PASSED] ABGR8888 normal sizes
[22:59:45] [PASSED] ABGR8888 max sizes
[22:59:45] [PASSED] ABGR8888 pitch greater than min required
[22:59:45] [PASSED] ABGR8888 pitch less than min required
[22:59:45] [PASSED] ABGR8888 Invalid width
[22:59:45] [PASSED] ABGR8888 Invalid buffer handle
[22:59:45] [PASSED] No pixel format
[22:59:45] [PASSED] ABGR8888 Width 0
[22:59:45] [PASSED] ABGR8888 Height 0
[22:59:45] [PASSED] ABGR8888 Out of bound height * pitch combination
[22:59:45] [PASSED] ABGR8888 Large buffer offset
[22:59:45] [PASSED] ABGR8888 Buffer offset for inexistent plane
[22:59:45] [PASSED] ABGR8888 Invalid flag
[22:59:45] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[22:59:45] [PASSED] ABGR8888 Valid buffer modifier
[22:59:45] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[22:59:45] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[22:59:45] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[22:59:45] [PASSED] NV12 Normal sizes
[22:59:45] [PASSED] NV12 Max sizes
[22:59:45] [PASSED] NV12 Invalid pitch
[22:59:45] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[22:59:45] [PASSED] NV12 different modifier per-plane
[22:59:45] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[22:59:45] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[22:59:45] [PASSED] NV12 Modifier for inexistent plane
[22:59:45] [PASSED] NV12 Handle for inexistent plane
[22:59:45] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[22:59:45] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[22:59:45] [PASSED] YVU420 Normal sizes
[22:59:45] [PASSED] YVU420 Max sizes
[22:59:45] [PASSED] YVU420 Invalid pitch
[22:59:45] [PASSED] YVU420 Different pitches
[22:59:45] [PASSED] YVU420 Different buffer offsets/pitches
[22:59:45] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[22:59:45] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[22:59:45] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[22:59:45] [PASSED] YVU420 Valid modifier
[22:59:45] [PASSED] YVU420 Different modifiers per plane
[22:59:45] [PASSED] YVU420 Modifier for inexistent plane
[22:59:45] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[22:59:45] [PASSED] X0L2 Normal sizes
[22:59:45] [PASSED] X0L2 Max sizes
[22:59:45] [PASSED] X0L2 Invalid pitch
[22:59:45] [PASSED] X0L2 Pitch greater than minimum required
[22:59:45] [PASSED] X0L2 Handle for inexistent plane
[22:59:45] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[22:59:45] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[22:59:45] [PASSED] X0L2 Valid modifier
[22:59:45] [PASSED] X0L2 Modifier for inexistent plane
[22:59:45] =========== [PASSED] drm_test_framebuffer_create ===========
[22:59:45] [PASSED] drm_test_framebuffer_free
[22:59:45] [PASSED] drm_test_framebuffer_init
[22:59:45] [PASSED] drm_test_framebuffer_init_bad_format
[22:59:45] [PASSED] drm_test_framebuffer_init_dev_mismatch
[22:59:45] [PASSED] drm_test_framebuffer_lookup
[22:59:45] [PASSED] drm_test_framebuffer_lookup_inexistent
[22:59:45] [PASSED] drm_test_framebuffer_modifiers_not_supported
[22:59:45] ================= [PASSED] drm_framebuffer =================
[22:59:45] ================ drm_gem_shmem (8 subtests) ================
[22:59:45] [PASSED] drm_gem_shmem_test_obj_create
[22:59:45] [PASSED] drm_gem_shmem_test_obj_create_private
[22:59:45] [PASSED] drm_gem_shmem_test_pin_pages
[22:59:45] [PASSED] drm_gem_shmem_test_vmap
[22:59:45] [PASSED] drm_gem_shmem_test_get_sg_table
[22:59:45] [PASSED] drm_gem_shmem_test_get_pages_sgt
[22:59:45] [PASSED] drm_gem_shmem_test_madvise
[22:59:45] [PASSED] drm_gem_shmem_test_purge
[22:59:45] ================== [PASSED] drm_gem_shmem ==================
[22:59:45] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[22:59:45] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[22:59:45] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[22:59:45] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[22:59:45] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[22:59:45] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[22:59:45] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[22:59:45] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[22:59:45] [PASSED] Automatic
[22:59:45] [PASSED] Full
[22:59:45] [PASSED] Limited 16:235
[22:59:45] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[22:59:45] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[22:59:45] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[22:59:45] [PASSED] drm_test_check_disable_connector
[22:59:45] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[22:59:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[22:59:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[22:59:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[22:59:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[22:59:45] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[22:59:45] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[22:59:45] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[22:59:45] [PASSED] drm_test_check_output_bpc_dvi
[22:59:45] [PASSED] drm_test_check_output_bpc_format_vic_1
[22:59:45] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[22:59:45] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[22:59:45] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[22:59:45] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[22:59:45] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[22:59:45] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[22:59:45] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[22:59:45] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[22:59:45] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[22:59:45] [PASSED] drm_test_check_broadcast_rgb_value
[22:59:45] [PASSED] drm_test_check_bpc_8_value
[22:59:45] [PASSED] drm_test_check_bpc_10_value
[22:59:45] [PASSED] drm_test_check_bpc_12_value
[22:59:45] [PASSED] drm_test_check_format_value
[22:59:45] [PASSED] drm_test_check_tmds_char_value
[22:59:45] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[22:59:45] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[22:59:45] [PASSED] drm_test_check_mode_valid
[22:59:45] [PASSED] drm_test_check_mode_valid_reject
[22:59:45] [PASSED] drm_test_check_mode_valid_reject_rate
[22:59:45] [PASSED] drm_test_check_mode_valid_reject_max_clock
[22:59:45] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[22:59:45] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[22:59:45] [PASSED] drm_test_check_infoframes
[22:59:45] [PASSED] drm_test_check_reject_avi_infoframe
[22:59:45] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[22:59:45] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[22:59:45] [PASSED] drm_test_check_reject_audio_infoframe
[22:59:45] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[22:59:45] ================= drm_managed (2 subtests) =================
[22:59:45] [PASSED] drm_test_managed_release_action
[22:59:45] [PASSED] drm_test_managed_run_action
[22:59:45] =================== [PASSED] drm_managed ===================
[22:59:45] =================== drm_mm (6 subtests) ====================
[22:59:45] [PASSED] drm_test_mm_init
[22:59:45] [PASSED] drm_test_mm_debug
[22:59:45] [PASSED] drm_test_mm_align32
[22:59:45] [PASSED] drm_test_mm_align64
[22:59:45] [PASSED] drm_test_mm_lowest
[22:59:45] [PASSED] drm_test_mm_highest
[22:59:45] ===================== [PASSED] drm_mm ======================
[22:59:45] ============= drm_modes_analog_tv (5 subtests) =============
[22:59:45] [PASSED] drm_test_modes_analog_tv_mono_576i
[22:59:45] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[22:59:45] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[22:59:45] [PASSED] drm_test_modes_analog_tv_pal_576i
[22:59:45] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[22:59:45] =============== [PASSED] drm_modes_analog_tv ===============
[22:59:45] ============== drm_plane_helper (2 subtests) ===============
[22:59:45] =============== drm_test_check_plane_state ================
[22:59:45] [PASSED] clipping_simple
[22:59:45] [PASSED] clipping_rotate_reflect
[22:59:45] [PASSED] positioning_simple
[22:59:45] [PASSED] upscaling
[22:59:45] [PASSED] downscaling
[22:59:45] [PASSED] rounding1
[22:59:45] [PASSED] rounding2
[22:59:45] [PASSED] rounding3
[22:59:45] [PASSED] rounding4
[22:59:45] =========== [PASSED] drm_test_check_plane_state ============
[22:59:45] =========== drm_test_check_invalid_plane_state ============
[22:59:45] [PASSED] positioning_invalid
[22:59:45] [PASSED] upscaling_invalid
[22:59:45] [PASSED] downscaling_invalid
[22:59:45] ======= [PASSED] drm_test_check_invalid_plane_state ========
[22:59:45] ================ [PASSED] drm_plane_helper =================
[22:59:45] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[22:59:45] ====== drm_test_connector_helper_tv_get_modes_check =======
[22:59:45] [PASSED] None
[22:59:45] [PASSED] PAL
[22:59:45] [PASSED] NTSC
[22:59:45] [PASSED] Both, NTSC Default
[22:59:45] [PASSED] Both, PAL Default
[22:59:45] [PASSED] Both, NTSC Default, with PAL on command-line
[22:59:45] [PASSED] Both, PAL Default, with NTSC on command-line
[22:59:45] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[22:59:45] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[22:59:45] ================== drm_rect (9 subtests) ===================
[22:59:45] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[22:59:45] [PASSED] drm_test_rect_clip_scaled_not_clipped
[22:59:45] [PASSED] drm_test_rect_clip_scaled_clipped
[22:59:45] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[22:59:45] ================= drm_test_rect_intersect =================
[22:59:45] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[22:59:45] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[22:59:45] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[22:59:45] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[22:59:45] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[22:59:45] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[22:59:45] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[22:59:45] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[22:59:45] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[22:59:45] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[22:59:45] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[22:59:45] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[22:59:45] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[22:59:45] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[22:59:45] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[22:59:45] ============= [PASSED] drm_test_rect_intersect =============
[22:59:45] ================ drm_test_rect_calc_hscale ================
[22:59:45] [PASSED] normal use
[22:59:45] [PASSED] out of max range
[22:59:45] [PASSED] out of min range
[22:59:45] [PASSED] zero dst
[22:59:45] [PASSED] negative src
[22:59:45] [PASSED] negative dst
[22:59:45] ============ [PASSED] drm_test_rect_calc_hscale ============
[22:59:45] ================ drm_test_rect_calc_vscale ================
[22:59:45] [PASSED] normal use
[22:59:45] [PASSED] out of max range
[22:59:45] [PASSED] out of min range
[22:59:45] [PASSED] zero dst
[22:59:45] [PASSED] negative src
[22:59:45] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[22:59:45] ============ [PASSED] drm_test_rect_calc_vscale ============
[22:59:45] ================== drm_test_rect_rotate ===================
[22:59:45] [PASSED] reflect-x
[22:59:45] [PASSED] reflect-y
[22:59:45] [PASSED] rotate-0
[22:59:45] [PASSED] rotate-90
[22:59:45] [PASSED] rotate-180
[22:59:45] [PASSED] rotate-270
[22:59:45] ============== [PASSED] drm_test_rect_rotate ===============
[22:59:45] ================ drm_test_rect_rotate_inv =================
[22:59:45] [PASSED] reflect-x
[22:59:45] [PASSED] reflect-y
[22:59:45] [PASSED] rotate-0
[22:59:45] [PASSED] rotate-90
[22:59:45] [PASSED] rotate-180
[22:59:45] [PASSED] rotate-270
[22:59:45] ============ [PASSED] drm_test_rect_rotate_inv =============
[22:59:45] ==================== [PASSED] drm_rect =====================
[22:59:45] ============ drm_sysfb_modeset_test (1 subtest) ============
[22:59:45] ============ drm_test_sysfb_build_fourcc_list =============
[22:59:45] [PASSED] no native formats
[22:59:45] [PASSED] XRGB8888 as native format
[22:59:45] [PASSED] remove duplicates
[22:59:45] [PASSED] convert alpha formats
[22:59:45] [PASSED] random formats
[22:59:45] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[22:59:45] ============= [PASSED] drm_sysfb_modeset_test ==============
[22:59:45] ================== drm_fixp (2 subtests) ===================
[22:59:45] [PASSED] drm_test_int2fixp
[22:59:45] [PASSED] drm_test_sm2fixp
[22:59:45] ==================== [PASSED] drm_fixp =====================
[22:59:45] ============================================================
[22:59:45] Testing complete. Ran 621 tests: passed: 621
[22:59:45] Elapsed time: 27.149s total, 1.691s configuring, 25.291s building, 0.113s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[22:59:45] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:59:47] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:59:57] Starting KUnit Kernel (1/1)...
[22:59:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:59:57] ================= ttm_device (5 subtests) ==================
[22:59:57] [PASSED] ttm_device_init_basic
[22:59:57] [PASSED] ttm_device_init_multiple
[22:59:57] [PASSED] ttm_device_fini_basic
[22:59:57] [PASSED] ttm_device_init_no_vma_man
[22:59:57] ================== ttm_device_init_pools ==================
[22:59:57] [PASSED] No DMA allocations, no DMA32 required
[22:59:57] [PASSED] DMA allocations, DMA32 required
[22:59:57] [PASSED] No DMA allocations, DMA32 required
[22:59:57] [PASSED] DMA allocations, no DMA32 required
[22:59:57] ============== [PASSED] ttm_device_init_pools ==============
[22:59:57] =================== [PASSED] ttm_device ====================
[22:59:57] ================== ttm_pool (8 subtests) ===================
[22:59:57] ================== ttm_pool_alloc_basic ===================
[22:59:57] [PASSED] One page
[22:59:57] [PASSED] More than one page
[22:59:57] [PASSED] Above the allocation limit
[22:59:57] [PASSED] One page, with coherent DMA mappings enabled
[22:59:57] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:59:57] ============== [PASSED] ttm_pool_alloc_basic ===============
[22:59:57] ============== ttm_pool_alloc_basic_dma_addr ==============
[22:59:57] [PASSED] One page
[22:59:57] [PASSED] More than one page
[22:59:57] [PASSED] Above the allocation limit
[22:59:57] [PASSED] One page, with coherent DMA mappings enabled
[22:59:57] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:59:57] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[22:59:57] [PASSED] ttm_pool_alloc_order_caching_match
[22:59:57] [PASSED] ttm_pool_alloc_caching_mismatch
[22:59:57] [PASSED] ttm_pool_alloc_order_mismatch
[22:59:57] [PASSED] ttm_pool_free_dma_alloc
[22:59:57] [PASSED] ttm_pool_free_no_dma_alloc
[22:59:57] [PASSED] ttm_pool_fini_basic
[22:59:57] ==================== [PASSED] ttm_pool =====================
[22:59:57] ================ ttm_resource (8 subtests) =================
[22:59:57] ================= ttm_resource_init_basic =================
[22:59:57] [PASSED] Init resource in TTM_PL_SYSTEM
[22:59:57] [PASSED] Init resource in TTM_PL_VRAM
[22:59:57] [PASSED] Init resource in a private placement
[22:59:57] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[22:59:57] ============= [PASSED] ttm_resource_init_basic =============
[22:59:57] [PASSED] ttm_resource_init_pinned
[22:59:57] [PASSED] ttm_resource_fini_basic
[22:59:57] [PASSED] ttm_resource_manager_init_basic
[22:59:57] [PASSED] ttm_resource_manager_usage_basic
[22:59:57] [PASSED] ttm_resource_manager_set_used_basic
[22:59:57] [PASSED] ttm_sys_man_alloc_basic
[22:59:57] [PASSED] ttm_sys_man_free_basic
[22:59:57] ================== [PASSED] ttm_resource ===================
[22:59:57] =================== ttm_tt (15 subtests) ===================
[22:59:57] ==================== ttm_tt_init_basic ====================
[22:59:57] [PASSED] Page-aligned size
[22:59:57] [PASSED] Extra pages requested
[22:59:57] ================ [PASSED] ttm_tt_init_basic ================
[22:59:57] [PASSED] ttm_tt_init_misaligned
[22:59:57] [PASSED] ttm_tt_fini_basic
[22:59:57] [PASSED] ttm_tt_fini_sg
[22:59:57] [PASSED] ttm_tt_fini_shmem
[22:59:57] [PASSED] ttm_tt_create_basic
[22:59:57] [PASSED] ttm_tt_create_invalid_bo_type
[22:59:57] [PASSED] ttm_tt_create_ttm_exists
[22:59:57] [PASSED] ttm_tt_create_failed
[22:59:57] [PASSED] ttm_tt_destroy_basic
[22:59:57] [PASSED] ttm_tt_populate_null_ttm
[22:59:57] [PASSED] ttm_tt_populate_populated_ttm
[22:59:57] [PASSED] ttm_tt_unpopulate_basic
[22:59:57] [PASSED] ttm_tt_unpopulate_empty_ttm
[22:59:57] [PASSED] ttm_tt_swapin_basic
[22:59:57] ===================== [PASSED] ttm_tt ======================
[22:59:57] =================== ttm_bo (14 subtests) ===================
[22:59:57] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[22:59:57] [PASSED] Cannot be interrupted and sleeps
[22:59:57] [PASSED] Cannot be interrupted, locks straight away
[22:59:57] [PASSED] Can be interrupted, sleeps
[22:59:57] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[22:59:57] [PASSED] ttm_bo_reserve_locked_no_sleep
[22:59:57] [PASSED] ttm_bo_reserve_no_wait_ticket
[22:59:57] [PASSED] ttm_bo_reserve_double_resv
[22:59:57] [PASSED] ttm_bo_reserve_interrupted
[22:59:57] [PASSED] ttm_bo_reserve_deadlock
[22:59:57] [PASSED] ttm_bo_unreserve_basic
[22:59:57] [PASSED] ttm_bo_unreserve_pinned
[22:59:57] [PASSED] ttm_bo_unreserve_bulk
[22:59:57] [PASSED] ttm_bo_fini_basic
[22:59:57] [PASSED] ttm_bo_fini_shared_resv
[22:59:57] [PASSED] ttm_bo_pin_basic
[22:59:57] [PASSED] ttm_bo_pin_unpin_resource
[22:59:57] [PASSED] ttm_bo_multiple_pin_one_unpin
[22:59:57] ===================== [PASSED] ttm_bo ======================
[22:59:57] ============== ttm_bo_validate (21 subtests) ===============
[22:59:57] ============== ttm_bo_init_reserved_sys_man ===============
[22:59:57] [PASSED] Buffer object for userspace
[22:59:57] [PASSED] Kernel buffer object
[22:59:57] [PASSED] Shared buffer object
[22:59:57] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[22:59:57] ============== ttm_bo_init_reserved_mock_man ==============
[22:59:57] [PASSED] Buffer object for userspace
[22:59:57] [PASSED] Kernel buffer object
[22:59:57] [PASSED] Shared buffer object
[22:59:57] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[22:59:57] [PASSED] ttm_bo_init_reserved_resv
[22:59:57] ================== ttm_bo_validate_basic ==================
[22:59:57] [PASSED] Buffer object for userspace
[22:59:57] [PASSED] Kernel buffer object
[22:59:57] [PASSED] Shared buffer object
[22:59:57] ============== [PASSED] ttm_bo_validate_basic ==============
[22:59:57] [PASSED] ttm_bo_validate_invalid_placement
[22:59:57] ============= ttm_bo_validate_same_placement ==============
[22:59:57] [PASSED] System manager
[22:59:57] [PASSED] VRAM manager
[22:59:57] ========= [PASSED] ttm_bo_validate_same_placement ==========
[22:59:57] [PASSED] ttm_bo_validate_failed_alloc
[22:59:57] [PASSED] ttm_bo_validate_pinned
[22:59:57] [PASSED] ttm_bo_validate_busy_placement
[22:59:57] ================ ttm_bo_validate_multihop =================
[22:59:57] [PASSED] Buffer object for userspace
[22:59:57] [PASSED] Kernel buffer object
[22:59:57] [PASSED] Shared buffer object
[22:59:57] ============ [PASSED] ttm_bo_validate_multihop =============
[22:59:57] ========== ttm_bo_validate_no_placement_signaled ==========
[22:59:57] [PASSED] Buffer object in system domain, no page vector
[22:59:57] [PASSED] Buffer object in system domain with an existing page vector
[22:59:57] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[22:59:57] ======== ttm_bo_validate_no_placement_not_signaled ========
[22:59:57] [PASSED] Buffer object for userspace
[22:59:57] [PASSED] Kernel buffer object
[22:59:57] [PASSED] Shared buffer object
[22:59:57] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[22:59:57] [PASSED] ttm_bo_validate_move_fence_signaled
[22:59:57] ========= ttm_bo_validate_move_fence_not_signaled =========
[22:59:57] [PASSED] Waits for GPU
[22:59:57] [PASSED] Tries to lock straight away
[22:59:57] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[22:59:57] [PASSED] ttm_bo_validate_happy_evict
[22:59:57] [PASSED] ttm_bo_validate_all_pinned_evict
[22:59:57] [PASSED] ttm_bo_validate_allowed_only_evict
[22:59:57] [PASSED] ttm_bo_validate_deleted_evict
[22:59:57] [PASSED] ttm_bo_validate_busy_domain_evict
[22:59:57] [PASSED] ttm_bo_validate_evict_gutting
[22:59:57] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[22:59:57] ================= [PASSED] ttm_bo_validate =================
[22:59:57] ============================================================
[22:59:57] Testing complete. Ran 101 tests: passed: 101
[22:59:57] Elapsed time: 11.436s total, 1.638s configuring, 9.582s building, 0.184s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure
2026-02-20 22:53 [PATCH v5 1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure Zhanjun Dong
2026-02-20 23:00 ` ✓ CI.KUnit: success for series starting with [v5,1/1] " Patchwork
@ 2026-02-20 23:34 ` Patchwork
2026-02-23 11:58 ` ✗ Xe.CI.FULL: failure " Patchwork
` (4 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-20 23:34 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 918 bytes --]
== Series Details ==
Series: series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure
URL : https://patchwork.freedesktop.org/series/161912/
State : success
== Summary ==
CI Bug Log - changes from xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d_BAT -> xe-pw-161912v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d -> xe-pw-161912v1
IGT_8764: 8764
xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d: 7c2ed7e89e283615b5f133d0205061934541e26d
xe-pw-161912v1: 161912v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/index.html
[-- Attachment #2: Type: text/html, Size: 1466 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure
2026-02-20 22:53 [PATCH v5 1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure Zhanjun Dong
2026-02-20 23:00 ` ✓ CI.KUnit: success for series starting with [v5,1/1] " Patchwork
2026-02-20 23:34 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-23 11:58 ` Patchwork
2026-02-24 15:24 ` ✓ CI.KUnit: success for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev2) Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-23 11:58 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 27440 bytes --]
== Series Details ==
Series: series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure
URL : https://patchwork.freedesktop.org/series/161912/
State : failure
== Summary ==
CI Bug Log - changes from xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d_FULL -> xe-pw-161912v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-161912v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-161912v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-161912v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_vblank@ts-continuation-suspend:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-9/igt@kms_vblank@ts-continuation-suspend.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-1/igt@kms_vblank@ts-continuation-suspend.html
* igt@xe_exec_balancer@many-execqueues-virtual-userptr-rebind:
- shard-bmg: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-4/igt@xe_exec_balancer@many-execqueues-virtual-userptr-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-5/igt@xe_exec_balancer@many-execqueues-virtual-userptr-rebind.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_exec_queue_create:
- shard-lnl: [PASS][5] -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-lnl-8/igt@xe_fault_injection@exec-queue-create-fail-xe_exec_queue_create.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-3/igt@xe_fault_injection@exec-queue-create-fail-xe_exec_queue_create.html
Known issues
------------
Here are the changes found in xe-pw-161912v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1512])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-1:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2652]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-1.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#373])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-1:
- shard-bmg: NOTRUN -> [FAIL][14] ([Intel XE#3304]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1424])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1421]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][17] -> [FAIL][18] ([Intel XE#301]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1397] / [Intel XE#1745])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1397])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#7178])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#651]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#4141])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7061])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2311])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#7061])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#656]) +5 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#6900])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_cursor@primary:
- shard-bmg: [PASS][29] -> [FAIL][30] ([Intel XE#7201] / [Intel XE#7299])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-5/igt@kms_plane_cursor@primary.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-2/igt@kms_plane_cursor@primary.html
* igt@kms_plane_cursor@primary@pipe-c-dp-2-size-256:
- shard-bmg: NOTRUN -> [FAIL][31] ([Intel XE#7201] / [Intel XE#7299])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-2/igt@kms_plane_cursor@primary@pipe-c-dp-2-size-256.html
* igt@kms_plane_lowres@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#599])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#870])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-5/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#1435])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-5/igt@kms_setmode@basic-clone-single-crtc.html
* igt@xe_eudebug@attach-debug-metadata:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#4837])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@xe_eudebug@attach-debug-metadata.html
* igt@xe_eudebug_online@single-step-one:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#4837] / [Intel XE#6665])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@xe_eudebug_online@single-step-one.html
* igt@xe_evict@evict-small:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#6540] / [Intel XE#688])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@xe_evict@evict-small.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1392]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-priority:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#6874]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-5/igt@xe_exec_multi_queue@few-execs-preempt-mode-priority.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#6874]) +4 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#6196])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma.html
* igt@xe_exec_threads@threads-multi-queue-cm-basic:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#7138]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-cm-basic.html
* igt@xe_exec_threads@threads-multi-queue-rebind-err:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7138])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-rebind-err.html
* igt@xe_mmap@pci-membarrier-parallel:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#5100])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@xe_mmap@pci-membarrier-parallel.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#6964])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#579])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#944]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#3342])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@xe_sriov_flr@flr-each-isolation.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][51] -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][53] ([Intel XE#301]) -> [PASS][54] +1 other test pass
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [INCOMPLETE][55] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][56] +1 other test pass
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][57] ([Intel XE#5625]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_exec_system_allocator@twice-large-mmap-shared-remap-dontunmap:
- shard-bmg: [DMESG-FAIL][59] ([Intel XE#5213] / [Intel XE#5545] / [Intel XE#6652]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@xe_exec_system_allocator@twice-large-mmap-shared-remap-dontunmap.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@xe_exec_system_allocator@twice-large-mmap-shared-remap-dontunmap.html
* igt@xe_exec_system_allocator@twice-mmap-free-nomemset:
- shard-bmg: [SKIP][61] ([Intel XE#6703]) -> [PASS][62] +36 other tests pass
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@xe_exec_system_allocator@twice-mmap-free-nomemset.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@xe_exec_system_allocator@twice-mmap-free-nomemset.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-lnl: [ABORT][63] ([Intel XE#4757]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-lnl-2/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-lnl-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [SKIP][65] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@xe_sriov_flr@flr-each-isolation.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@xe_sriov_flr@flr-each-isolation.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][67] ([Intel XE#6703]) -> [SKIP][68] ([Intel XE#2887])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-bmg: [SKIP][69] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][70] ([Intel XE#2320])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: [SKIP][71] ([Intel XE#6703]) -> [SKIP][72] ([Intel XE#7178])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][73] ([Intel XE#6703]) -> [SKIP][74] ([Intel XE#2311])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
- shard-bmg: [SKIP][75] ([Intel XE#6703]) -> [SKIP][76] ([Intel XE#2313])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][77] ([Intel XE#3544]) -> [SKIP][78] ([Intel XE#3374] / [Intel XE#3544])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: [SKIP][79] ([Intel XE#6703]) -> [SKIP][80] ([Intel XE#6911])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: [SKIP][81] ([Intel XE#6703]) -> [SKIP][82] ([Intel XE#1499])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@kms_vrr@flip-suspend.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@kms_vrr@flip-suspend.html
* igt@xe_eudebug@attach-debug-metadata:
- shard-bmg: [SKIP][83] ([Intel XE#6703]) -> [SKIP][84] ([Intel XE#4837])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@xe_eudebug@attach-debug-metadata.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@xe_eudebug@attach-debug-metadata.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue:
- shard-bmg: [SKIP][85] ([Intel XE#6703]) -> [SKIP][86] ([Intel XE#2322])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem:
- shard-bmg: [SKIP][87] ([Intel XE#6703]) -> [SKIP][88] ([Intel XE#6874]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-bmg: [SKIP][89] ([Intel XE#6703]) -> [SKIP][90] ([Intel XE#944])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d/shard-bmg-2/igt@xe_query@multigpu-query-pxp-status.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/shard-bmg-6/igt@xe_query@multigpu-query-pxp-status.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[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#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4757
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7201
[Intel XE#7299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7299
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d -> xe-pw-161912v1
IGT_8764: 8764
xe-4584-7c2ed7e89e283615b5f133d0205061934541e26d: 7c2ed7e89e283615b5f133d0205061934541e26d
xe-pw-161912v1: 161912v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v1/index.html
[-- Attachment #2: Type: text/html, Size: 31506 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev2)
2026-02-20 22:53 [PATCH v5 1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure Zhanjun Dong
` (2 preceding siblings ...)
2026-02-23 11:58 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-24 15:24 ` Patchwork
2026-02-25 23:41 ` ✓ CI.KUnit: success for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev3) Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-24 15:24 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
== Series Details ==
Series: series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev2)
URL : https://patchwork.freedesktop.org/series/161912/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:23:14] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15: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=25
[15:23:56] Starting KUnit Kernel (1/1)...
[15:23:56] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:23:56] ================== guc_buf (11 subtests) ===================
[15:23:56] [PASSED] test_smallest
[15:23:56] [PASSED] test_largest
[15:23:57] [PASSED] test_granular
[15:23:57] [PASSED] test_unique
[15:23:57] [PASSED] test_overlap
[15:23:57] [PASSED] test_reusable
[15:23:57] [PASSED] test_too_big
[15:23:57] [PASSED] test_flush
[15:23:57] [PASSED] test_lookup
[15:23:57] [PASSED] test_data
[15:23:57] [PASSED] test_class
[15:23:57] ===================== [PASSED] guc_buf =====================
[15:23:57] =================== guc_dbm (7 subtests) ===================
[15:23:57] [PASSED] test_empty
[15:23:57] [PASSED] test_default
[15:23:57] ======================== test_size ========================
[15:23:57] [PASSED] 4
[15:23:57] [PASSED] 8
[15:23:57] [PASSED] 32
[15:23:57] [PASSED] 256
[15:23:57] ==================== [PASSED] test_size ====================
[15:23:57] ======================= test_reuse ========================
[15:23:57] [PASSED] 4
[15:23:57] [PASSED] 8
[15:23:57] [PASSED] 32
[15:23:57] [PASSED] 256
[15:23:57] =================== [PASSED] test_reuse ====================
[15:23:57] =================== test_range_overlap ====================
[15:23:57] [PASSED] 4
[15:23:57] [PASSED] 8
[15:23:57] [PASSED] 32
[15:23:57] [PASSED] 256
[15:23:57] =============== [PASSED] test_range_overlap ================
[15:23:57] =================== test_range_compact ====================
[15:23:57] [PASSED] 4
[15:23:57] [PASSED] 8
[15:23:57] [PASSED] 32
[15:23:57] [PASSED] 256
[15:23:57] =============== [PASSED] test_range_compact ================
[15:23:57] ==================== test_range_spare =====================
[15:23:57] [PASSED] 4
[15:23:57] [PASSED] 8
[15:23:57] [PASSED] 32
[15:23:57] [PASSED] 256
[15:23:57] ================ [PASSED] test_range_spare =================
[15:23:57] ===================== [PASSED] guc_dbm =====================
[15:23:57] =================== guc_idm (6 subtests) ===================
[15:23:57] [PASSED] bad_init
[15:23:57] [PASSED] no_init
[15:23:57] [PASSED] init_fini
[15:23:57] [PASSED] check_used
[15:23:57] [PASSED] check_quota
[15:23:57] [PASSED] check_all
[15:23:57] ===================== [PASSED] guc_idm =====================
[15:23:57] ================== no_relay (3 subtests) ===================
[15:23:57] [PASSED] xe_drops_guc2pf_if_not_ready
[15:23:57] [PASSED] xe_drops_guc2vf_if_not_ready
[15:23:57] [PASSED] xe_rejects_send_if_not_ready
[15:23:57] ==================== [PASSED] no_relay =====================
[15:23:57] ================== pf_relay (14 subtests) ==================
[15:23:57] [PASSED] pf_rejects_guc2pf_too_short
[15:23:57] [PASSED] pf_rejects_guc2pf_too_long
[15:23:57] [PASSED] pf_rejects_guc2pf_no_payload
[15:23:57] [PASSED] pf_fails_no_payload
[15:23:57] [PASSED] pf_fails_bad_origin
[15:23:57] [PASSED] pf_fails_bad_type
[15:23:57] [PASSED] pf_txn_reports_error
[15:23:57] [PASSED] pf_txn_sends_pf2guc
[15:23:57] [PASSED] pf_sends_pf2guc
[15:23:57] [SKIPPED] pf_loopback_nop
[15:23:57] [SKIPPED] pf_loopback_echo
[15:23:57] [SKIPPED] pf_loopback_fail
[15:23:57] [SKIPPED] pf_loopback_busy
[15:23:57] [SKIPPED] pf_loopback_retry
[15:23:57] ==================== [PASSED] pf_relay =====================
[15:23:57] ================== vf_relay (3 subtests) ===================
[15:23:57] [PASSED] vf_rejects_guc2vf_too_short
[15:23:57] [PASSED] vf_rejects_guc2vf_too_long
[15:23:57] [PASSED] vf_rejects_guc2vf_no_payload
[15:23:57] ==================== [PASSED] vf_relay =====================
[15:23:57] ================ pf_gt_config (9 subtests) =================
[15:23:57] [PASSED] fair_contexts_1vf
[15:23:57] [PASSED] fair_doorbells_1vf
[15:23:57] [PASSED] fair_ggtt_1vf
[15:23:57] ====================== fair_vram_1vf ======================
[15:23:57] [PASSED] 3.50 GiB
[15:23:57] [PASSED] 11.5 GiB
[15:23:57] [PASSED] 15.5 GiB
[15:23:57] [PASSED] 31.5 GiB
[15:23:57] [PASSED] 63.5 GiB
[15:23:57] [PASSED] 13.9 GiB
[15:23:57] ================== [PASSED] fair_vram_1vf ==================
[15:23:57] ================ fair_vram_1vf_admin_only =================
[15:23:57] [PASSED] 3.50 GiB
[15:23:57] [PASSED] 11.5 GiB
[15:23:57] [PASSED] 15.5 GiB
[15:23:57] [PASSED] 31.5 GiB
[15:23:57] [PASSED] 63.5 GiB
[15:23:57] [PASSED] 13.9 GiB
[15:23:57] ============ [PASSED] fair_vram_1vf_admin_only =============
[15:23:57] ====================== fair_contexts ======================
[15:23:57] [PASSED] 1 VF
[15:23:57] [PASSED] 2 VFs
[15:23:57] [PASSED] 3 VFs
[15:23:57] [PASSED] 4 VFs
[15:23:57] [PASSED] 5 VFs
[15:23:57] [PASSED] 6 VFs
[15:23:57] [PASSED] 7 VFs
[15:23:57] [PASSED] 8 VFs
[15:23:57] [PASSED] 9 VFs
[15:23:57] [PASSED] 10 VFs
[15:23:57] [PASSED] 11 VFs
[15:23:57] [PASSED] 12 VFs
[15:23:57] [PASSED] 13 VFs
[15:23:57] [PASSED] 14 VFs
[15:23:57] [PASSED] 15 VFs
[15:23:57] [PASSED] 16 VFs
[15:23:57] [PASSED] 17 VFs
[15:23:57] [PASSED] 18 VFs
[15:23:57] [PASSED] 19 VFs
[15:23:57] [PASSED] 20 VFs
[15:23:57] [PASSED] 21 VFs
[15:23:57] [PASSED] 22 VFs
[15:23:57] [PASSED] 23 VFs
[15:23:57] [PASSED] 24 VFs
[15:23:57] [PASSED] 25 VFs
[15:23:57] [PASSED] 26 VFs
[15:23:57] [PASSED] 27 VFs
[15:23:57] [PASSED] 28 VFs
[15:23:57] [PASSED] 29 VFs
[15:23:57] [PASSED] 30 VFs
[15:23:57] [PASSED] 31 VFs
[15:23:57] [PASSED] 32 VFs
[15:23:57] [PASSED] 33 VFs
[15:23:57] [PASSED] 34 VFs
[15:23:57] [PASSED] 35 VFs
[15:23:57] [PASSED] 36 VFs
[15:23:57] [PASSED] 37 VFs
[15:23:57] [PASSED] 38 VFs
[15:23:57] [PASSED] 39 VFs
[15:23:57] [PASSED] 40 VFs
[15:23:57] [PASSED] 41 VFs
[15:23:57] [PASSED] 42 VFs
[15:23:57] [PASSED] 43 VFs
[15:23:57] [PASSED] 44 VFs
[15:23:57] [PASSED] 45 VFs
[15:23:57] [PASSED] 46 VFs
[15:23:57] [PASSED] 47 VFs
[15:23:57] [PASSED] 48 VFs
[15:23:57] [PASSED] 49 VFs
[15:23:57] [PASSED] 50 VFs
[15:23:57] [PASSED] 51 VFs
[15:23:57] [PASSED] 52 VFs
[15:23:57] [PASSED] 53 VFs
[15:23:57] [PASSED] 54 VFs
[15:23:57] [PASSED] 55 VFs
[15:23:57] [PASSED] 56 VFs
[15:23:57] [PASSED] 57 VFs
[15:23:57] [PASSED] 58 VFs
[15:23:57] [PASSED] 59 VFs
[15:23:57] [PASSED] 60 VFs
[15:23:57] [PASSED] 61 VFs
[15:23:57] [PASSED] 62 VFs
[15:23:57] [PASSED] 63 VFs
[15:23:57] ================== [PASSED] fair_contexts ==================
[15:23:57] ===================== fair_doorbells ======================
[15:23:57] [PASSED] 1 VF
[15:23:57] [PASSED] 2 VFs
[15:23:57] [PASSED] 3 VFs
[15:23:57] [PASSED] 4 VFs
[15:23:57] [PASSED] 5 VFs
[15:23:57] [PASSED] 6 VFs
[15:23:57] [PASSED] 7 VFs
[15:23:57] [PASSED] 8 VFs
[15:23:57] [PASSED] 9 VFs
[15:23:57] [PASSED] 10 VFs
[15:23:57] [PASSED] 11 VFs
[15:23:57] [PASSED] 12 VFs
[15:23:57] [PASSED] 13 VFs
[15:23:57] [PASSED] 14 VFs
[15:23:57] [PASSED] 15 VFs
[15:23:57] [PASSED] 16 VFs
[15:23:57] [PASSED] 17 VFs
[15:23:57] [PASSED] 18 VFs
[15:23:57] [PASSED] 19 VFs
[15:23:57] [PASSED] 20 VFs
[15:23:57] [PASSED] 21 VFs
[15:23:57] [PASSED] 22 VFs
[15:23:57] [PASSED] 23 VFs
[15:23:57] [PASSED] 24 VFs
[15:23:57] [PASSED] 25 VFs
[15:23:57] [PASSED] 26 VFs
[15:23:57] [PASSED] 27 VFs
[15:23:57] [PASSED] 28 VFs
[15:23:57] [PASSED] 29 VFs
[15:23:57] [PASSED] 30 VFs
[15:23:57] [PASSED] 31 VFs
[15:23:57] [PASSED] 32 VFs
[15:23:57] [PASSED] 33 VFs
[15:23:57] [PASSED] 34 VFs
[15:23:57] [PASSED] 35 VFs
[15:23:57] [PASSED] 36 VFs
[15:23:57] [PASSED] 37 VFs
[15:23:57] [PASSED] 38 VFs
[15:23:57] [PASSED] 39 VFs
[15:23:57] [PASSED] 40 VFs
[15:23:57] [PASSED] 41 VFs
[15:23:57] [PASSED] 42 VFs
[15:23:57] [PASSED] 43 VFs
[15:23:57] [PASSED] 44 VFs
[15:23:57] [PASSED] 45 VFs
[15:23:57] [PASSED] 46 VFs
[15:23:57] [PASSED] 47 VFs
[15:23:57] [PASSED] 48 VFs
[15:23:57] [PASSED] 49 VFs
[15:23:57] [PASSED] 50 VFs
[15:23:57] [PASSED] 51 VFs
[15:23:57] [PASSED] 52 VFs
[15:23:57] [PASSED] 53 VFs
[15:23:57] [PASSED] 54 VFs
[15:23:57] [PASSED] 55 VFs
[15:23:57] [PASSED] 56 VFs
[15:23:57] [PASSED] 57 VFs
[15:23:57] [PASSED] 58 VFs
[15:23:57] [PASSED] 59 VFs
[15:23:57] [PASSED] 60 VFs
[15:23:57] [PASSED] 61 VFs
[15:23:57] [PASSED] 62 VFs
[15:23:57] [PASSED] 63 VFs
[15:23:57] ================= [PASSED] fair_doorbells ==================
[15:23:57] ======================== fair_ggtt ========================
[15:23:57] [PASSED] 1 VF
[15:23:57] [PASSED] 2 VFs
[15:23:57] [PASSED] 3 VFs
[15:23:57] [PASSED] 4 VFs
[15:23:57] [PASSED] 5 VFs
[15:23:57] [PASSED] 6 VFs
[15:23:57] [PASSED] 7 VFs
[15:23:57] [PASSED] 8 VFs
[15:23:57] [PASSED] 9 VFs
[15:23:57] [PASSED] 10 VFs
[15:23:57] [PASSED] 11 VFs
[15:23:57] [PASSED] 12 VFs
[15:23:57] [PASSED] 13 VFs
[15:23:57] [PASSED] 14 VFs
[15:23:57] [PASSED] 15 VFs
[15:23:57] [PASSED] 16 VFs
[15:23:57] [PASSED] 17 VFs
[15:23:57] [PASSED] 18 VFs
[15:23:57] [PASSED] 19 VFs
[15:23:57] [PASSED] 20 VFs
[15:23:57] [PASSED] 21 VFs
[15:23:57] [PASSED] 22 VFs
[15:23:57] [PASSED] 23 VFs
[15:23:57] [PASSED] 24 VFs
[15:23:57] [PASSED] 25 VFs
[15:23:57] [PASSED] 26 VFs
[15:23:57] [PASSED] 27 VFs
[15:23:57] [PASSED] 28 VFs
[15:23:57] [PASSED] 29 VFs
[15:23:57] [PASSED] 30 VFs
[15:23:57] [PASSED] 31 VFs
[15:23:57] [PASSED] 32 VFs
[15:23:57] [PASSED] 33 VFs
[15:23:57] [PASSED] 34 VFs
[15:23:57] [PASSED] 35 VFs
[15:23:57] [PASSED] 36 VFs
[15:23:57] [PASSED] 37 VFs
[15:23:57] [PASSED] 38 VFs
[15:23:57] [PASSED] 39 VFs
[15:23:57] [PASSED] 40 VFs
[15:23:57] [PASSED] 41 VFs
[15:23:57] [PASSED] 42 VFs
[15:23:57] [PASSED] 43 VFs
[15:23:57] [PASSED] 44 VFs
[15:23:57] [PASSED] 45 VFs
[15:23:57] [PASSED] 46 VFs
[15:23:57] [PASSED] 47 VFs
[15:23:57] [PASSED] 48 VFs
[15:23:57] [PASSED] 49 VFs
[15:23:57] [PASSED] 50 VFs
[15:23:57] [PASSED] 51 VFs
[15:23:57] [PASSED] 52 VFs
[15:23:57] [PASSED] 53 VFs
[15:23:57] [PASSED] 54 VFs
[15:23:57] [PASSED] 55 VFs
[15:23:57] [PASSED] 56 VFs
[15:23:57] [PASSED] 57 VFs
[15:23:57] [PASSED] 58 VFs
[15:23:57] [PASSED] 59 VFs
[15:23:57] [PASSED] 60 VFs
[15:23:57] [PASSED] 61 VFs
[15:23:57] [PASSED] 62 VFs
[15:23:57] [PASSED] 63 VFs
[15:23:57] ==================== [PASSED] fair_ggtt ====================
[15:23:57] ======================== fair_vram ========================
[15:23:57] [PASSED] 1 VF
[15:23:57] [PASSED] 2 VFs
[15:23:57] [PASSED] 3 VFs
[15:23:57] [PASSED] 4 VFs
[15:23:57] [PASSED] 5 VFs
[15:23:57] [PASSED] 6 VFs
[15:23:57] [PASSED] 7 VFs
[15:23:57] [PASSED] 8 VFs
[15:23:57] [PASSED] 9 VFs
[15:23:57] [PASSED] 10 VFs
[15:23:57] [PASSED] 11 VFs
[15:23:57] [PASSED] 12 VFs
[15:23:57] [PASSED] 13 VFs
[15:23:57] [PASSED] 14 VFs
[15:23:57] [PASSED] 15 VFs
[15:23:57] [PASSED] 16 VFs
[15:23:57] [PASSED] 17 VFs
[15:23:57] [PASSED] 18 VFs
[15:23:57] [PASSED] 19 VFs
[15:23:57] [PASSED] 20 VFs
[15:23:57] [PASSED] 21 VFs
[15:23:57] [PASSED] 22 VFs
[15:23:57] [PASSED] 23 VFs
[15:23:57] [PASSED] 24 VFs
[15:23:57] [PASSED] 25 VFs
[15:23:57] [PASSED] 26 VFs
[15:23:57] [PASSED] 27 VFs
[15:23:57] [PASSED] 28 VFs
[15:23:57] [PASSED] 29 VFs
[15:23:57] [PASSED] 30 VFs
[15:23:57] [PASSED] 31 VFs
[15:23:57] [PASSED] 32 VFs
[15:23:57] [PASSED] 33 VFs
[15:23:57] [PASSED] 34 VFs
[15:23:57] [PASSED] 35 VFs
[15:23:57] [PASSED] 36 VFs
[15:23:57] [PASSED] 37 VFs
[15:23:57] [PASSED] 38 VFs
[15:23:57] [PASSED] 39 VFs
[15:23:57] [PASSED] 40 VFs
[15:23:57] [PASSED] 41 VFs
[15:23:57] [PASSED] 42 VFs
[15:23:57] [PASSED] 43 VFs
[15:23:57] [PASSED] 44 VFs
[15:23:57] [PASSED] 45 VFs
[15:23:57] [PASSED] 46 VFs
[15:23:57] [PASSED] 47 VFs
[15:23:57] [PASSED] 48 VFs
[15:23:57] [PASSED] 49 VFs
[15:23:57] [PASSED] 50 VFs
[15:23:57] [PASSED] 51 VFs
[15:23:57] [PASSED] 52 VFs
[15:23:57] [PASSED] 53 VFs
[15:23:57] [PASSED] 54 VFs
[15:23:57] [PASSED] 55 VFs
[15:23:57] [PASSED] 56 VFs
[15:23:57] [PASSED] 57 VFs
[15:23:57] [PASSED] 58 VFs
[15:23:57] [PASSED] 59 VFs
[15:23:57] [PASSED] 60 VFs
[15:23:57] [PASSED] 61 VFs
[15:23:57] [PASSED] 62 VFs
[15:23:57] [PASSED] 63 VFs
[15:23:57] ==================== [PASSED] fair_vram ====================
[15:23:57] ================== [PASSED] pf_gt_config ===================
[15:23:57] ===================== lmtt (1 subtest) =====================
[15:23:57] ======================== test_ops =========================
[15:23:57] [PASSED] 2-level
[15:23:57] [PASSED] multi-level
[15:23:57] ==================== [PASSED] test_ops =====================
[15:23:57] ====================== [PASSED] lmtt =======================
[15:23:57] ================= pf_service (11 subtests) =================
[15:23:57] [PASSED] pf_negotiate_any
[15:23:57] [PASSED] pf_negotiate_base_match
[15:23:57] [PASSED] pf_negotiate_base_newer
[15:23:57] [PASSED] pf_negotiate_base_next
[15:23:57] [SKIPPED] pf_negotiate_base_older
[15:23:57] [PASSED] pf_negotiate_base_prev
[15:23:57] [PASSED] pf_negotiate_latest_match
[15:23:57] [PASSED] pf_negotiate_latest_newer
[15:23:57] [PASSED] pf_negotiate_latest_next
[15:23:57] [SKIPPED] pf_negotiate_latest_older
[15:23:57] [SKIPPED] pf_negotiate_latest_prev
[15:23:57] =================== [PASSED] pf_service ====================
[15:23:57] ================= xe_guc_g2g (2 subtests) ==================
[15:23:57] ============== xe_live_guc_g2g_kunit_default ==============
[15:23:57] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[15:23:57] ============== xe_live_guc_g2g_kunit_allmem ===============
[15:23:57] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[15:23:57] =================== [SKIPPED] xe_guc_g2g ===================
[15:23:57] =================== xe_mocs (2 subtests) ===================
[15:23:57] ================ xe_live_mocs_kernel_kunit ================
[15:23:57] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:23:57] ================ xe_live_mocs_reset_kunit =================
[15:23:57] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:23:57] ==================== [SKIPPED] xe_mocs =====================
[15:23:57] ================= xe_migrate (2 subtests) ==================
[15:23:57] ================= xe_migrate_sanity_kunit =================
[15:23:57] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:23:57] ================== xe_validate_ccs_kunit ==================
[15:23:57] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:23:57] =================== [SKIPPED] xe_migrate ===================
[15:23:57] ================== xe_dma_buf (1 subtest) ==================
[15:23:57] ==================== xe_dma_buf_kunit =====================
[15:23:57] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:23:57] =================== [SKIPPED] xe_dma_buf ===================
[15:23:57] ================= xe_bo_shrink (1 subtest) =================
[15:23:57] =================== xe_bo_shrink_kunit ====================
[15:23:57] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:23:57] ================== [SKIPPED] xe_bo_shrink ==================
[15:23:57] ==================== xe_bo (2 subtests) ====================
[15:23:57] ================== xe_ccs_migrate_kunit ===================
[15:23:57] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:23:57] ==================== xe_bo_evict_kunit ====================
[15:23:57] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:23:57] ===================== [SKIPPED] xe_bo ======================
[15:23:57] ==================== args (13 subtests) ====================
[15:23:57] [PASSED] count_args_test
[15:23:57] [PASSED] call_args_example
[15:23:57] [PASSED] call_args_test
[15:23:57] [PASSED] drop_first_arg_example
[15:23:57] [PASSED] drop_first_arg_test
[15:23:57] [PASSED] first_arg_example
[15:23:57] [PASSED] first_arg_test
[15:23:57] [PASSED] last_arg_example
[15:23:57] [PASSED] last_arg_test
[15:23:57] [PASSED] pick_arg_example
[15:23:57] [PASSED] if_args_example
[15:23:57] [PASSED] if_args_test
[15:23:57] [PASSED] sep_comma_example
[15:23:57] ====================== [PASSED] args =======================
[15:23:57] =================== xe_pci (3 subtests) ====================
[15:23:57] ==================== check_graphics_ip ====================
[15:23:57] [PASSED] 12.00 Xe_LP
[15:23:57] [PASSED] 12.10 Xe_LP+
[15:23:57] [PASSED] 12.55 Xe_HPG
[15:23:57] [PASSED] 12.60 Xe_HPC
[15:23:57] [PASSED] 12.70 Xe_LPG
[15:23:57] [PASSED] 12.71 Xe_LPG
[15:23:57] [PASSED] 12.74 Xe_LPG+
[15:23:57] [PASSED] 20.01 Xe2_HPG
[15:23:57] [PASSED] 20.02 Xe2_HPG
[15:23:57] [PASSED] 20.04 Xe2_LPG
[15:23:57] [PASSED] 30.00 Xe3_LPG
[15:23:57] [PASSED] 30.01 Xe3_LPG
[15:23:57] [PASSED] 30.03 Xe3_LPG
[15:23:57] [PASSED] 30.04 Xe3_LPG
[15:23:57] [PASSED] 30.05 Xe3_LPG
[15:23:57] [PASSED] 35.10 Xe3p_LPG
[15:23:57] [PASSED] 35.11 Xe3p_XPC
[15:23:57] ================ [PASSED] check_graphics_ip ================
[15:23:57] ===================== check_media_ip ======================
[15:23:57] [PASSED] 12.00 Xe_M
[15:23:57] [PASSED] 12.55 Xe_HPM
[15:23:57] [PASSED] 13.00 Xe_LPM+
[15:23:57] [PASSED] 13.01 Xe2_HPM
[15:23:57] [PASSED] 20.00 Xe2_LPM
[15:23:57] [PASSED] 30.00 Xe3_LPM
[15:23:57] [PASSED] 30.02 Xe3_LPM
[15:23:57] [PASSED] 35.00 Xe3p_LPM
[15:23:57] [PASSED] 35.03 Xe3p_HPM
[15:23:57] ================= [PASSED] check_media_ip ==================
[15:23:57] =================== check_platform_desc ===================
[15:23:57] [PASSED] 0x9A60 (TIGERLAKE)
[15:23:57] [PASSED] 0x9A68 (TIGERLAKE)
[15:23:57] [PASSED] 0x9A70 (TIGERLAKE)
[15:23:57] [PASSED] 0x9A40 (TIGERLAKE)
[15:23:57] [PASSED] 0x9A49 (TIGERLAKE)
[15:23:57] [PASSED] 0x9A59 (TIGERLAKE)
[15:23:57] [PASSED] 0x9A78 (TIGERLAKE)
[15:23:57] [PASSED] 0x9AC0 (TIGERLAKE)
[15:23:57] [PASSED] 0x9AC9 (TIGERLAKE)
[15:23:57] [PASSED] 0x9AD9 (TIGERLAKE)
[15:23:57] [PASSED] 0x9AF8 (TIGERLAKE)
[15:23:57] [PASSED] 0x4C80 (ROCKETLAKE)
[15:23:57] [PASSED] 0x4C8A (ROCKETLAKE)
[15:23:57] [PASSED] 0x4C8B (ROCKETLAKE)
[15:23:57] [PASSED] 0x4C8C (ROCKETLAKE)
[15:23:57] [PASSED] 0x4C90 (ROCKETLAKE)
[15:23:57] [PASSED] 0x4C9A (ROCKETLAKE)
[15:23:57] [PASSED] 0x4680 (ALDERLAKE_S)
[15:23:57] [PASSED] 0x4682 (ALDERLAKE_S)
[15:23:57] [PASSED] 0x4688 (ALDERLAKE_S)
[15:23:57] [PASSED] 0x468A (ALDERLAKE_S)
[15:23:57] [PASSED] 0x468B (ALDERLAKE_S)
[15:23:57] [PASSED] 0x4690 (ALDERLAKE_S)
[15:23:57] [PASSED] 0x4692 (ALDERLAKE_S)
[15:23:57] [PASSED] 0x4693 (ALDERLAKE_S)
[15:23:57] [PASSED] 0x46A0 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46A1 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46A2 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46A3 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46A6 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46A8 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46AA (ALDERLAKE_P)
[15:23:57] [PASSED] 0x462A (ALDERLAKE_P)
[15:23:57] [PASSED] 0x4626 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x4628 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46B0 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46B1 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46B2 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46B3 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46C0 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46C1 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46C2 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46C3 (ALDERLAKE_P)
[15:23:57] [PASSED] 0x46D0 (ALDERLAKE_N)
[15:23:57] [PASSED] 0x46D1 (ALDERLAKE_N)
[15:23:57] [PASSED] 0x46D2 (ALDERLAKE_N)
[15:23:57] [PASSED] 0x46D3 (ALDERLAKE_N)
[15:23:57] [PASSED] 0x46D4 (ALDERLAKE_N)
[15:23:57] [PASSED] 0xA721 (ALDERLAKE_P)
[15:23:57] [PASSED] 0xA7A1 (ALDERLAKE_P)
[15:23:57] [PASSED] 0xA7A9 (ALDERLAKE_P)
[15:23:57] [PASSED] 0xA7AC (ALDERLAKE_P)
[15:23:57] [PASSED] 0xA7AD (ALDERLAKE_P)
[15:23:57] [PASSED] 0xA720 (ALDERLAKE_P)
[15:23:57] [PASSED] 0xA7A0 (ALDERLAKE_P)
[15:23:57] [PASSED] 0xA7A8 (ALDERLAKE_P)
[15:23:57] [PASSED] 0xA7AA (ALDERLAKE_P)
[15:23:57] [PASSED] 0xA7AB (ALDERLAKE_P)
[15:23:57] [PASSED] 0xA780 (ALDERLAKE_S)
[15:23:57] [PASSED] 0xA781 (ALDERLAKE_S)
[15:23:57] [PASSED] 0xA782 (ALDERLAKE_S)
[15:23:57] [PASSED] 0xA783 (ALDERLAKE_S)
[15:23:57] [PASSED] 0xA788 (ALDERLAKE_S)
[15:23:57] [PASSED] 0xA789 (ALDERLAKE_S)
[15:23:57] [PASSED] 0xA78A (ALDERLAKE_S)
[15:23:57] [PASSED] 0xA78B (ALDERLAKE_S)
[15:23:57] [PASSED] 0x4905 (DG1)
[15:23:57] [PASSED] 0x4906 (DG1)
[15:23:57] [PASSED] 0x4907 (DG1)
[15:23:57] [PASSED] 0x4908 (DG1)
[15:23:57] [PASSED] 0x4909 (DG1)
[15:23:57] [PASSED] 0x56C0 (DG2)
[15:23:57] [PASSED] 0x56C2 (DG2)
[15:23:57] [PASSED] 0x56C1 (DG2)
[15:23:57] [PASSED] 0x7D51 (METEORLAKE)
[15:23:57] [PASSED] 0x7DD1 (METEORLAKE)
[15:23:57] [PASSED] 0x7D41 (METEORLAKE)
[15:23:57] [PASSED] 0x7D67 (METEORLAKE)
[15:23:57] [PASSED] 0xB640 (METEORLAKE)
[15:23:57] [PASSED] 0x56A0 (DG2)
[15:23:57] [PASSED] 0x56A1 (DG2)
[15:23:57] [PASSED] 0x56A2 (DG2)
[15:23:57] [PASSED] 0x56BE (DG2)
[15:23:57] [PASSED] 0x56BF (DG2)
[15:23:57] [PASSED] 0x5690 (DG2)
[15:23:57] [PASSED] 0x5691 (DG2)
[15:23:57] [PASSED] 0x5692 (DG2)
[15:23:57] [PASSED] 0x56A5 (DG2)
[15:23:57] [PASSED] 0x56A6 (DG2)
[15:23:57] [PASSED] 0x56B0 (DG2)
[15:23:57] [PASSED] 0x56B1 (DG2)
[15:23:57] [PASSED] 0x56BA (DG2)
[15:23:57] [PASSED] 0x56BB (DG2)
[15:23:57] [PASSED] 0x56BC (DG2)
[15:23:57] [PASSED] 0x56BD (DG2)
[15:23:57] [PASSED] 0x5693 (DG2)
[15:23:57] [PASSED] 0x5694 (DG2)
[15:23:57] [PASSED] 0x5695 (DG2)
[15:23:57] [PASSED] 0x56A3 (DG2)
[15:23:57] [PASSED] 0x56A4 (DG2)
[15:23:57] [PASSED] 0x56B2 (DG2)
[15:23:57] [PASSED] 0x56B3 (DG2)
[15:23:57] [PASSED] 0x5696 (DG2)
[15:23:57] [PASSED] 0x5697 (DG2)
[15:23:57] [PASSED] 0xB69 (PVC)
[15:23:57] [PASSED] 0xB6E (PVC)
[15:23:57] [PASSED] 0xBD4 (PVC)
[15:23:57] [PASSED] 0xBD5 (PVC)
[15:23:57] [PASSED] 0xBD6 (PVC)
[15:23:57] [PASSED] 0xBD7 (PVC)
[15:23:57] [PASSED] 0xBD8 (PVC)
[15:23:57] [PASSED] 0xBD9 (PVC)
[15:23:57] [PASSED] 0xBDA (PVC)
[15:23:57] [PASSED] 0xBDB (PVC)
[15:23:57] [PASSED] 0xBE0 (PVC)
[15:23:57] [PASSED] 0xBE1 (PVC)
[15:23:57] [PASSED] 0xBE5 (PVC)
[15:23:57] [PASSED] 0x7D40 (METEORLAKE)
[15:23:57] [PASSED] 0x7D45 (METEORLAKE)
[15:23:57] [PASSED] 0x7D55 (METEORLAKE)
[15:23:57] [PASSED] 0x7D60 (METEORLAKE)
[15:23:57] [PASSED] 0x7DD5 (METEORLAKE)
[15:23:57] [PASSED] 0x6420 (LUNARLAKE)
[15:23:57] [PASSED] 0x64A0 (LUNARLAKE)
[15:23:57] [PASSED] 0x64B0 (LUNARLAKE)
[15:23:57] [PASSED] 0xE202 (BATTLEMAGE)
[15:23:57] [PASSED] 0xE209 (BATTLEMAGE)
[15:23:57] [PASSED] 0xE20B (BATTLEMAGE)
[15:23:57] [PASSED] 0xE20C (BATTLEMAGE)
[15:23:57] [PASSED] 0xE20D (BATTLEMAGE)
[15:23:57] [PASSED] 0xE210 (BATTLEMAGE)
[15:23:57] [PASSED] 0xE211 (BATTLEMAGE)
[15:23:57] [PASSED] 0xE212 (BATTLEMAGE)
[15:23:57] [PASSED] 0xE216 (BATTLEMAGE)
[15:23:57] [PASSED] 0xE220 (BATTLEMAGE)
[15:23:57] [PASSED] 0xE221 (BATTLEMAGE)
[15:23:57] [PASSED] 0xE222 (BATTLEMAGE)
[15:23:57] [PASSED] 0xE223 (BATTLEMAGE)
[15:23:57] [PASSED] 0xB080 (PANTHERLAKE)
[15:23:57] [PASSED] 0xB081 (PANTHERLAKE)
[15:23:57] [PASSED] 0xB082 (PANTHERLAKE)
[15:23:57] [PASSED] 0xB083 (PANTHERLAKE)
[15:23:57] [PASSED] 0xB084 (PANTHERLAKE)
[15:23:57] [PASSED] 0xB085 (PANTHERLAKE)
[15:23:57] [PASSED] 0xB086 (PANTHERLAKE)
[15:23:57] [PASSED] 0xB087 (PANTHERLAKE)
[15:23:57] [PASSED] 0xB08F (PANTHERLAKE)
[15:23:57] [PASSED] 0xB090 (PANTHERLAKE)
[15:23:57] [PASSED] 0xB0A0 (PANTHERLAKE)
[15:23:57] [PASSED] 0xB0B0 (PANTHERLAKE)
[15:23:57] [PASSED] 0xFD80 (PANTHERLAKE)
[15:23:57] [PASSED] 0xFD81 (PANTHERLAKE)
[15:23:57] [PASSED] 0xD740 (NOVALAKE_S)
[15:23:57] [PASSED] 0xD741 (NOVALAKE_S)
[15:23:57] [PASSED] 0xD742 (NOVALAKE_S)
[15:23:57] [PASSED] 0xD743 (NOVALAKE_S)
[15:23:57] [PASSED] 0xD744 (NOVALAKE_S)
[15:23:57] [PASSED] 0xD745 (NOVALAKE_S)
[15:23:57] [PASSED] 0x674C (CRESCENTISLAND)
[15:23:57] [PASSED] 0xD750 (NOVALAKE_P)
[15:23:57] [PASSED] 0xD751 (NOVALAKE_P)
[15:23:57] [PASSED] 0xD752 (NOVALAKE_P)
[15:23:57] [PASSED] 0xD753 (NOVALAKE_P)
[15:23:57] [PASSED] 0xD754 (NOVALAKE_P)
[15:23:57] [PASSED] 0xD755 (NOVALAKE_P)
[15:23:57] [PASSED] 0xD756 (NOVALAKE_P)
[15:23:57] [PASSED] 0xD757 (NOVALAKE_P)
[15:23:57] [PASSED] 0xD75F (NOVALAKE_P)
[15:23:57] =============== [PASSED] check_platform_desc ===============
[15:23:57] ===================== [PASSED] xe_pci ======================
[15:23:57] =================== xe_rtp (2 subtests) ====================
[15:23:57] =============== xe_rtp_process_to_sr_tests ================
[15:23:57] [PASSED] coalesce-same-reg
[15:23:57] [PASSED] no-match-no-add
[15:23:57] [PASSED] match-or
[15:23:57] [PASSED] match-or-xfail
[15:23:57] [PASSED] no-match-no-add-multiple-rules
[15:23:57] [PASSED] two-regs-two-entries
[15:23:57] [PASSED] clr-one-set-other
[15:23:57] [PASSED] set-field
[15:23:57] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[15:23:57] [PASSED] conflict-not-disjoint
[15:23:57] [PASSED] conflict-reg-type
[15:23:57] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:23:57] ================== xe_rtp_process_tests ===================
[15:23:57] [PASSED] active1
[15:23:57] [PASSED] active2
[15:23:57] [PASSED] active-inactive
[15:23:57] [PASSED] inactive-active
[15:23:57] [PASSED] inactive-1st_or_active-inactive
[15:23:57] [PASSED] inactive-2nd_or_active-inactive
[15:23:57] [PASSED] inactive-last_or_active-inactive
[15:23:57] [PASSED] inactive-no_or_active-inactive
[15:23:57] ============== [PASSED] xe_rtp_process_tests ===============
[15:23:57] ===================== [PASSED] xe_rtp ======================
[15:23:57] ==================== xe_wa (1 subtest) =====================
[15:23:57] ======================== xe_wa_gt =========================
[15:23:57] [PASSED] TIGERLAKE B0
[15:23:57] [PASSED] DG1 A0
[15:23:57] [PASSED] DG1 B0
[15:23:57] [PASSED] ALDERLAKE_S A0
[15:23:57] [PASSED] ALDERLAKE_S B0
[15:23:57] [PASSED] ALDERLAKE_S C0
[15:23:57] [PASSED] ALDERLAKE_S D0
[15:23:57] [PASSED] ALDERLAKE_P A0
[15:23:57] [PASSED] ALDERLAKE_P B0
[15:23:57] [PASSED] ALDERLAKE_P C0
[15:23:57] [PASSED] ALDERLAKE_S RPLS D0
[15:23:57] [PASSED] ALDERLAKE_P RPLU E0
[15:23:57] [PASSED] DG2 G10 C0
[15:23:57] [PASSED] DG2 G11 B1
[15:23:57] [PASSED] DG2 G12 A1
[15:23:57] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:23:57] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:23:57] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[15:23:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[15:23:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[15:23:57] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[15:23:57] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[15:23:57] ==================== [PASSED] xe_wa_gt =====================
[15:23:57] ====================== [PASSED] xe_wa ======================
[15:23:57] ============================================================
[15:23:57] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[15:23:57] Elapsed time: 42.698s total, 4.387s configuring, 37.645s building, 0.632s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[15:23:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:23:59] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[15:24:28] Starting KUnit Kernel (1/1)...
[15:24:28] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:24:28] ============ drm_test_pick_cmdline (2 subtests) ============
[15:24:28] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[15:24:28] =============== drm_test_pick_cmdline_named ===============
[15:24:28] [PASSED] NTSC
[15:24:28] [PASSED] NTSC-J
[15:24:28] [PASSED] PAL
[15:24:28] [PASSED] PAL-M
[15:24:28] =========== [PASSED] drm_test_pick_cmdline_named ===========
[15:24:28] ============== [PASSED] drm_test_pick_cmdline ==============
[15:24:28] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[15:24:28] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[15:24:28] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[15:24:28] =========== drm_validate_clone_mode (2 subtests) ===========
[15:24:28] ============== drm_test_check_in_clone_mode ===============
[15:24:28] [PASSED] in_clone_mode
[15:24:28] [PASSED] not_in_clone_mode
[15:24:28] ========== [PASSED] drm_test_check_in_clone_mode ===========
[15:24:28] =============== drm_test_check_valid_clones ===============
[15:24:28] [PASSED] not_in_clone_mode
[15:24:28] [PASSED] valid_clone
[15:24:28] [PASSED] invalid_clone
[15:24:28] =========== [PASSED] drm_test_check_valid_clones ===========
[15:24:28] ============= [PASSED] drm_validate_clone_mode =============
[15:24:28] ============= drm_validate_modeset (1 subtest) =============
[15:24:28] [PASSED] drm_test_check_connector_changed_modeset
[15:24:28] ============== [PASSED] drm_validate_modeset ===============
[15:24:28] ====== drm_test_bridge_get_current_state (2 subtests) ======
[15:24:28] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[15:24:28] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[15:24:28] ======== [PASSED] drm_test_bridge_get_current_state ========
[15:24:28] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[15:24:28] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[15:24:28] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[15:24:28] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[15:24:28] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[15:24:28] ============== drm_bridge_alloc (2 subtests) ===============
[15:24:28] [PASSED] drm_test_drm_bridge_alloc_basic
[15:24:28] [PASSED] drm_test_drm_bridge_alloc_get_put
[15:24:28] ================ [PASSED] drm_bridge_alloc =================
[15:24:28] ============= drm_cmdline_parser (40 subtests) =============
[15:24:28] [PASSED] drm_test_cmdline_force_d_only
[15:24:28] [PASSED] drm_test_cmdline_force_D_only_dvi
[15:24:28] [PASSED] drm_test_cmdline_force_D_only_hdmi
[15:24:28] [PASSED] drm_test_cmdline_force_D_only_not_digital
[15:24:28] [PASSED] drm_test_cmdline_force_e_only
[15:24:28] [PASSED] drm_test_cmdline_res
[15:24:28] [PASSED] drm_test_cmdline_res_vesa
[15:24:28] [PASSED] drm_test_cmdline_res_vesa_rblank
[15:24:28] [PASSED] drm_test_cmdline_res_rblank
[15:24:28] [PASSED] drm_test_cmdline_res_bpp
[15:24:28] [PASSED] drm_test_cmdline_res_refresh
[15:24:28] [PASSED] drm_test_cmdline_res_bpp_refresh
[15:24:28] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[15:24:28] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[15:24:28] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[15:24:28] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[15:24:28] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[15:24:28] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[15:24:28] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[15:24:28] [PASSED] drm_test_cmdline_res_margins_force_on
[15:24:28] [PASSED] drm_test_cmdline_res_vesa_margins
[15:24:28] [PASSED] drm_test_cmdline_name
[15:24:28] [PASSED] drm_test_cmdline_name_bpp
[15:24:28] [PASSED] drm_test_cmdline_name_option
[15:24:28] [PASSED] drm_test_cmdline_name_bpp_option
[15:24:28] [PASSED] drm_test_cmdline_rotate_0
[15:24:28] [PASSED] drm_test_cmdline_rotate_90
[15:24:28] [PASSED] drm_test_cmdline_rotate_180
[15:24:28] [PASSED] drm_test_cmdline_rotate_270
[15:24:28] [PASSED] drm_test_cmdline_hmirror
[15:24:28] [PASSED] drm_test_cmdline_vmirror
[15:24:28] [PASSED] drm_test_cmdline_margin_options
[15:24:28] [PASSED] drm_test_cmdline_multiple_options
[15:24:28] [PASSED] drm_test_cmdline_bpp_extra_and_option
[15:24:28] [PASSED] drm_test_cmdline_extra_and_option
[15:24:28] [PASSED] drm_test_cmdline_freestanding_options
[15:24:28] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[15:24:28] [PASSED] drm_test_cmdline_panel_orientation
[15:24:28] ================ drm_test_cmdline_invalid =================
[15:24:28] [PASSED] margin_only
[15:24:28] [PASSED] interlace_only
[15:24:28] [PASSED] res_missing_x
[15:24:28] [PASSED] res_missing_y
[15:24:28] [PASSED] res_bad_y
[15:24:28] [PASSED] res_missing_y_bpp
[15:24:28] [PASSED] res_bad_bpp
[15:24:28] [PASSED] res_bad_refresh
[15:24:28] [PASSED] res_bpp_refresh_force_on_off
[15:24:28] [PASSED] res_invalid_mode
[15:24:28] [PASSED] res_bpp_wrong_place_mode
[15:24:28] [PASSED] name_bpp_refresh
[15:24:28] [PASSED] name_refresh
[15:24:28] [PASSED] name_refresh_wrong_mode
[15:24:28] [PASSED] name_refresh_invalid_mode
[15:24:28] [PASSED] rotate_multiple
[15:24:28] [PASSED] rotate_invalid_val
[15:24:28] [PASSED] rotate_truncated
[15:24:28] [PASSED] invalid_option
[15:24:28] [PASSED] invalid_tv_option
[15:24:28] [PASSED] truncated_tv_option
[15:24:28] ============ [PASSED] drm_test_cmdline_invalid =============
[15:24:28] =============== drm_test_cmdline_tv_options ===============
[15:24:28] [PASSED] NTSC
[15:24:28] [PASSED] NTSC_443
[15:24:28] [PASSED] NTSC_J
[15:24:28] [PASSED] PAL
[15:24:28] [PASSED] PAL_M
[15:24:28] [PASSED] PAL_N
[15:24:28] [PASSED] SECAM
[15:24:28] [PASSED] MONO_525
[15:24:28] [PASSED] MONO_625
[15:24:28] =========== [PASSED] drm_test_cmdline_tv_options ===========
[15:24:28] =============== [PASSED] drm_cmdline_parser ================
[15:24:28] ========== drmm_connector_hdmi_init (20 subtests) ==========
[15:24:28] [PASSED] drm_test_connector_hdmi_init_valid
[15:24:28] [PASSED] drm_test_connector_hdmi_init_bpc_8
[15:24:28] [PASSED] drm_test_connector_hdmi_init_bpc_10
[15:24:28] [PASSED] drm_test_connector_hdmi_init_bpc_12
[15:24:28] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[15:24:28] [PASSED] drm_test_connector_hdmi_init_bpc_null
[15:24:28] [PASSED] drm_test_connector_hdmi_init_formats_empty
[15:24:28] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[15:24:28] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:24:28] [PASSED] supported_formats=0x9 yuv420_allowed=1
[15:24:28] [PASSED] supported_formats=0x9 yuv420_allowed=0
[15:24:28] [PASSED] supported_formats=0x3 yuv420_allowed=1
[15:24:28] [PASSED] supported_formats=0x3 yuv420_allowed=0
[15:24:28] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:24:28] [PASSED] drm_test_connector_hdmi_init_null_ddc
[15:24:28] [PASSED] drm_test_connector_hdmi_init_null_product
[15:24:28] [PASSED] drm_test_connector_hdmi_init_null_vendor
[15:24:28] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[15:24:28] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[15:24:28] [PASSED] drm_test_connector_hdmi_init_product_valid
[15:24:28] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[15:24:28] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[15:24:28] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[15:24:28] ========= drm_test_connector_hdmi_init_type_valid =========
[15:24:28] [PASSED] HDMI-A
[15:24:28] [PASSED] HDMI-B
[15:24:28] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[15:24:28] ======== drm_test_connector_hdmi_init_type_invalid ========
[15:24:28] [PASSED] Unknown
[15:24:28] [PASSED] VGA
[15:24:28] [PASSED] DVI-I
[15:24:28] [PASSED] DVI-D
[15:24:28] [PASSED] DVI-A
[15:24:28] [PASSED] Composite
[15:24:28] [PASSED] SVIDEO
[15:24:28] [PASSED] LVDS
[15:24:28] [PASSED] Component
[15:24:28] [PASSED] DIN
[15:24:28] [PASSED] DP
[15:24:28] [PASSED] TV
[15:24:28] [PASSED] eDP
[15:24:28] [PASSED] Virtual
[15:24:28] [PASSED] DSI
[15:24:28] [PASSED] DPI
[15:24:28] [PASSED] Writeback
[15:24:28] [PASSED] SPI
[15:24:28] [PASSED] USB
[15:24:28] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[15:24:28] ============ [PASSED] drmm_connector_hdmi_init =============
[15:24:28] ============= drmm_connector_init (3 subtests) =============
[15:24:28] [PASSED] drm_test_drmm_connector_init
[15:24:28] [PASSED] drm_test_drmm_connector_init_null_ddc
[15:24:28] ========= drm_test_drmm_connector_init_type_valid =========
[15:24:28] [PASSED] Unknown
[15:24:28] [PASSED] VGA
[15:24:28] [PASSED] DVI-I
[15:24:28] [PASSED] DVI-D
[15:24:28] [PASSED] DVI-A
[15:24:28] [PASSED] Composite
[15:24:28] [PASSED] SVIDEO
[15:24:28] [PASSED] LVDS
[15:24:28] [PASSED] Component
[15:24:28] [PASSED] DIN
[15:24:28] [PASSED] DP
[15:24:28] [PASSED] HDMI-A
[15:24:28] [PASSED] HDMI-B
[15:24:28] [PASSED] TV
[15:24:28] [PASSED] eDP
[15:24:28] [PASSED] Virtual
[15:24:28] [PASSED] DSI
[15:24:28] [PASSED] DPI
[15:24:28] [PASSED] Writeback
[15:24:28] [PASSED] SPI
[15:24:28] [PASSED] USB
[15:24:28] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[15:24:28] =============== [PASSED] drmm_connector_init ===============
[15:24:28] ========= drm_connector_dynamic_init (6 subtests) ==========
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_init
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_init_properties
[15:24:28] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[15:24:28] [PASSED] Unknown
[15:24:28] [PASSED] VGA
[15:24:28] [PASSED] DVI-I
[15:24:28] [PASSED] DVI-D
[15:24:28] [PASSED] DVI-A
[15:24:28] [PASSED] Composite
[15:24:28] [PASSED] SVIDEO
[15:24:28] [PASSED] LVDS
[15:24:28] [PASSED] Component
[15:24:28] [PASSED] DIN
[15:24:28] [PASSED] DP
[15:24:28] [PASSED] HDMI-A
[15:24:28] [PASSED] HDMI-B
[15:24:28] [PASSED] TV
[15:24:28] [PASSED] eDP
[15:24:28] [PASSED] Virtual
[15:24:28] [PASSED] DSI
[15:24:28] [PASSED] DPI
[15:24:28] [PASSED] Writeback
[15:24:28] [PASSED] SPI
[15:24:28] [PASSED] USB
[15:24:28] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[15:24:28] ======== drm_test_drm_connector_dynamic_init_name =========
[15:24:28] [PASSED] Unknown
[15:24:28] [PASSED] VGA
[15:24:28] [PASSED] DVI-I
[15:24:28] [PASSED] DVI-D
[15:24:28] [PASSED] DVI-A
[15:24:28] [PASSED] Composite
[15:24:28] [PASSED] SVIDEO
[15:24:28] [PASSED] LVDS
[15:24:28] [PASSED] Component
[15:24:28] [PASSED] DIN
[15:24:28] [PASSED] DP
[15:24:28] [PASSED] HDMI-A
[15:24:28] [PASSED] HDMI-B
[15:24:28] [PASSED] TV
[15:24:28] [PASSED] eDP
[15:24:28] [PASSED] Virtual
[15:24:28] [PASSED] DSI
[15:24:28] [PASSED] DPI
[15:24:28] [PASSED] Writeback
[15:24:28] [PASSED] SPI
[15:24:28] [PASSED] USB
[15:24:28] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[15:24:28] =========== [PASSED] drm_connector_dynamic_init ============
[15:24:28] ==== drm_connector_dynamic_register_early (4 subtests) =====
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[15:24:28] ====== [PASSED] drm_connector_dynamic_register_early =======
[15:24:28] ======= drm_connector_dynamic_register (7 subtests) ========
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[15:24:28] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[15:24:28] ========= [PASSED] drm_connector_dynamic_register ==========
[15:24:28] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[15:24:28] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[15:24:28] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[15:24:28] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[15:24:28] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[15:24:28] ========== drm_test_get_tv_mode_from_name_valid ===========
[15:24:28] [PASSED] NTSC
[15:24:28] [PASSED] NTSC-443
[15:24:28] [PASSED] NTSC-J
[15:24:28] [PASSED] PAL
[15:24:28] [PASSED] PAL-M
[15:24:28] [PASSED] PAL-N
[15:24:28] [PASSED] SECAM
[15:24:28] [PASSED] Mono
[15:24:28] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[15:24:28] [PASSED] drm_test_get_tv_mode_from_name_truncated
[15:24:28] ============ [PASSED] drm_get_tv_mode_from_name ============
[15:24:28] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[15:24:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[15:24:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[15:24:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[15:24:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[15:24:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[15:24:28] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[15:24:28] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[15:24:28] [PASSED] VIC 96
[15:24:28] [PASSED] VIC 97
[15:24:28] [PASSED] VIC 101
[15:24:28] [PASSED] VIC 102
[15:24:28] [PASSED] VIC 106
[15:24:28] [PASSED] VIC 107
[15:24:28] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[15:24:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[15:24:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[15:24:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[15:24:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[15:24:28] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[15:24:28] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[15:24:28] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[15:24:28] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[15:24:28] [PASSED] Automatic
[15:24:28] [PASSED] Full
[15:24:28] [PASSED] Limited 16:235
[15:24:28] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[15:24:28] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[15:24:28] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[15:24:28] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[15:24:28] === drm_test_drm_hdmi_connector_get_output_format_name ====
[15:24:28] [PASSED] RGB
[15:24:28] [PASSED] YUV 4:2:0
[15:24:28] [PASSED] YUV 4:2:2
[15:24:28] [PASSED] YUV 4:4:4
[15:24:28] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[15:24:28] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[15:24:28] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[15:24:28] ============= drm_damage_helper (21 subtests) ==============
[15:24:28] [PASSED] drm_test_damage_iter_no_damage
[15:24:28] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[15:24:28] [PASSED] drm_test_damage_iter_no_damage_src_moved
[15:24:28] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[15:24:28] [PASSED] drm_test_damage_iter_no_damage_not_visible
[15:24:28] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[15:24:28] [PASSED] drm_test_damage_iter_no_damage_no_fb
[15:24:28] [PASSED] drm_test_damage_iter_simple_damage
[15:24:28] [PASSED] drm_test_damage_iter_single_damage
[15:24:28] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[15:24:28] [PASSED] drm_test_damage_iter_single_damage_outside_src
[15:24:28] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[15:24:28] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[15:24:28] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[15:24:28] [PASSED] drm_test_damage_iter_single_damage_src_moved
[15:24:28] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[15:24:28] [PASSED] drm_test_damage_iter_damage
[15:24:28] [PASSED] drm_test_damage_iter_damage_one_intersect
[15:24:28] [PASSED] drm_test_damage_iter_damage_one_outside
[15:24:28] [PASSED] drm_test_damage_iter_damage_src_moved
[15:24:28] [PASSED] drm_test_damage_iter_damage_not_visible
[15:24:28] ================ [PASSED] drm_damage_helper ================
[15:24:28] ============== drm_dp_mst_helper (3 subtests) ==============
[15:24:28] ============== drm_test_dp_mst_calc_pbn_mode ==============
[15:24:28] [PASSED] Clock 154000 BPP 30 DSC disabled
[15:24:28] [PASSED] Clock 234000 BPP 30 DSC disabled
[15:24:28] [PASSED] Clock 297000 BPP 24 DSC disabled
[15:24:28] [PASSED] Clock 332880 BPP 24 DSC enabled
[15:24:28] [PASSED] Clock 324540 BPP 24 DSC enabled
[15:24:28] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[15:24:28] ============== drm_test_dp_mst_calc_pbn_div ===============
[15:24:28] [PASSED] Link rate 2000000 lane count 4
[15:24:28] [PASSED] Link rate 2000000 lane count 2
[15:24:28] [PASSED] Link rate 2000000 lane count 1
[15:24:28] [PASSED] Link rate 1350000 lane count 4
[15:24:28] [PASSED] Link rate 1350000 lane count 2
[15:24:28] [PASSED] Link rate 1350000 lane count 1
[15:24:28] [PASSED] Link rate 1000000 lane count 4
[15:24:28] [PASSED] Link rate 1000000 lane count 2
[15:24:28] [PASSED] Link rate 1000000 lane count 1
[15:24:28] [PASSED] Link rate 810000 lane count 4
[15:24:28] [PASSED] Link rate 810000 lane count 2
[15:24:28] [PASSED] Link rate 810000 lane count 1
[15:24:28] [PASSED] Link rate 540000 lane count 4
[15:24:28] [PASSED] Link rate 540000 lane count 2
[15:24:28] [PASSED] Link rate 540000 lane count 1
[15:24:28] [PASSED] Link rate 270000 lane count 4
[15:24:28] [PASSED] Link rate 270000 lane count 2
[15:24:28] [PASSED] Link rate 270000 lane count 1
[15:24:28] [PASSED] Link rate 162000 lane count 4
[15:24:28] [PASSED] Link rate 162000 lane count 2
[15:24:28] [PASSED] Link rate 162000 lane count 1
[15:24:28] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[15:24:28] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[15:24:28] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[15:24:28] [PASSED] DP_POWER_UP_PHY with port number
[15:24:28] [PASSED] DP_POWER_DOWN_PHY with port number
[15:24:28] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[15:24:28] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[15:24:28] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[15:24:28] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[15:24:28] [PASSED] DP_QUERY_PAYLOAD with port number
[15:24:28] [PASSED] DP_QUERY_PAYLOAD with VCPI
[15:24:28] [PASSED] DP_REMOTE_DPCD_READ with port number
[15:24:28] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[15:24:28] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[15:24:28] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[15:24:28] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[15:24:28] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[15:24:28] [PASSED] DP_REMOTE_I2C_READ with port number
[15:24:28] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[15:24:28] [PASSED] DP_REMOTE_I2C_READ with transactions array
[15:24:28] [PASSED] DP_REMOTE_I2C_WRITE with port number
[15:24:28] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[15:24:28] [PASSED] DP_REMOTE_I2C_WRITE with data array
[15:24:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[15:24:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[15:24:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[15:24:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[15:24:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[15:24:28] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[15:24:28] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[15:24:28] ================ [PASSED] drm_dp_mst_helper ================
[15:24:28] ================== drm_exec (7 subtests) ===================
[15:24:28] [PASSED] sanitycheck
[15:24:28] [PASSED] test_lock
[15:24:28] [PASSED] test_lock_unlock
[15:24:28] [PASSED] test_duplicates
[15:24:28] [PASSED] test_prepare
[15:24:28] [PASSED] test_prepare_array
[15:24:28] [PASSED] test_multiple_loops
[15:24:28] ==================== [PASSED] drm_exec =====================
[15:24:28] =========== drm_format_helper_test (17 subtests) ===========
[15:24:28] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[15:24:28] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[15:24:28] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[15:24:28] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[15:24:28] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[15:24:28] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[15:24:28] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[15:24:28] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[15:24:28] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[15:24:28] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[15:24:28] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[15:24:28] ============== drm_test_fb_xrgb8888_to_mono ===============
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[15:24:28] ==================== drm_test_fb_swab =====================
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ================ [PASSED] drm_test_fb_swab =================
[15:24:28] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[15:24:28] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[15:24:28] [PASSED] single_pixel_source_buffer
[15:24:28] [PASSED] single_pixel_clip_rectangle
[15:24:28] [PASSED] well_known_colors
[15:24:28] [PASSED] destination_pitch
[15:24:28] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[15:24:28] ================= drm_test_fb_clip_offset =================
[15:24:28] [PASSED] pass through
[15:24:28] [PASSED] horizontal offset
[15:24:28] [PASSED] vertical offset
[15:24:28] [PASSED] horizontal and vertical offset
[15:24:28] [PASSED] horizontal offset (custom pitch)
[15:24:28] [PASSED] vertical offset (custom pitch)
[15:24:28] [PASSED] horizontal and vertical offset (custom pitch)
[15:24:28] ============= [PASSED] drm_test_fb_clip_offset =============
[15:24:28] =================== drm_test_fb_memcpy ====================
[15:24:28] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[15:24:28] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[15:24:28] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[15:24:28] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[15:24:28] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[15:24:28] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[15:24:28] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[15:24:28] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[15:24:28] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[15:24:28] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[15:24:28] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[15:24:28] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[15:24:28] =============== [PASSED] drm_test_fb_memcpy ================
[15:24:28] ============= [PASSED] drm_format_helper_test ==============
[15:24:28] ================= drm_format (18 subtests) =================
[15:24:28] [PASSED] drm_test_format_block_width_invalid
[15:24:28] [PASSED] drm_test_format_block_width_one_plane
[15:24:28] [PASSED] drm_test_format_block_width_two_plane
[15:24:28] [PASSED] drm_test_format_block_width_three_plane
[15:24:28] [PASSED] drm_test_format_block_width_tiled
[15:24:28] [PASSED] drm_test_format_block_height_invalid
[15:24:28] [PASSED] drm_test_format_block_height_one_plane
[15:24:28] [PASSED] drm_test_format_block_height_two_plane
[15:24:28] [PASSED] drm_test_format_block_height_three_plane
[15:24:28] [PASSED] drm_test_format_block_height_tiled
[15:24:28] [PASSED] drm_test_format_min_pitch_invalid
[15:24:28] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[15:24:28] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[15:24:28] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[15:24:28] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[15:24:28] [PASSED] drm_test_format_min_pitch_two_plane
[15:24:28] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[15:24:28] [PASSED] drm_test_format_min_pitch_tiled
[15:24:28] =================== [PASSED] drm_format ====================
[15:24:28] ============== drm_framebuffer (10 subtests) ===============
[15:24:28] ========== drm_test_framebuffer_check_src_coords ==========
[15:24:28] [PASSED] Success: source fits into fb
[15:24:28] [PASSED] Fail: overflowing fb with x-axis coordinate
[15:24:28] [PASSED] Fail: overflowing fb with y-axis coordinate
[15:24:28] [PASSED] Fail: overflowing fb with source width
[15:24:28] [PASSED] Fail: overflowing fb with source height
[15:24:28] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[15:24:28] [PASSED] drm_test_framebuffer_cleanup
[15:24:28] =============== drm_test_framebuffer_create ===============
[15:24:28] [PASSED] ABGR8888 normal sizes
[15:24:28] [PASSED] ABGR8888 max sizes
[15:24:28] [PASSED] ABGR8888 pitch greater than min required
[15:24:28] [PASSED] ABGR8888 pitch less than min required
[15:24:28] [PASSED] ABGR8888 Invalid width
[15:24:28] [PASSED] ABGR8888 Invalid buffer handle
[15:24:28] [PASSED] No pixel format
[15:24:28] [PASSED] ABGR8888 Width 0
[15:24:28] [PASSED] ABGR8888 Height 0
[15:24:28] [PASSED] ABGR8888 Out of bound height * pitch combination
[15:24:28] [PASSED] ABGR8888 Large buffer offset
[15:24:28] [PASSED] ABGR8888 Buffer offset for inexistent plane
[15:24:28] [PASSED] ABGR8888 Invalid flag
[15:24:28] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[15:24:28] [PASSED] ABGR8888 Valid buffer modifier
[15:24:28] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[15:24:28] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[15:24:28] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[15:24:28] [PASSED] NV12 Normal sizes
[15:24:28] [PASSED] NV12 Max sizes
[15:24:28] [PASSED] NV12 Invalid pitch
[15:24:28] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[15:24:28] [PASSED] NV12 different modifier per-plane
[15:24:28] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[15:24:28] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[15:24:28] [PASSED] NV12 Modifier for inexistent plane
[15:24:28] [PASSED] NV12 Handle for inexistent plane
[15:24:28] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[15:24:28] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[15:24:28] [PASSED] YVU420 Normal sizes
[15:24:28] [PASSED] YVU420 Max sizes
[15:24:28] [PASSED] YVU420 Invalid pitch
[15:24:28] [PASSED] YVU420 Different pitches
[15:24:28] [PASSED] YVU420 Different buffer offsets/pitches
[15:24:28] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[15:24:28] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[15:24:28] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[15:24:28] [PASSED] YVU420 Valid modifier
[15:24:28] [PASSED] YVU420 Different modifiers per plane
[15:24:28] [PASSED] YVU420 Modifier for inexistent plane
[15:24:28] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[15:24:28] [PASSED] X0L2 Normal sizes
[15:24:28] [PASSED] X0L2 Max sizes
[15:24:28] [PASSED] X0L2 Invalid pitch
[15:24:28] [PASSED] X0L2 Pitch greater than minimum required
[15:24:28] [PASSED] X0L2 Handle for inexistent plane
[15:24:28] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[15:24:28] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[15:24:28] [PASSED] X0L2 Valid modifier
[15:24:28] [PASSED] X0L2 Modifier for inexistent plane
[15:24:28] =========== [PASSED] drm_test_framebuffer_create ===========
[15:24:28] [PASSED] drm_test_framebuffer_free
[15:24:28] [PASSED] drm_test_framebuffer_init
[15:24:28] [PASSED] drm_test_framebuffer_init_bad_format
[15:24:28] [PASSED] drm_test_framebuffer_init_dev_mismatch
[15:24:28] [PASSED] drm_test_framebuffer_lookup
[15:24:28] [PASSED] drm_test_framebuffer_lookup_inexistent
[15:24:28] [PASSED] drm_test_framebuffer_modifiers_not_supported
[15:24:28] ================= [PASSED] drm_framebuffer =================
[15:24:28] ================ drm_gem_shmem (8 subtests) ================
[15:24:28] [PASSED] drm_gem_shmem_test_obj_create
[15:24:28] [PASSED] drm_gem_shmem_test_obj_create_private
[15:24:28] [PASSED] drm_gem_shmem_test_pin_pages
[15:24:28] [PASSED] drm_gem_shmem_test_vmap
[15:24:28] [PASSED] drm_gem_shmem_test_get_sg_table
[15:24:28] [PASSED] drm_gem_shmem_test_get_pages_sgt
[15:24:28] [PASSED] drm_gem_shmem_test_madvise
[15:24:28] [PASSED] drm_gem_shmem_test_purge
[15:24:28] ================== [PASSED] drm_gem_shmem ==================
[15:24:28] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[15:24:28] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[15:24:28] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[15:24:28] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[15:24:28] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[15:24:28] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[15:24:28] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[15:24:28] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[15:24:28] [PASSED] Automatic
[15:24:28] [PASSED] Full
[15:24:28] [PASSED] Limited 16:235
[15:24:28] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[15:24:28] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[15:24:28] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[15:24:28] [PASSED] drm_test_check_disable_connector
[15:24:28] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[15:24:28] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[15:24:28] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[15:24:28] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[15:24:28] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[15:24:28] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[15:24:28] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[15:24:28] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[15:24:28] [PASSED] drm_test_check_output_bpc_dvi
[15:24:28] [PASSED] drm_test_check_output_bpc_format_vic_1
[15:24:28] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[15:24:28] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[15:24:28] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[15:24:28] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[15:24:28] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[15:24:28] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[15:24:28] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[15:24:28] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[15:24:28] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[15:24:28] [PASSED] drm_test_check_broadcast_rgb_value
[15:24:28] [PASSED] drm_test_check_bpc_8_value
[15:24:28] [PASSED] drm_test_check_bpc_10_value
[15:24:28] [PASSED] drm_test_check_bpc_12_value
[15:24:28] [PASSED] drm_test_check_format_value
[15:24:28] [PASSED] drm_test_check_tmds_char_value
[15:24:28] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[15:24:28] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[15:24:28] [PASSED] drm_test_check_mode_valid
[15:24:28] [PASSED] drm_test_check_mode_valid_reject
[15:24:28] [PASSED] drm_test_check_mode_valid_reject_rate
[15:24:28] [PASSED] drm_test_check_mode_valid_reject_max_clock
[15:24:28] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[15:24:28] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[15:24:28] [PASSED] drm_test_check_infoframes
[15:24:28] [PASSED] drm_test_check_reject_avi_infoframe
[15:24:28] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[15:24:28] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[15:24:28] [PASSED] drm_test_check_reject_audio_infoframe
[15:24:28] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[15:24:28] ================= drm_managed (2 subtests) =================
[15:24:28] [PASSED] drm_test_managed_release_action
[15:24:28] [PASSED] drm_test_managed_run_action
[15:24:28] =================== [PASSED] drm_managed ===================
[15:24:28] =================== drm_mm (6 subtests) ====================
[15:24:28] [PASSED] drm_test_mm_init
[15:24:28] [PASSED] drm_test_mm_debug
[15:24:28] [PASSED] drm_test_mm_align32
[15:24:28] [PASSED] drm_test_mm_align64
[15:24:28] [PASSED] drm_test_mm_lowest
[15:24:28] [PASSED] drm_test_mm_highest
[15:24:28] ===================== [PASSED] drm_mm ======================
[15:24:28] ============= drm_modes_analog_tv (5 subtests) =============
[15:24:28] [PASSED] drm_test_modes_analog_tv_mono_576i
[15:24:28] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[15:24:28] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[15:24:28] [PASSED] drm_test_modes_analog_tv_pal_576i
[15:24:28] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[15:24:28] =============== [PASSED] drm_modes_analog_tv ===============
[15:24:28] ============== drm_plane_helper (2 subtests) ===============
[15:24:28] =============== drm_test_check_plane_state ================
[15:24:28] [PASSED] clipping_simple
[15:24:28] [PASSED] clipping_rotate_reflect
[15:24:28] [PASSED] positioning_simple
[15:24:28] [PASSED] upscaling
[15:24:28] [PASSED] downscaling
[15:24:28] [PASSED] rounding1
[15:24:28] [PASSED] rounding2
[15:24:28] [PASSED] rounding3
[15:24:28] [PASSED] rounding4
[15:24:28] =========== [PASSED] drm_test_check_plane_state ============
[15:24:28] =========== drm_test_check_invalid_plane_state ============
[15:24:28] [PASSED] positioning_invalid
[15:24:28] [PASSED] upscaling_invalid
[15:24:28] [PASSED] downscaling_invalid
[15:24:28] ======= [PASSED] drm_test_check_invalid_plane_state ========
[15:24:28] ================ [PASSED] drm_plane_helper =================
[15:24:28] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[15:24:28] ====== drm_test_connector_helper_tv_get_modes_check =======
[15:24:28] [PASSED] None
[15:24:28] [PASSED] PAL
[15:24:28] [PASSED] NTSC
[15:24:28] [PASSED] Both, NTSC Default
[15:24:28] [PASSED] Both, PAL Default
[15:24:28] [PASSED] Both, NTSC Default, with PAL on command-line
[15:24:28] [PASSED] Both, PAL Default, with NTSC on command-line
[15:24:28] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[15:24:28] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[15:24:28] ================== drm_rect (9 subtests) ===================
[15:24:28] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[15:24:28] [PASSED] drm_test_rect_clip_scaled_not_clipped
[15:24:28] [PASSED] drm_test_rect_clip_scaled_clipped
[15:24:28] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[15:24:28] ================= drm_test_rect_intersect =================
[15:24:28] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[15:24:28] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[15:24:28] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[15:24:28] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[15:24:28] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[15:24:28] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[15:24:28] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[15:24:28] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[15:24:28] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[15:24:28] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[15:24:28] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[15:24:28] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[15:24:28] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[15:24:28] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[15:24:28] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[15:24:28] ============= [PASSED] drm_test_rect_intersect =============
[15:24:28] ================ drm_test_rect_calc_hscale ================
[15:24:28] [PASSED] normal use
[15:24:28] [PASSED] out of max range
[15:24:28] [PASSED] out of min range
[15:24:28] [PASSED] zero dst
[15:24:28] [PASSED] negative src
[15:24:28] [PASSED] negative dst
[15:24:28] ============ [PASSED] drm_test_rect_calc_hscale ============
[15:24:28] ================ drm_test_rect_calc_vscale ================
[15:24:28] [PASSED] normal use
[15:24:28] [PASSED] out of max range
[15:24:28] [PASSED] out of min range
[15:24:28] [PASSED] zero dst
[15:24:28] [PASSED] negative src
[15:24:28] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[15:24:28] ============ [PASSED] drm_test_rect_calc_vscale ============
[15:24:28] ================== drm_test_rect_rotate ===================
[15:24:28] [PASSED] reflect-x
[15:24:28] [PASSED] reflect-y
[15:24:28] [PASSED] rotate-0
[15:24:28] [PASSED] rotate-90
[15:24:28] [PASSED] rotate-180
[15:24:28] [PASSED] rotate-270
[15:24:28] ============== [PASSED] drm_test_rect_rotate ===============
[15:24:28] ================ drm_test_rect_rotate_inv =================
[15:24:28] [PASSED] reflect-x
[15:24:28] [PASSED] reflect-y
[15:24:28] [PASSED] rotate-0
[15:24:28] [PASSED] rotate-90
[15:24:28] [PASSED] rotate-180
[15:24:28] [PASSED] rotate-270
[15:24:28] ============ [PASSED] drm_test_rect_rotate_inv =============
[15:24:28] ==================== [PASSED] drm_rect =====================
[15:24:28] ============ drm_sysfb_modeset_test (1 subtest) ============
[15:24:28] ============ drm_test_sysfb_build_fourcc_list =============
[15:24:28] [PASSED] no native formats
[15:24:28] [PASSED] XRGB8888 as native format
[15:24:28] [PASSED] remove duplicates
[15:24:28] [PASSED] convert alpha formats
[15:24:28] [PASSED] random formats
[15:24:28] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[15:24:28] ============= [PASSED] drm_sysfb_modeset_test ==============
[15:24:28] ================== drm_fixp (2 subtests) ===================
[15:24:28] [PASSED] drm_test_int2fixp
[15:24:28] [PASSED] drm_test_sm2fixp
[15:24:28] ==================== [PASSED] drm_fixp =====================
[15:24:28] ============================================================
[15:24:28] Testing complete. Ran 621 tests: passed: 621
[15:24:28] Elapsed time: 30.830s total, 1.667s configuring, 28.996s building, 0.123s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[15:24:28] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:24:30] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[15:24:39] Starting KUnit Kernel (1/1)...
[15:24:39] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:24:39] ================= ttm_device (5 subtests) ==================
[15:24:39] [PASSED] ttm_device_init_basic
[15:24:39] [PASSED] ttm_device_init_multiple
[15:24:39] [PASSED] ttm_device_fini_basic
[15:24:39] [PASSED] ttm_device_init_no_vma_man
[15:24:39] ================== ttm_device_init_pools ==================
[15:24:39] [PASSED] No DMA allocations, no DMA32 required
[15:24:39] [PASSED] DMA allocations, DMA32 required
[15:24:39] [PASSED] No DMA allocations, DMA32 required
[15:24:39] [PASSED] DMA allocations, no DMA32 required
[15:24:39] ============== [PASSED] ttm_device_init_pools ==============
[15:24:39] =================== [PASSED] ttm_device ====================
[15:24:39] ================== ttm_pool (8 subtests) ===================
[15:24:39] ================== ttm_pool_alloc_basic ===================
[15:24:39] [PASSED] One page
[15:24:39] [PASSED] More than one page
[15:24:39] [PASSED] Above the allocation limit
[15:24:39] [PASSED] One page, with coherent DMA mappings enabled
[15:24:39] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:24:39] ============== [PASSED] ttm_pool_alloc_basic ===============
[15:24:39] ============== ttm_pool_alloc_basic_dma_addr ==============
[15:24:39] [PASSED] One page
[15:24:39] [PASSED] More than one page
[15:24:39] [PASSED] Above the allocation limit
[15:24:39] [PASSED] One page, with coherent DMA mappings enabled
[15:24:39] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:24:39] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[15:24:39] [PASSED] ttm_pool_alloc_order_caching_match
[15:24:39] [PASSED] ttm_pool_alloc_caching_mismatch
[15:24:39] [PASSED] ttm_pool_alloc_order_mismatch
[15:24:39] [PASSED] ttm_pool_free_dma_alloc
[15:24:39] [PASSED] ttm_pool_free_no_dma_alloc
[15:24:39] [PASSED] ttm_pool_fini_basic
[15:24:39] ==================== [PASSED] ttm_pool =====================
[15:24:39] ================ ttm_resource (8 subtests) =================
[15:24:39] ================= ttm_resource_init_basic =================
[15:24:39] [PASSED] Init resource in TTM_PL_SYSTEM
[15:24:39] [PASSED] Init resource in TTM_PL_VRAM
[15:24:39] [PASSED] Init resource in a private placement
[15:24:39] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[15:24:39] ============= [PASSED] ttm_resource_init_basic =============
[15:24:39] [PASSED] ttm_resource_init_pinned
[15:24:39] [PASSED] ttm_resource_fini_basic
[15:24:39] [PASSED] ttm_resource_manager_init_basic
[15:24:39] [PASSED] ttm_resource_manager_usage_basic
[15:24:39] [PASSED] ttm_resource_manager_set_used_basic
[15:24:39] [PASSED] ttm_sys_man_alloc_basic
[15:24:39] [PASSED] ttm_sys_man_free_basic
[15:24:39] ================== [PASSED] ttm_resource ===================
[15:24:39] =================== ttm_tt (15 subtests) ===================
[15:24:39] ==================== ttm_tt_init_basic ====================
[15:24:39] [PASSED] Page-aligned size
[15:24:39] [PASSED] Extra pages requested
[15:24:39] ================ [PASSED] ttm_tt_init_basic ================
[15:24:39] [PASSED] ttm_tt_init_misaligned
[15:24:39] [PASSED] ttm_tt_fini_basic
[15:24:39] [PASSED] ttm_tt_fini_sg
[15:24:39] [PASSED] ttm_tt_fini_shmem
[15:24:39] [PASSED] ttm_tt_create_basic
[15:24:39] [PASSED] ttm_tt_create_invalid_bo_type
[15:24:39] [PASSED] ttm_tt_create_ttm_exists
[15:24:39] [PASSED] ttm_tt_create_failed
[15:24:39] [PASSED] ttm_tt_destroy_basic
[15:24:39] [PASSED] ttm_tt_populate_null_ttm
[15:24:39] [PASSED] ttm_tt_populate_populated_ttm
[15:24:39] [PASSED] ttm_tt_unpopulate_basic
[15:24:39] [PASSED] ttm_tt_unpopulate_empty_ttm
[15:24:39] [PASSED] ttm_tt_swapin_basic
[15:24:39] ===================== [PASSED] ttm_tt ======================
[15:24:39] =================== ttm_bo (14 subtests) ===================
[15:24:39] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[15:24:39] [PASSED] Cannot be interrupted and sleeps
[15:24:39] [PASSED] Cannot be interrupted, locks straight away
[15:24:39] [PASSED] Can be interrupted, sleeps
[15:24:39] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[15:24:39] [PASSED] ttm_bo_reserve_locked_no_sleep
[15:24:39] [PASSED] ttm_bo_reserve_no_wait_ticket
[15:24:39] [PASSED] ttm_bo_reserve_double_resv
[15:24:39] [PASSED] ttm_bo_reserve_interrupted
[15:24:39] [PASSED] ttm_bo_reserve_deadlock
[15:24:39] [PASSED] ttm_bo_unreserve_basic
[15:24:39] [PASSED] ttm_bo_unreserve_pinned
[15:24:39] [PASSED] ttm_bo_unreserve_bulk
[15:24:39] [PASSED] ttm_bo_fini_basic
[15:24:39] [PASSED] ttm_bo_fini_shared_resv
[15:24:39] [PASSED] ttm_bo_pin_basic
[15:24:39] [PASSED] ttm_bo_pin_unpin_resource
[15:24:39] [PASSED] ttm_bo_multiple_pin_one_unpin
[15:24:39] ===================== [PASSED] ttm_bo ======================
[15:24:39] ============== ttm_bo_validate (21 subtests) ===============
[15:24:39] ============== ttm_bo_init_reserved_sys_man ===============
[15:24:39] [PASSED] Buffer object for userspace
[15:24:39] [PASSED] Kernel buffer object
[15:24:39] [PASSED] Shared buffer object
[15:24:39] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[15:24:39] ============== ttm_bo_init_reserved_mock_man ==============
[15:24:39] [PASSED] Buffer object for userspace
[15:24:39] [PASSED] Kernel buffer object
[15:24:39] [PASSED] Shared buffer object
[15:24:39] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[15:24:39] [PASSED] ttm_bo_init_reserved_resv
[15:24:39] ================== ttm_bo_validate_basic ==================
[15:24:39] [PASSED] Buffer object for userspace
[15:24:39] [PASSED] Kernel buffer object
[15:24:39] [PASSED] Shared buffer object
[15:24:39] ============== [PASSED] ttm_bo_validate_basic ==============
[15:24:39] [PASSED] ttm_bo_validate_invalid_placement
[15:24:39] ============= ttm_bo_validate_same_placement ==============
[15:24:39] [PASSED] System manager
[15:24:39] [PASSED] VRAM manager
[15:24:39] ========= [PASSED] ttm_bo_validate_same_placement ==========
[15:24:39] [PASSED] ttm_bo_validate_failed_alloc
[15:24:39] [PASSED] ttm_bo_validate_pinned
[15:24:39] [PASSED] ttm_bo_validate_busy_placement
[15:24:39] ================ ttm_bo_validate_multihop =================
[15:24:39] [PASSED] Buffer object for userspace
[15:24:39] [PASSED] Kernel buffer object
[15:24:39] [PASSED] Shared buffer object
[15:24:39] ============ [PASSED] ttm_bo_validate_multihop =============
[15:24:39] ========== ttm_bo_validate_no_placement_signaled ==========
[15:24:39] [PASSED] Buffer object in system domain, no page vector
[15:24:39] [PASSED] Buffer object in system domain with an existing page vector
[15:24:39] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[15:24:39] ======== ttm_bo_validate_no_placement_not_signaled ========
[15:24:39] [PASSED] Buffer object for userspace
[15:24:39] [PASSED] Kernel buffer object
[15:24:39] [PASSED] Shared buffer object
[15:24:39] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[15:24:39] [PASSED] ttm_bo_validate_move_fence_signaled
[15:24:39] ========= ttm_bo_validate_move_fence_not_signaled =========
[15:24:39] [PASSED] Waits for GPU
[15:24:39] [PASSED] Tries to lock straight away
[15:24:39] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[15:24:39] [PASSED] ttm_bo_validate_happy_evict
[15:24:39] [PASSED] ttm_bo_validate_all_pinned_evict
[15:24:39] [PASSED] ttm_bo_validate_allowed_only_evict
[15:24:39] [PASSED] ttm_bo_validate_deleted_evict
[15:24:39] [PASSED] ttm_bo_validate_busy_domain_evict
[15:24:39] [PASSED] ttm_bo_validate_evict_gutting
[15:24:39] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[15:24:39] ================= [PASSED] ttm_bo_validate =================
[15:24:39] ============================================================
[15:24:39] Testing complete. Ran 101 tests: passed: 101
[15:24:39] Elapsed time: 11.103s total, 1.647s configuring, 9.240s building, 0.182s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev3)
2026-02-20 22:53 [PATCH v5 1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure Zhanjun Dong
` (3 preceding siblings ...)
2026-02-24 15:24 ` ✓ CI.KUnit: success for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev2) Patchwork
@ 2026-02-25 23:41 ` Patchwork
2026-02-26 0:37 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-26 3:13 ` ✗ Xe.CI.FULL: failure " Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-25 23:41 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
== Series Details ==
Series: series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev3)
URL : https://patchwork.freedesktop.org/series/161912/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[23:39:51] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:39:56] 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
[23:40:26] Starting KUnit Kernel (1/1)...
[23:40:26] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:40:27] ================== guc_buf (11 subtests) ===================
[23:40:27] [PASSED] test_smallest
[23:40:27] [PASSED] test_largest
[23:40:27] [PASSED] test_granular
[23:40:27] [PASSED] test_unique
[23:40:27] [PASSED] test_overlap
[23:40:27] [PASSED] test_reusable
[23:40:27] [PASSED] test_too_big
[23:40:27] [PASSED] test_flush
[23:40:27] [PASSED] test_lookup
[23:40:27] [PASSED] test_data
[23:40:27] [PASSED] test_class
[23:40:27] ===================== [PASSED] guc_buf =====================
[23:40:27] =================== guc_dbm (7 subtests) ===================
[23:40:27] [PASSED] test_empty
[23:40:27] [PASSED] test_default
[23:40:27] ======================== test_size ========================
[23:40:27] [PASSED] 4
[23:40:27] [PASSED] 8
[23:40:27] [PASSED] 32
[23:40:27] [PASSED] 256
[23:40:27] ==================== [PASSED] test_size ====================
[23:40:27] ======================= test_reuse ========================
[23:40:27] [PASSED] 4
[23:40:27] [PASSED] 8
[23:40:27] [PASSED] 32
[23:40:27] [PASSED] 256
[23:40:27] =================== [PASSED] test_reuse ====================
[23:40:27] =================== test_range_overlap ====================
[23:40:27] [PASSED] 4
[23:40:27] [PASSED] 8
[23:40:27] [PASSED] 32
[23:40:27] [PASSED] 256
[23:40:27] =============== [PASSED] test_range_overlap ================
[23:40:27] =================== test_range_compact ====================
[23:40:27] [PASSED] 4
[23:40:27] [PASSED] 8
[23:40:27] [PASSED] 32
[23:40:27] [PASSED] 256
[23:40:27] =============== [PASSED] test_range_compact ================
[23:40:27] ==================== test_range_spare =====================
[23:40:27] [PASSED] 4
[23:40:27] [PASSED] 8
[23:40:27] [PASSED] 32
[23:40:27] [PASSED] 256
[23:40:27] ================ [PASSED] test_range_spare =================
[23:40:27] ===================== [PASSED] guc_dbm =====================
[23:40:27] =================== guc_idm (6 subtests) ===================
[23:40:27] [PASSED] bad_init
[23:40:27] [PASSED] no_init
[23:40:27] [PASSED] init_fini
[23:40:27] [PASSED] check_used
[23:40:27] [PASSED] check_quota
[23:40:27] [PASSED] check_all
[23:40:27] ===================== [PASSED] guc_idm =====================
[23:40:27] ================== no_relay (3 subtests) ===================
[23:40:27] [PASSED] xe_drops_guc2pf_if_not_ready
[23:40:27] [PASSED] xe_drops_guc2vf_if_not_ready
[23:40:27] [PASSED] xe_rejects_send_if_not_ready
[23:40:27] ==================== [PASSED] no_relay =====================
[23:40:27] ================== pf_relay (14 subtests) ==================
[23:40:27] [PASSED] pf_rejects_guc2pf_too_short
[23:40:27] [PASSED] pf_rejects_guc2pf_too_long
[23:40:27] [PASSED] pf_rejects_guc2pf_no_payload
[23:40:27] [PASSED] pf_fails_no_payload
[23:40:27] [PASSED] pf_fails_bad_origin
[23:40:27] [PASSED] pf_fails_bad_type
[23:40:27] [PASSED] pf_txn_reports_error
[23:40:27] [PASSED] pf_txn_sends_pf2guc
[23:40:27] [PASSED] pf_sends_pf2guc
[23:40:27] [SKIPPED] pf_loopback_nop
[23:40:27] [SKIPPED] pf_loopback_echo
[23:40:27] [SKIPPED] pf_loopback_fail
[23:40:27] [SKIPPED] pf_loopback_busy
[23:40:27] [SKIPPED] pf_loopback_retry
[23:40:27] ==================== [PASSED] pf_relay =====================
[23:40:27] ================== vf_relay (3 subtests) ===================
[23:40:27] [PASSED] vf_rejects_guc2vf_too_short
[23:40:27] [PASSED] vf_rejects_guc2vf_too_long
[23:40:27] [PASSED] vf_rejects_guc2vf_no_payload
[23:40:27] ==================== [PASSED] vf_relay =====================
[23:40:27] ================ pf_gt_config (9 subtests) =================
[23:40:27] [PASSED] fair_contexts_1vf
[23:40:27] [PASSED] fair_doorbells_1vf
[23:40:27] [PASSED] fair_ggtt_1vf
[23:40:27] ====================== fair_vram_1vf ======================
[23:40:27] [PASSED] 3.50 GiB
[23:40:27] [PASSED] 11.5 GiB
[23:40:27] [PASSED] 15.5 GiB
[23:40:27] [PASSED] 31.5 GiB
[23:40:27] [PASSED] 63.5 GiB
[23:40:27] [PASSED] 13.9 GiB
[23:40:27] ================== [PASSED] fair_vram_1vf ==================
[23:40:27] ================ fair_vram_1vf_admin_only =================
[23:40:27] [PASSED] 3.50 GiB
[23:40:27] [PASSED] 11.5 GiB
[23:40:27] [PASSED] 15.5 GiB
[23:40:27] [PASSED] 31.5 GiB
[23:40:27] [PASSED] 63.5 GiB
[23:40:27] [PASSED] 13.9 GiB
[23:40:27] ============ [PASSED] fair_vram_1vf_admin_only =============
[23:40:27] ====================== fair_contexts ======================
[23:40:27] [PASSED] 1 VF
[23:40:27] [PASSED] 2 VFs
[23:40:27] [PASSED] 3 VFs
[23:40:27] [PASSED] 4 VFs
[23:40:27] [PASSED] 5 VFs
[23:40:27] [PASSED] 6 VFs
[23:40:27] [PASSED] 7 VFs
[23:40:27] [PASSED] 8 VFs
[23:40:27] [PASSED] 9 VFs
[23:40:27] [PASSED] 10 VFs
[23:40:27] [PASSED] 11 VFs
[23:40:27] [PASSED] 12 VFs
[23:40:27] [PASSED] 13 VFs
[23:40:27] [PASSED] 14 VFs
[23:40:27] [PASSED] 15 VFs
[23:40:27] [PASSED] 16 VFs
[23:40:27] [PASSED] 17 VFs
[23:40:27] [PASSED] 18 VFs
[23:40:27] [PASSED] 19 VFs
[23:40:27] [PASSED] 20 VFs
[23:40:27] [PASSED] 21 VFs
[23:40:27] [PASSED] 22 VFs
[23:40:27] [PASSED] 23 VFs
[23:40:27] [PASSED] 24 VFs
[23:40:27] [PASSED] 25 VFs
[23:40:27] [PASSED] 26 VFs
[23:40:27] [PASSED] 27 VFs
[23:40:27] [PASSED] 28 VFs
[23:40:27] [PASSED] 29 VFs
[23:40:27] [PASSED] 30 VFs
[23:40:27] [PASSED] 31 VFs
[23:40:27] [PASSED] 32 VFs
[23:40:27] [PASSED] 33 VFs
[23:40:27] [PASSED] 34 VFs
[23:40:27] [PASSED] 35 VFs
[23:40:27] [PASSED] 36 VFs
[23:40:27] [PASSED] 37 VFs
[23:40:27] [PASSED] 38 VFs
[23:40:27] [PASSED] 39 VFs
[23:40:27] [PASSED] 40 VFs
[23:40:27] [PASSED] 41 VFs
[23:40:27] [PASSED] 42 VFs
[23:40:27] [PASSED] 43 VFs
[23:40:27] [PASSED] 44 VFs
[23:40:27] [PASSED] 45 VFs
[23:40:27] [PASSED] 46 VFs
[23:40:27] [PASSED] 47 VFs
[23:40:27] [PASSED] 48 VFs
[23:40:27] [PASSED] 49 VFs
[23:40:27] [PASSED] 50 VFs
[23:40:27] [PASSED] 51 VFs
[23:40:27] [PASSED] 52 VFs
[23:40:27] [PASSED] 53 VFs
[23:40:27] [PASSED] 54 VFs
[23:40:27] [PASSED] 55 VFs
[23:40:27] [PASSED] 56 VFs
[23:40:27] [PASSED] 57 VFs
[23:40:27] [PASSED] 58 VFs
[23:40:27] [PASSED] 59 VFs
[23:40:27] [PASSED] 60 VFs
[23:40:27] [PASSED] 61 VFs
[23:40:27] [PASSED] 62 VFs
[23:40:27] [PASSED] 63 VFs
[23:40:27] ================== [PASSED] fair_contexts ==================
[23:40:27] ===================== fair_doorbells ======================
[23:40:27] [PASSED] 1 VF
[23:40:27] [PASSED] 2 VFs
[23:40:27] [PASSED] 3 VFs
[23:40:27] [PASSED] 4 VFs
[23:40:27] [PASSED] 5 VFs
[23:40:27] [PASSED] 6 VFs
[23:40:27] [PASSED] 7 VFs
[23:40:27] [PASSED] 8 VFs
[23:40:27] [PASSED] 9 VFs
[23:40:27] [PASSED] 10 VFs
[23:40:27] [PASSED] 11 VFs
[23:40:27] [PASSED] 12 VFs
[23:40:27] [PASSED] 13 VFs
[23:40:27] [PASSED] 14 VFs
[23:40:27] [PASSED] 15 VFs
[23:40:27] [PASSED] 16 VFs
[23:40:27] [PASSED] 17 VFs
[23:40:27] [PASSED] 18 VFs
[23:40:27] [PASSED] 19 VFs
[23:40:27] [PASSED] 20 VFs
[23:40:27] [PASSED] 21 VFs
[23:40:27] [PASSED] 22 VFs
[23:40:27] [PASSED] 23 VFs
[23:40:27] [PASSED] 24 VFs
[23:40:27] [PASSED] 25 VFs
[23:40:27] [PASSED] 26 VFs
[23:40:27] [PASSED] 27 VFs
[23:40:27] [PASSED] 28 VFs
[23:40:27] [PASSED] 29 VFs
[23:40:27] [PASSED] 30 VFs
[23:40:27] [PASSED] 31 VFs
[23:40:27] [PASSED] 32 VFs
[23:40:27] [PASSED] 33 VFs
[23:40:27] [PASSED] 34 VFs
[23:40:27] [PASSED] 35 VFs
[23:40:27] [PASSED] 36 VFs
[23:40:27] [PASSED] 37 VFs
[23:40:27] [PASSED] 38 VFs
[23:40:27] [PASSED] 39 VFs
[23:40:27] [PASSED] 40 VFs
[23:40:27] [PASSED] 41 VFs
[23:40:27] [PASSED] 42 VFs
[23:40:27] [PASSED] 43 VFs
[23:40:27] [PASSED] 44 VFs
[23:40:27] [PASSED] 45 VFs
[23:40:27] [PASSED] 46 VFs
[23:40:27] [PASSED] 47 VFs
[23:40:27] [PASSED] 48 VFs
[23:40:27] [PASSED] 49 VFs
[23:40:27] [PASSED] 50 VFs
[23:40:27] [PASSED] 51 VFs
[23:40:27] [PASSED] 52 VFs
[23:40:27] [PASSED] 53 VFs
[23:40:27] [PASSED] 54 VFs
[23:40:27] [PASSED] 55 VFs
[23:40:27] [PASSED] 56 VFs
[23:40:27] [PASSED] 57 VFs
[23:40:27] [PASSED] 58 VFs
[23:40:27] [PASSED] 59 VFs
[23:40:27] [PASSED] 60 VFs
[23:40:27] [PASSED] 61 VFs
[23:40:27] [PASSED] 62 VFs
[23:40:27] [PASSED] 63 VFs
[23:40:27] ================= [PASSED] fair_doorbells ==================
[23:40:27] ======================== fair_ggtt ========================
[23:40:27] [PASSED] 1 VF
[23:40:27] [PASSED] 2 VFs
[23:40:27] [PASSED] 3 VFs
[23:40:27] [PASSED] 4 VFs
[23:40:27] [PASSED] 5 VFs
[23:40:27] [PASSED] 6 VFs
[23:40:27] [PASSED] 7 VFs
[23:40:27] [PASSED] 8 VFs
[23:40:27] [PASSED] 9 VFs
[23:40:27] [PASSED] 10 VFs
[23:40:27] [PASSED] 11 VFs
[23:40:27] [PASSED] 12 VFs
[23:40:27] [PASSED] 13 VFs
[23:40:27] [PASSED] 14 VFs
[23:40:27] [PASSED] 15 VFs
[23:40:27] [PASSED] 16 VFs
[23:40:27] [PASSED] 17 VFs
[23:40:27] [PASSED] 18 VFs
[23:40:27] [PASSED] 19 VFs
[23:40:27] [PASSED] 20 VFs
[23:40:27] [PASSED] 21 VFs
[23:40:27] [PASSED] 22 VFs
[23:40:27] [PASSED] 23 VFs
[23:40:27] [PASSED] 24 VFs
[23:40:27] [PASSED] 25 VFs
[23:40:27] [PASSED] 26 VFs
[23:40:27] [PASSED] 27 VFs
[23:40:27] [PASSED] 28 VFs
[23:40:27] [PASSED] 29 VFs
[23:40:27] [PASSED] 30 VFs
[23:40:27] [PASSED] 31 VFs
[23:40:27] [PASSED] 32 VFs
[23:40:27] [PASSED] 33 VFs
[23:40:27] [PASSED] 34 VFs
[23:40:27] [PASSED] 35 VFs
[23:40:27] [PASSED] 36 VFs
[23:40:27] [PASSED] 37 VFs
[23:40:27] [PASSED] 38 VFs
[23:40:27] [PASSED] 39 VFs
[23:40:27] [PASSED] 40 VFs
[23:40:27] [PASSED] 41 VFs
[23:40:27] [PASSED] 42 VFs
[23:40:27] [PASSED] 43 VFs
[23:40:27] [PASSED] 44 VFs
[23:40:27] [PASSED] 45 VFs
[23:40:27] [PASSED] 46 VFs
[23:40:27] [PASSED] 47 VFs
[23:40:27] [PASSED] 48 VFs
[23:40:27] [PASSED] 49 VFs
[23:40:27] [PASSED] 50 VFs
[23:40:27] [PASSED] 51 VFs
[23:40:27] [PASSED] 52 VFs
[23:40:27] [PASSED] 53 VFs
[23:40:27] [PASSED] 54 VFs
[23:40:27] [PASSED] 55 VFs
[23:40:27] [PASSED] 56 VFs
[23:40:27] [PASSED] 57 VFs
[23:40:27] [PASSED] 58 VFs
[23:40:27] [PASSED] 59 VFs
[23:40:27] [PASSED] 60 VFs
[23:40:27] [PASSED] 61 VFs
[23:40:27] [PASSED] 62 VFs
[23:40:27] [PASSED] 63 VFs
[23:40:27] ==================== [PASSED] fair_ggtt ====================
[23:40:27] ======================== fair_vram ========================
[23:40:27] [PASSED] 1 VF
[23:40:27] [PASSED] 2 VFs
[23:40:27] [PASSED] 3 VFs
[23:40:27] [PASSED] 4 VFs
[23:40:27] [PASSED] 5 VFs
[23:40:27] [PASSED] 6 VFs
[23:40:27] [PASSED] 7 VFs
[23:40:27] [PASSED] 8 VFs
[23:40:27] [PASSED] 9 VFs
[23:40:27] [PASSED] 10 VFs
[23:40:27] [PASSED] 11 VFs
[23:40:27] [PASSED] 12 VFs
[23:40:27] [PASSED] 13 VFs
[23:40:27] [PASSED] 14 VFs
[23:40:27] [PASSED] 15 VFs
[23:40:27] [PASSED] 16 VFs
[23:40:27] [PASSED] 17 VFs
[23:40:27] [PASSED] 18 VFs
[23:40:27] [PASSED] 19 VFs
[23:40:27] [PASSED] 20 VFs
[23:40:27] [PASSED] 21 VFs
[23:40:27] [PASSED] 22 VFs
[23:40:27] [PASSED] 23 VFs
[23:40:27] [PASSED] 24 VFs
[23:40:27] [PASSED] 25 VFs
[23:40:27] [PASSED] 26 VFs
[23:40:27] [PASSED] 27 VFs
[23:40:27] [PASSED] 28 VFs
[23:40:27] [PASSED] 29 VFs
[23:40:27] [PASSED] 30 VFs
[23:40:27] [PASSED] 31 VFs
[23:40:27] [PASSED] 32 VFs
[23:40:27] [PASSED] 33 VFs
[23:40:27] [PASSED] 34 VFs
[23:40:27] [PASSED] 35 VFs
[23:40:27] [PASSED] 36 VFs
[23:40:27] [PASSED] 37 VFs
[23:40:27] [PASSED] 38 VFs
[23:40:27] [PASSED] 39 VFs
[23:40:27] [PASSED] 40 VFs
[23:40:27] [PASSED] 41 VFs
[23:40:27] [PASSED] 42 VFs
[23:40:27] [PASSED] 43 VFs
[23:40:27] [PASSED] 44 VFs
[23:40:27] [PASSED] 45 VFs
[23:40:27] [PASSED] 46 VFs
[23:40:27] [PASSED] 47 VFs
[23:40:27] [PASSED] 48 VFs
[23:40:27] [PASSED] 49 VFs
[23:40:27] [PASSED] 50 VFs
[23:40:27] [PASSED] 51 VFs
[23:40:27] [PASSED] 52 VFs
[23:40:27] [PASSED] 53 VFs
[23:40:27] [PASSED] 54 VFs
[23:40:27] [PASSED] 55 VFs
[23:40:27] [PASSED] 56 VFs
[23:40:27] [PASSED] 57 VFs
[23:40:27] [PASSED] 58 VFs
[23:40:27] [PASSED] 59 VFs
[23:40:27] [PASSED] 60 VFs
[23:40:27] [PASSED] 61 VFs
[23:40:27] [PASSED] 62 VFs
[23:40:27] [PASSED] 63 VFs
[23:40:27] ==================== [PASSED] fair_vram ====================
[23:40:27] ================== [PASSED] pf_gt_config ===================
[23:40:27] ===================== lmtt (1 subtest) =====================
[23:40:27] ======================== test_ops =========================
[23:40:27] [PASSED] 2-level
[23:40:27] [PASSED] multi-level
[23:40:27] ==================== [PASSED] test_ops =====================
[23:40:27] ====================== [PASSED] lmtt =======================
[23:40:27] ================= pf_service (11 subtests) =================
[23:40:27] [PASSED] pf_negotiate_any
[23:40:27] [PASSED] pf_negotiate_base_match
[23:40:27] [PASSED] pf_negotiate_base_newer
[23:40:27] [PASSED] pf_negotiate_base_next
[23:40:27] [SKIPPED] pf_negotiate_base_older
[23:40:27] [PASSED] pf_negotiate_base_prev
[23:40:27] [PASSED] pf_negotiate_latest_match
[23:40:27] [PASSED] pf_negotiate_latest_newer
[23:40:27] [PASSED] pf_negotiate_latest_next
[23:40:27] [SKIPPED] pf_negotiate_latest_older
[23:40:27] [SKIPPED] pf_negotiate_latest_prev
[23:40:27] =================== [PASSED] pf_service ====================
[23:40:27] ================= xe_guc_g2g (2 subtests) ==================
[23:40:27] ============== xe_live_guc_g2g_kunit_default ==============
[23:40:27] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[23:40:27] ============== xe_live_guc_g2g_kunit_allmem ===============
[23:40:27] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[23:40:27] =================== [SKIPPED] xe_guc_g2g ===================
[23:40:27] =================== xe_mocs (2 subtests) ===================
[23:40:27] ================ xe_live_mocs_kernel_kunit ================
[23:40:27] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[23:40:27] ================ xe_live_mocs_reset_kunit =================
[23:40:27] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[23:40:27] ==================== [SKIPPED] xe_mocs =====================
[23:40:27] ================= xe_migrate (2 subtests) ==================
[23:40:27] ================= xe_migrate_sanity_kunit =================
[23:40:27] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[23:40:27] ================== xe_validate_ccs_kunit ==================
[23:40:27] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[23:40:27] =================== [SKIPPED] xe_migrate ===================
[23:40:27] ================== xe_dma_buf (1 subtest) ==================
[23:40:27] ==================== xe_dma_buf_kunit =====================
[23:40:27] ================ [SKIPPED] xe_dma_buf_kunit ================
[23:40:27] =================== [SKIPPED] xe_dma_buf ===================
[23:40:27] ================= xe_bo_shrink (1 subtest) =================
[23:40:27] =================== xe_bo_shrink_kunit ====================
[23:40:27] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[23:40:27] ================== [SKIPPED] xe_bo_shrink ==================
[23:40:27] ==================== xe_bo (2 subtests) ====================
[23:40:27] ================== xe_ccs_migrate_kunit ===================
[23:40:27] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[23:40:27] ==================== xe_bo_evict_kunit ====================
[23:40:27] =============== [SKIPPED] xe_bo_evict_kunit ================
[23:40:27] ===================== [SKIPPED] xe_bo ======================
[23:40:27] ==================== args (13 subtests) ====================
[23:40:27] [PASSED] count_args_test
[23:40:27] [PASSED] call_args_example
[23:40:27] [PASSED] call_args_test
[23:40:27] [PASSED] drop_first_arg_example
[23:40:27] [PASSED] drop_first_arg_test
[23:40:27] [PASSED] first_arg_example
[23:40:27] [PASSED] first_arg_test
[23:40:27] [PASSED] last_arg_example
[23:40:27] [PASSED] last_arg_test
[23:40:27] [PASSED] pick_arg_example
[23:40:27] [PASSED] if_args_example
[23:40:27] [PASSED] if_args_test
[23:40:27] [PASSED] sep_comma_example
[23:40:27] ====================== [PASSED] args =======================
[23:40:27] =================== xe_pci (3 subtests) ====================
[23:40:27] ==================== check_graphics_ip ====================
[23:40:27] [PASSED] 12.00 Xe_LP
[23:40:27] [PASSED] 12.10 Xe_LP+
[23:40:27] [PASSED] 12.55 Xe_HPG
[23:40:27] [PASSED] 12.60 Xe_HPC
[23:40:27] [PASSED] 12.70 Xe_LPG
[23:40:27] [PASSED] 12.71 Xe_LPG
[23:40:27] [PASSED] 12.74 Xe_LPG+
[23:40:27] [PASSED] 20.01 Xe2_HPG
[23:40:27] [PASSED] 20.02 Xe2_HPG
[23:40:27] [PASSED] 20.04 Xe2_LPG
[23:40:27] [PASSED] 30.00 Xe3_LPG
[23:40:27] [PASSED] 30.01 Xe3_LPG
[23:40:27] [PASSED] 30.03 Xe3_LPG
[23:40:27] [PASSED] 30.04 Xe3_LPG
[23:40:27] [PASSED] 30.05 Xe3_LPG
[23:40:27] [PASSED] 35.10 Xe3p_LPG
[23:40:27] [PASSED] 35.11 Xe3p_XPC
[23:40:27] ================ [PASSED] check_graphics_ip ================
[23:40:27] ===================== check_media_ip ======================
[23:40:27] [PASSED] 12.00 Xe_M
[23:40:27] [PASSED] 12.55 Xe_HPM
[23:40:27] [PASSED] 13.00 Xe_LPM+
[23:40:27] [PASSED] 13.01 Xe2_HPM
[23:40:27] [PASSED] 20.00 Xe2_LPM
[23:40:27] [PASSED] 30.00 Xe3_LPM
[23:40:27] [PASSED] 30.02 Xe3_LPM
[23:40:27] [PASSED] 35.00 Xe3p_LPM
[23:40:27] [PASSED] 35.03 Xe3p_HPM
[23:40:27] ================= [PASSED] check_media_ip ==================
[23:40:27] =================== check_platform_desc ===================
[23:40:27] [PASSED] 0x9A60 (TIGERLAKE)
[23:40:27] [PASSED] 0x9A68 (TIGERLAKE)
[23:40:27] [PASSED] 0x9A70 (TIGERLAKE)
[23:40:27] [PASSED] 0x9A40 (TIGERLAKE)
[23:40:27] [PASSED] 0x9A49 (TIGERLAKE)
[23:40:27] [PASSED] 0x9A59 (TIGERLAKE)
[23:40:27] [PASSED] 0x9A78 (TIGERLAKE)
[23:40:27] [PASSED] 0x9AC0 (TIGERLAKE)
[23:40:27] [PASSED] 0x9AC9 (TIGERLAKE)
[23:40:27] [PASSED] 0x9AD9 (TIGERLAKE)
[23:40:27] [PASSED] 0x9AF8 (TIGERLAKE)
[23:40:27] [PASSED] 0x4C80 (ROCKETLAKE)
[23:40:27] [PASSED] 0x4C8A (ROCKETLAKE)
[23:40:27] [PASSED] 0x4C8B (ROCKETLAKE)
[23:40:27] [PASSED] 0x4C8C (ROCKETLAKE)
[23:40:27] [PASSED] 0x4C90 (ROCKETLAKE)
[23:40:27] [PASSED] 0x4C9A (ROCKETLAKE)
[23:40:27] [PASSED] 0x4680 (ALDERLAKE_S)
[23:40:27] [PASSED] 0x4682 (ALDERLAKE_S)
[23:40:27] [PASSED] 0x4688 (ALDERLAKE_S)
[23:40:27] [PASSED] 0x468A (ALDERLAKE_S)
[23:40:27] [PASSED] 0x468B (ALDERLAKE_S)
[23:40:27] [PASSED] 0x4690 (ALDERLAKE_S)
[23:40:27] [PASSED] 0x4692 (ALDERLAKE_S)
[23:40:27] [PASSED] 0x4693 (ALDERLAKE_S)
[23:40:27] [PASSED] 0x46A0 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46A1 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46A2 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46A3 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46A6 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46A8 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46AA (ALDERLAKE_P)
[23:40:27] [PASSED] 0x462A (ALDERLAKE_P)
[23:40:27] [PASSED] 0x4626 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x4628 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46B0 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46B1 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46B2 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46B3 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46C0 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46C1 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46C2 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46C3 (ALDERLAKE_P)
[23:40:27] [PASSED] 0x46D0 (ALDERLAKE_N)
[23:40:27] [PASSED] 0x46D1 (ALDERLAKE_N)
[23:40:27] [PASSED] 0x46D2 (ALDERLAKE_N)
[23:40:27] [PASSED] 0x46D3 (ALDERLAKE_N)
[23:40:27] [PASSED] 0x46D4 (ALDERLAKE_N)
[23:40:27] [PASSED] 0xA721 (ALDERLAKE_P)
[23:40:27] [PASSED] 0xA7A1 (ALDERLAKE_P)
[23:40:27] [PASSED] 0xA7A9 (ALDERLAKE_P)
[23:40:27] [PASSED] 0xA7AC (ALDERLAKE_P)
[23:40:27] [PASSED] 0xA7AD (ALDERLAKE_P)
[23:40:27] [PASSED] 0xA720 (ALDERLAKE_P)
[23:40:27] [PASSED] 0xA7A0 (ALDERLAKE_P)
[23:40:27] [PASSED] 0xA7A8 (ALDERLAKE_P)
[23:40:27] [PASSED] 0xA7AA (ALDERLAKE_P)
[23:40:27] [PASSED] 0xA7AB (ALDERLAKE_P)
[23:40:27] [PASSED] 0xA780 (ALDERLAKE_S)
[23:40:27] [PASSED] 0xA781 (ALDERLAKE_S)
[23:40:27] [PASSED] 0xA782 (ALDERLAKE_S)
[23:40:27] [PASSED] 0xA783 (ALDERLAKE_S)
[23:40:27] [PASSED] 0xA788 (ALDERLAKE_S)
[23:40:27] [PASSED] 0xA789 (ALDERLAKE_S)
[23:40:27] [PASSED] 0xA78A (ALDERLAKE_S)
[23:40:27] [PASSED] 0xA78B (ALDERLAKE_S)
[23:40:27] [PASSED] 0x4905 (DG1)
[23:40:27] [PASSED] 0x4906 (DG1)
[23:40:27] [PASSED] 0x4907 (DG1)
[23:40:27] [PASSED] 0x4908 (DG1)
[23:40:27] [PASSED] 0x4909 (DG1)
[23:40:27] [PASSED] 0x56C0 (DG2)
[23:40:27] [PASSED] 0x56C2 (DG2)
[23:40:27] [PASSED] 0x56C1 (DG2)
[23:40:27] [PASSED] 0x7D51 (METEORLAKE)
[23:40:27] [PASSED] 0x7DD1 (METEORLAKE)
[23:40:27] [PASSED] 0x7D41 (METEORLAKE)
[23:40:27] [PASSED] 0x7D67 (METEORLAKE)
[23:40:27] [PASSED] 0xB640 (METEORLAKE)
[23:40:27] [PASSED] 0x56A0 (DG2)
[23:40:27] [PASSED] 0x56A1 (DG2)
[23:40:27] [PASSED] 0x56A2 (DG2)
[23:40:27] [PASSED] 0x56BE (DG2)
[23:40:27] [PASSED] 0x56BF (DG2)
[23:40:27] [PASSED] 0x5690 (DG2)
[23:40:27] [PASSED] 0x5691 (DG2)
[23:40:27] [PASSED] 0x5692 (DG2)
[23:40:27] [PASSED] 0x56A5 (DG2)
[23:40:27] [PASSED] 0x56A6 (DG2)
[23:40:27] [PASSED] 0x56B0 (DG2)
[23:40:27] [PASSED] 0x56B1 (DG2)
[23:40:27] [PASSED] 0x56BA (DG2)
[23:40:27] [PASSED] 0x56BB (DG2)
[23:40:27] [PASSED] 0x56BC (DG2)
[23:40:27] [PASSED] 0x56BD (DG2)
[23:40:27] [PASSED] 0x5693 (DG2)
[23:40:27] [PASSED] 0x5694 (DG2)
[23:40:27] [PASSED] 0x5695 (DG2)
[23:40:27] [PASSED] 0x56A3 (DG2)
[23:40:27] [PASSED] 0x56A4 (DG2)
[23:40:27] [PASSED] 0x56B2 (DG2)
[23:40:27] [PASSED] 0x56B3 (DG2)
[23:40:27] [PASSED] 0x5696 (DG2)
[23:40:27] [PASSED] 0x5697 (DG2)
[23:40:27] [PASSED] 0xB69 (PVC)
[23:40:27] [PASSED] 0xB6E (PVC)
[23:40:27] [PASSED] 0xBD4 (PVC)
[23:40:27] [PASSED] 0xBD5 (PVC)
[23:40:27] [PASSED] 0xBD6 (PVC)
[23:40:27] [PASSED] 0xBD7 (PVC)
[23:40:27] [PASSED] 0xBD8 (PVC)
[23:40:27] [PASSED] 0xBD9 (PVC)
[23:40:27] [PASSED] 0xBDA (PVC)
[23:40:27] [PASSED] 0xBDB (PVC)
[23:40:27] [PASSED] 0xBE0 (PVC)
[23:40:27] [PASSED] 0xBE1 (PVC)
[23:40:27] [PASSED] 0xBE5 (PVC)
[23:40:27] [PASSED] 0x7D40 (METEORLAKE)
[23:40:27] [PASSED] 0x7D45 (METEORLAKE)
[23:40:27] [PASSED] 0x7D55 (METEORLAKE)
[23:40:27] [PASSED] 0x7D60 (METEORLAKE)
[23:40:27] [PASSED] 0x7DD5 (METEORLAKE)
[23:40:27] [PASSED] 0x6420 (LUNARLAKE)
[23:40:27] [PASSED] 0x64A0 (LUNARLAKE)
[23:40:27] [PASSED] 0x64B0 (LUNARLAKE)
[23:40:27] [PASSED] 0xE202 (BATTLEMAGE)
[23:40:27] [PASSED] 0xE209 (BATTLEMAGE)
[23:40:27] [PASSED] 0xE20B (BATTLEMAGE)
[23:40:27] [PASSED] 0xE20C (BATTLEMAGE)
[23:40:27] [PASSED] 0xE20D (BATTLEMAGE)
[23:40:27] [PASSED] 0xE210 (BATTLEMAGE)
[23:40:27] [PASSED] 0xE211 (BATTLEMAGE)
[23:40:27] [PASSED] 0xE212 (BATTLEMAGE)
[23:40:27] [PASSED] 0xE216 (BATTLEMAGE)
[23:40:27] [PASSED] 0xE220 (BATTLEMAGE)
[23:40:27] [PASSED] 0xE221 (BATTLEMAGE)
[23:40:27] [PASSED] 0xE222 (BATTLEMAGE)
[23:40:27] [PASSED] 0xE223 (BATTLEMAGE)
[23:40:27] [PASSED] 0xB080 (PANTHERLAKE)
[23:40:27] [PASSED] 0xB081 (PANTHERLAKE)
[23:40:27] [PASSED] 0xB082 (PANTHERLAKE)
[23:40:27] [PASSED] 0xB083 (PANTHERLAKE)
[23:40:27] [PASSED] 0xB084 (PANTHERLAKE)
[23:40:27] [PASSED] 0xB085 (PANTHERLAKE)
[23:40:27] [PASSED] 0xB086 (PANTHERLAKE)
[23:40:27] [PASSED] 0xB087 (PANTHERLAKE)
[23:40:27] [PASSED] 0xB08F (PANTHERLAKE)
[23:40:27] [PASSED] 0xB090 (PANTHERLAKE)
[23:40:27] [PASSED] 0xB0A0 (PANTHERLAKE)
[23:40:27] [PASSED] 0xB0B0 (PANTHERLAKE)
[23:40:27] [PASSED] 0xFD80 (PANTHERLAKE)
[23:40:27] [PASSED] 0xFD81 (PANTHERLAKE)
[23:40:27] [PASSED] 0xD740 (NOVALAKE_S)
[23:40:27] [PASSED] 0xD741 (NOVALAKE_S)
[23:40:27] [PASSED] 0xD742 (NOVALAKE_S)
[23:40:27] [PASSED] 0xD743 (NOVALAKE_S)
[23:40:27] [PASSED] 0xD744 (NOVALAKE_S)
[23:40:27] [PASSED] 0xD745 (NOVALAKE_S)
[23:40:27] [PASSED] 0x674C (CRESCENTISLAND)
[23:40:27] [PASSED] 0xD750 (NOVALAKE_P)
[23:40:27] [PASSED] 0xD751 (NOVALAKE_P)
[23:40:27] [PASSED] 0xD752 (NOVALAKE_P)
[23:40:27] [PASSED] 0xD753 (NOVALAKE_P)
[23:40:27] [PASSED] 0xD754 (NOVALAKE_P)
[23:40:27] [PASSED] 0xD755 (NOVALAKE_P)
[23:40:27] [PASSED] 0xD756 (NOVALAKE_P)
[23:40:27] [PASSED] 0xD757 (NOVALAKE_P)
[23:40:27] [PASSED] 0xD75F (NOVALAKE_P)
[23:40:27] =============== [PASSED] check_platform_desc ===============
[23:40:27] ===================== [PASSED] xe_pci ======================
[23:40:27] =================== xe_rtp (2 subtests) ====================
[23:40:27] =============== xe_rtp_process_to_sr_tests ================
[23:40:27] [PASSED] coalesce-same-reg
[23:40:27] [PASSED] no-match-no-add
[23:40:27] [PASSED] match-or
[23:40:27] [PASSED] match-or-xfail
[23:40:27] [PASSED] no-match-no-add-multiple-rules
[23:40:27] [PASSED] two-regs-two-entries
[23:40:27] [PASSED] clr-one-set-other
[23:40:27] [PASSED] set-field
[23:40:27] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[23:40:27] [PASSED] conflict-not-disjoint
[23:40:27] [PASSED] conflict-reg-type
[23:40:27] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[23:40:27] ================== xe_rtp_process_tests ===================
[23:40:27] [PASSED] active1
[23:40:27] [PASSED] active2
[23:40:27] [PASSED] active-inactive
[23:40:27] [PASSED] inactive-active
[23:40:27] [PASSED] inactive-1st_or_active-inactive
[23:40:27] [PASSED] inactive-2nd_or_active-inactive
[23:40:27] [PASSED] inactive-last_or_active-inactive
[23:40:27] [PASSED] inactive-no_or_active-inactive
[23:40:27] ============== [PASSED] xe_rtp_process_tests ===============
[23:40:27] ===================== [PASSED] xe_rtp ======================
[23:40:27] ==================== xe_wa (1 subtest) =====================
[23:40:27] ======================== xe_wa_gt =========================
[23:40:27] [PASSED] TIGERLAKE B0
[23:40:27] [PASSED] DG1 A0
[23:40:27] [PASSED] DG1 B0
[23:40:27] [PASSED] ALDERLAKE_S A0
[23:40:27] [PASSED] ALDERLAKE_S B0
[23:40:27] [PASSED] ALDERLAKE_S C0
[23:40:27] [PASSED] ALDERLAKE_S D0
[23:40:27] [PASSED] ALDERLAKE_P A0
[23:40:27] [PASSED] ALDERLAKE_P B0
[23:40:27] [PASSED] ALDERLAKE_P C0
[23:40:27] [PASSED] ALDERLAKE_S RPLS D0
[23:40:27] [PASSED] ALDERLAKE_P RPLU E0
[23:40:27] [PASSED] DG2 G10 C0
[23:40:27] [PASSED] DG2 G11 B1
[23:40:27] [PASSED] DG2 G12 A1
[23:40:27] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[23:40:27] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[23:40:27] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[23:40:27] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[23:40:27] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[23:40:27] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[23:40:27] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[23:40:27] ==================== [PASSED] xe_wa_gt =====================
[23:40:27] ====================== [PASSED] xe_wa ======================
[23:40:27] ============================================================
[23:40:27] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[23:40:27] Elapsed time: 35.521s total, 4.166s configuring, 30.684s building, 0.616s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[23:40:27] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:40:29] 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
[23:40:53] Starting KUnit Kernel (1/1)...
[23:40:53] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:40:53] ============ drm_test_pick_cmdline (2 subtests) ============
[23:40:53] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[23:40:53] =============== drm_test_pick_cmdline_named ===============
[23:40:53] [PASSED] NTSC
[23:40:53] [PASSED] NTSC-J
[23:40:53] [PASSED] PAL
[23:40:53] [PASSED] PAL-M
[23:40:53] =========== [PASSED] drm_test_pick_cmdline_named ===========
[23:40:53] ============== [PASSED] drm_test_pick_cmdline ==============
[23:40:53] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[23:40:53] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[23:40:53] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[23:40:53] =========== drm_validate_clone_mode (2 subtests) ===========
[23:40:53] ============== drm_test_check_in_clone_mode ===============
[23:40:53] [PASSED] in_clone_mode
[23:40:53] [PASSED] not_in_clone_mode
[23:40:53] ========== [PASSED] drm_test_check_in_clone_mode ===========
[23:40:53] =============== drm_test_check_valid_clones ===============
[23:40:53] [PASSED] not_in_clone_mode
[23:40:53] [PASSED] valid_clone
[23:40:53] [PASSED] invalid_clone
[23:40:53] =========== [PASSED] drm_test_check_valid_clones ===========
[23:40:53] ============= [PASSED] drm_validate_clone_mode =============
[23:40:53] ============= drm_validate_modeset (1 subtest) =============
[23:40:53] [PASSED] drm_test_check_connector_changed_modeset
[23:40:53] ============== [PASSED] drm_validate_modeset ===============
[23:40:53] ====== drm_test_bridge_get_current_state (2 subtests) ======
[23:40:53] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[23:40:53] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[23:40:53] ======== [PASSED] drm_test_bridge_get_current_state ========
[23:40:53] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[23:40:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[23:40:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[23:40:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[23:40:53] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[23:40:53] ============== drm_bridge_alloc (2 subtests) ===============
[23:40:53] [PASSED] drm_test_drm_bridge_alloc_basic
[23:40:53] [PASSED] drm_test_drm_bridge_alloc_get_put
[23:40:53] ================ [PASSED] drm_bridge_alloc =================
[23:40:53] ============= drm_cmdline_parser (40 subtests) =============
[23:40:53] [PASSED] drm_test_cmdline_force_d_only
[23:40:53] [PASSED] drm_test_cmdline_force_D_only_dvi
[23:40:53] [PASSED] drm_test_cmdline_force_D_only_hdmi
[23:40:53] [PASSED] drm_test_cmdline_force_D_only_not_digital
[23:40:53] [PASSED] drm_test_cmdline_force_e_only
[23:40:53] [PASSED] drm_test_cmdline_res
[23:40:53] [PASSED] drm_test_cmdline_res_vesa
[23:40:53] [PASSED] drm_test_cmdline_res_vesa_rblank
[23:40:53] [PASSED] drm_test_cmdline_res_rblank
[23:40:53] [PASSED] drm_test_cmdline_res_bpp
[23:40:53] [PASSED] drm_test_cmdline_res_refresh
[23:40:53] [PASSED] drm_test_cmdline_res_bpp_refresh
[23:40:53] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[23:40:53] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[23:40:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[23:40:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[23:40:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[23:40:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[23:40:53] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[23:40:53] [PASSED] drm_test_cmdline_res_margins_force_on
[23:40:53] [PASSED] drm_test_cmdline_res_vesa_margins
[23:40:53] [PASSED] drm_test_cmdline_name
[23:40:53] [PASSED] drm_test_cmdline_name_bpp
[23:40:53] [PASSED] drm_test_cmdline_name_option
[23:40:53] [PASSED] drm_test_cmdline_name_bpp_option
[23:40:53] [PASSED] drm_test_cmdline_rotate_0
[23:40:53] [PASSED] drm_test_cmdline_rotate_90
[23:40:53] [PASSED] drm_test_cmdline_rotate_180
[23:40:53] [PASSED] drm_test_cmdline_rotate_270
[23:40:53] [PASSED] drm_test_cmdline_hmirror
[23:40:53] [PASSED] drm_test_cmdline_vmirror
[23:40:53] [PASSED] drm_test_cmdline_margin_options
[23:40:53] [PASSED] drm_test_cmdline_multiple_options
[23:40:53] [PASSED] drm_test_cmdline_bpp_extra_and_option
[23:40:53] [PASSED] drm_test_cmdline_extra_and_option
[23:40:53] [PASSED] drm_test_cmdline_freestanding_options
[23:40:53] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[23:40:53] [PASSED] drm_test_cmdline_panel_orientation
[23:40:53] ================ drm_test_cmdline_invalid =================
[23:40:53] [PASSED] margin_only
[23:40:53] [PASSED] interlace_only
[23:40:53] [PASSED] res_missing_x
[23:40:53] [PASSED] res_missing_y
[23:40:53] [PASSED] res_bad_y
[23:40:53] [PASSED] res_missing_y_bpp
[23:40:53] [PASSED] res_bad_bpp
[23:40:53] [PASSED] res_bad_refresh
[23:40:53] [PASSED] res_bpp_refresh_force_on_off
[23:40:53] [PASSED] res_invalid_mode
[23:40:53] [PASSED] res_bpp_wrong_place_mode
[23:40:53] [PASSED] name_bpp_refresh
[23:40:53] [PASSED] name_refresh
[23:40:53] [PASSED] name_refresh_wrong_mode
[23:40:53] [PASSED] name_refresh_invalid_mode
[23:40:53] [PASSED] rotate_multiple
[23:40:53] [PASSED] rotate_invalid_val
[23:40:53] [PASSED] rotate_truncated
[23:40:53] [PASSED] invalid_option
[23:40:53] [PASSED] invalid_tv_option
[23:40:53] [PASSED] truncated_tv_option
[23:40:53] ============ [PASSED] drm_test_cmdline_invalid =============
[23:40:53] =============== drm_test_cmdline_tv_options ===============
[23:40:53] [PASSED] NTSC
[23:40:53] [PASSED] NTSC_443
[23:40:53] [PASSED] NTSC_J
[23:40:53] [PASSED] PAL
[23:40:53] [PASSED] PAL_M
[23:40:53] [PASSED] PAL_N
[23:40:53] [PASSED] SECAM
[23:40:53] [PASSED] MONO_525
[23:40:53] [PASSED] MONO_625
[23:40:53] =========== [PASSED] drm_test_cmdline_tv_options ===========
[23:40:53] =============== [PASSED] drm_cmdline_parser ================
[23:40:53] ========== drmm_connector_hdmi_init (20 subtests) ==========
[23:40:53] [PASSED] drm_test_connector_hdmi_init_valid
[23:40:53] [PASSED] drm_test_connector_hdmi_init_bpc_8
[23:40:53] [PASSED] drm_test_connector_hdmi_init_bpc_10
[23:40:53] [PASSED] drm_test_connector_hdmi_init_bpc_12
[23:40:53] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[23:40:53] [PASSED] drm_test_connector_hdmi_init_bpc_null
[23:40:53] [PASSED] drm_test_connector_hdmi_init_formats_empty
[23:40:53] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[23:40:53] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:40:53] [PASSED] supported_formats=0x9 yuv420_allowed=1
[23:40:53] [PASSED] supported_formats=0x9 yuv420_allowed=0
[23:40:53] [PASSED] supported_formats=0x3 yuv420_allowed=1
[23:40:53] [PASSED] supported_formats=0x3 yuv420_allowed=0
[23:40:53] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:40:53] [PASSED] drm_test_connector_hdmi_init_null_ddc
[23:40:53] [PASSED] drm_test_connector_hdmi_init_null_product
[23:40:53] [PASSED] drm_test_connector_hdmi_init_null_vendor
[23:40:53] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[23:40:53] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[23:40:53] [PASSED] drm_test_connector_hdmi_init_product_valid
[23:40:53] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[23:40:53] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[23:40:53] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[23:40:53] ========= drm_test_connector_hdmi_init_type_valid =========
[23:40:53] [PASSED] HDMI-A
[23:40:53] [PASSED] HDMI-B
[23:40:53] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[23:40:53] ======== drm_test_connector_hdmi_init_type_invalid ========
[23:40:53] [PASSED] Unknown
[23:40:53] [PASSED] VGA
[23:40:53] [PASSED] DVI-I
[23:40:53] [PASSED] DVI-D
[23:40:53] [PASSED] DVI-A
[23:40:53] [PASSED] Composite
[23:40:53] [PASSED] SVIDEO
[23:40:53] [PASSED] LVDS
[23:40:53] [PASSED] Component
[23:40:53] [PASSED] DIN
[23:40:53] [PASSED] DP
[23:40:53] [PASSED] TV
[23:40:53] [PASSED] eDP
[23:40:53] [PASSED] Virtual
[23:40:53] [PASSED] DSI
[23:40:53] [PASSED] DPI
[23:40:53] [PASSED] Writeback
[23:40:53] [PASSED] SPI
[23:40:53] [PASSED] USB
[23:40:53] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[23:40:53] ============ [PASSED] drmm_connector_hdmi_init =============
[23:40:53] ============= drmm_connector_init (3 subtests) =============
[23:40:53] [PASSED] drm_test_drmm_connector_init
[23:40:53] [PASSED] drm_test_drmm_connector_init_null_ddc
[23:40:53] ========= drm_test_drmm_connector_init_type_valid =========
[23:40:53] [PASSED] Unknown
[23:40:53] [PASSED] VGA
[23:40:53] [PASSED] DVI-I
[23:40:53] [PASSED] DVI-D
[23:40:53] [PASSED] DVI-A
[23:40:53] [PASSED] Composite
[23:40:53] [PASSED] SVIDEO
[23:40:53] [PASSED] LVDS
[23:40:53] [PASSED] Component
[23:40:53] [PASSED] DIN
[23:40:53] [PASSED] DP
[23:40:53] [PASSED] HDMI-A
[23:40:53] [PASSED] HDMI-B
[23:40:53] [PASSED] TV
[23:40:53] [PASSED] eDP
[23:40:53] [PASSED] Virtual
[23:40:53] [PASSED] DSI
[23:40:53] [PASSED] DPI
[23:40:53] [PASSED] Writeback
[23:40:53] [PASSED] SPI
[23:40:53] [PASSED] USB
[23:40:53] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[23:40:53] =============== [PASSED] drmm_connector_init ===============
[23:40:53] ========= drm_connector_dynamic_init (6 subtests) ==========
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_init
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_init_properties
[23:40:53] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[23:40:53] [PASSED] Unknown
[23:40:53] [PASSED] VGA
[23:40:53] [PASSED] DVI-I
[23:40:53] [PASSED] DVI-D
[23:40:53] [PASSED] DVI-A
[23:40:53] [PASSED] Composite
[23:40:53] [PASSED] SVIDEO
[23:40:53] [PASSED] LVDS
[23:40:53] [PASSED] Component
[23:40:53] [PASSED] DIN
[23:40:53] [PASSED] DP
[23:40:53] [PASSED] HDMI-A
[23:40:53] [PASSED] HDMI-B
[23:40:53] [PASSED] TV
[23:40:53] [PASSED] eDP
[23:40:53] [PASSED] Virtual
[23:40:53] [PASSED] DSI
[23:40:53] [PASSED] DPI
[23:40:53] [PASSED] Writeback
[23:40:53] [PASSED] SPI
[23:40:53] [PASSED] USB
[23:40:53] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[23:40:53] ======== drm_test_drm_connector_dynamic_init_name =========
[23:40:53] [PASSED] Unknown
[23:40:53] [PASSED] VGA
[23:40:53] [PASSED] DVI-I
[23:40:53] [PASSED] DVI-D
[23:40:53] [PASSED] DVI-A
[23:40:53] [PASSED] Composite
[23:40:53] [PASSED] SVIDEO
[23:40:53] [PASSED] LVDS
[23:40:53] [PASSED] Component
[23:40:53] [PASSED] DIN
[23:40:53] [PASSED] DP
[23:40:53] [PASSED] HDMI-A
[23:40:53] [PASSED] HDMI-B
[23:40:53] [PASSED] TV
[23:40:53] [PASSED] eDP
[23:40:53] [PASSED] Virtual
[23:40:53] [PASSED] DSI
[23:40:53] [PASSED] DPI
[23:40:53] [PASSED] Writeback
[23:40:53] [PASSED] SPI
[23:40:53] [PASSED] USB
[23:40:53] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[23:40:53] =========== [PASSED] drm_connector_dynamic_init ============
[23:40:53] ==== drm_connector_dynamic_register_early (4 subtests) =====
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[23:40:53] ====== [PASSED] drm_connector_dynamic_register_early =======
[23:40:53] ======= drm_connector_dynamic_register (7 subtests) ========
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[23:40:53] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[23:40:53] ========= [PASSED] drm_connector_dynamic_register ==========
[23:40:53] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[23:40:53] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[23:40:53] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[23:40:53] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[23:40:53] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[23:40:53] ========== drm_test_get_tv_mode_from_name_valid ===========
[23:40:53] [PASSED] NTSC
[23:40:53] [PASSED] NTSC-443
[23:40:53] [PASSED] NTSC-J
[23:40:53] [PASSED] PAL
[23:40:53] [PASSED] PAL-M
[23:40:53] [PASSED] PAL-N
[23:40:53] [PASSED] SECAM
[23:40:53] [PASSED] Mono
[23:40:53] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[23:40:53] [PASSED] drm_test_get_tv_mode_from_name_truncated
[23:40:53] ============ [PASSED] drm_get_tv_mode_from_name ============
[23:40:53] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[23:40:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[23:40:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[23:40:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[23:40:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[23:40:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[23:40:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[23:40:53] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[23:40:53] [PASSED] VIC 96
[23:40:53] [PASSED] VIC 97
[23:40:53] [PASSED] VIC 101
[23:40:53] [PASSED] VIC 102
[23:40:53] [PASSED] VIC 106
[23:40:53] [PASSED] VIC 107
[23:40:53] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[23:40:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[23:40:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[23:40:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[23:40:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[23:40:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[23:40:53] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[23:40:53] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[23:40:53] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[23:40:53] [PASSED] Automatic
[23:40:53] [PASSED] Full
[23:40:53] [PASSED] Limited 16:235
[23:40:53] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[23:40:53] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[23:40:53] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[23:40:53] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[23:40:53] === drm_test_drm_hdmi_connector_get_output_format_name ====
[23:40:53] [PASSED] RGB
[23:40:53] [PASSED] YUV 4:2:0
[23:40:53] [PASSED] YUV 4:2:2
[23:40:53] [PASSED] YUV 4:4:4
[23:40:53] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[23:40:53] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[23:40:53] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[23:40:53] ============= drm_damage_helper (21 subtests) ==============
[23:40:53] [PASSED] drm_test_damage_iter_no_damage
[23:40:53] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[23:40:53] [PASSED] drm_test_damage_iter_no_damage_src_moved
[23:40:53] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[23:40:53] [PASSED] drm_test_damage_iter_no_damage_not_visible
[23:40:53] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[23:40:53] [PASSED] drm_test_damage_iter_no_damage_no_fb
[23:40:53] [PASSED] drm_test_damage_iter_simple_damage
[23:40:53] [PASSED] drm_test_damage_iter_single_damage
[23:40:53] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[23:40:53] [PASSED] drm_test_damage_iter_single_damage_outside_src
[23:40:53] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[23:40:53] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[23:40:53] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[23:40:53] [PASSED] drm_test_damage_iter_single_damage_src_moved
[23:40:53] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[23:40:53] [PASSED] drm_test_damage_iter_damage
[23:40:53] [PASSED] drm_test_damage_iter_damage_one_intersect
[23:40:53] [PASSED] drm_test_damage_iter_damage_one_outside
[23:40:53] [PASSED] drm_test_damage_iter_damage_src_moved
[23:40:53] [PASSED] drm_test_damage_iter_damage_not_visible
[23:40:53] ================ [PASSED] drm_damage_helper ================
[23:40:53] ============== drm_dp_mst_helper (3 subtests) ==============
[23:40:53] ============== drm_test_dp_mst_calc_pbn_mode ==============
[23:40:53] [PASSED] Clock 154000 BPP 30 DSC disabled
[23:40:53] [PASSED] Clock 234000 BPP 30 DSC disabled
[23:40:53] [PASSED] Clock 297000 BPP 24 DSC disabled
[23:40:53] [PASSED] Clock 332880 BPP 24 DSC enabled
[23:40:53] [PASSED] Clock 324540 BPP 24 DSC enabled
[23:40:53] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[23:40:53] ============== drm_test_dp_mst_calc_pbn_div ===============
[23:40:53] [PASSED] Link rate 2000000 lane count 4
[23:40:53] [PASSED] Link rate 2000000 lane count 2
[23:40:53] [PASSED] Link rate 2000000 lane count 1
[23:40:53] [PASSED] Link rate 1350000 lane count 4
[23:40:53] [PASSED] Link rate 1350000 lane count 2
[23:40:53] [PASSED] Link rate 1350000 lane count 1
[23:40:53] [PASSED] Link rate 1000000 lane count 4
[23:40:53] [PASSED] Link rate 1000000 lane count 2
[23:40:53] [PASSED] Link rate 1000000 lane count 1
[23:40:53] [PASSED] Link rate 810000 lane count 4
[23:40:53] [PASSED] Link rate 810000 lane count 2
[23:40:53] [PASSED] Link rate 810000 lane count 1
[23:40:53] [PASSED] Link rate 540000 lane count 4
[23:40:53] [PASSED] Link rate 540000 lane count 2
[23:40:53] [PASSED] Link rate 540000 lane count 1
[23:40:53] [PASSED] Link rate 270000 lane count 4
[23:40:53] [PASSED] Link rate 270000 lane count 2
[23:40:53] [PASSED] Link rate 270000 lane count 1
[23:40:53] [PASSED] Link rate 162000 lane count 4
[23:40:53] [PASSED] Link rate 162000 lane count 2
[23:40:53] [PASSED] Link rate 162000 lane count 1
[23:40:53] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[23:40:53] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[23:40:53] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[23:40:53] [PASSED] DP_POWER_UP_PHY with port number
[23:40:53] [PASSED] DP_POWER_DOWN_PHY with port number
[23:40:53] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[23:40:53] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[23:40:53] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[23:40:53] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[23:40:53] [PASSED] DP_QUERY_PAYLOAD with port number
[23:40:53] [PASSED] DP_QUERY_PAYLOAD with VCPI
[23:40:53] [PASSED] DP_REMOTE_DPCD_READ with port number
[23:40:53] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[23:40:53] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[23:40:53] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[23:40:53] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[23:40:53] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[23:40:53] [PASSED] DP_REMOTE_I2C_READ with port number
[23:40:53] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[23:40:53] [PASSED] DP_REMOTE_I2C_READ with transactions array
[23:40:53] [PASSED] DP_REMOTE_I2C_WRITE with port number
[23:40:53] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[23:40:53] [PASSED] DP_REMOTE_I2C_WRITE with data array
[23:40:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[23:40:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[23:40:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[23:40:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[23:40:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[23:40:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[23:40:53] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[23:40:53] ================ [PASSED] drm_dp_mst_helper ================
[23:40:53] ================== drm_exec (7 subtests) ===================
[23:40:53] [PASSED] sanitycheck
[23:40:53] [PASSED] test_lock
[23:40:53] [PASSED] test_lock_unlock
[23:40:53] [PASSED] test_duplicates
[23:40:53] [PASSED] test_prepare
[23:40:53] [PASSED] test_prepare_array
[23:40:53] [PASSED] test_multiple_loops
[23:40:53] ==================== [PASSED] drm_exec =====================
[23:40:53] =========== drm_format_helper_test (17 subtests) ===========
[23:40:53] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[23:40:53] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[23:40:53] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[23:40:53] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[23:40:53] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[23:40:53] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[23:40:53] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[23:40:53] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[23:40:53] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[23:40:53] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[23:40:53] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[23:40:53] ============== drm_test_fb_xrgb8888_to_mono ===============
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[23:40:53] ==================== drm_test_fb_swab =====================
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ================ [PASSED] drm_test_fb_swab =================
[23:40:53] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[23:40:53] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[23:40:53] [PASSED] single_pixel_source_buffer
[23:40:53] [PASSED] single_pixel_clip_rectangle
[23:40:53] [PASSED] well_known_colors
[23:40:53] [PASSED] destination_pitch
[23:40:53] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[23:40:53] ================= drm_test_fb_clip_offset =================
[23:40:53] [PASSED] pass through
[23:40:53] [PASSED] horizontal offset
[23:40:53] [PASSED] vertical offset
[23:40:53] [PASSED] horizontal and vertical offset
[23:40:53] [PASSED] horizontal offset (custom pitch)
[23:40:53] [PASSED] vertical offset (custom pitch)
[23:40:53] [PASSED] horizontal and vertical offset (custom pitch)
[23:40:53] ============= [PASSED] drm_test_fb_clip_offset =============
[23:40:53] =================== drm_test_fb_memcpy ====================
[23:40:53] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[23:40:53] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[23:40:53] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[23:40:53] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[23:40:53] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[23:40:53] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[23:40:53] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[23:40:53] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[23:40:53] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[23:40:53] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[23:40:53] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[23:40:53] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[23:40:53] =============== [PASSED] drm_test_fb_memcpy ================
[23:40:53] ============= [PASSED] drm_format_helper_test ==============
[23:40:53] ================= drm_format (18 subtests) =================
[23:40:53] [PASSED] drm_test_format_block_width_invalid
[23:40:53] [PASSED] drm_test_format_block_width_one_plane
[23:40:53] [PASSED] drm_test_format_block_width_two_plane
[23:40:53] [PASSED] drm_test_format_block_width_three_plane
[23:40:53] [PASSED] drm_test_format_block_width_tiled
[23:40:53] [PASSED] drm_test_format_block_height_invalid
[23:40:53] [PASSED] drm_test_format_block_height_one_plane
[23:40:53] [PASSED] drm_test_format_block_height_two_plane
[23:40:53] [PASSED] drm_test_format_block_height_three_plane
[23:40:53] [PASSED] drm_test_format_block_height_tiled
[23:40:53] [PASSED] drm_test_format_min_pitch_invalid
[23:40:53] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[23:40:53] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[23:40:53] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[23:40:53] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[23:40:53] [PASSED] drm_test_format_min_pitch_two_plane
[23:40:53] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[23:40:53] [PASSED] drm_test_format_min_pitch_tiled
[23:40:53] =================== [PASSED] drm_format ====================
[23:40:53] ============== drm_framebuffer (10 subtests) ===============
[23:40:53] ========== drm_test_framebuffer_check_src_coords ==========
[23:40:53] [PASSED] Success: source fits into fb
[23:40:53] [PASSED] Fail: overflowing fb with x-axis coordinate
[23:40:53] [PASSED] Fail: overflowing fb with y-axis coordinate
[23:40:53] [PASSED] Fail: overflowing fb with source width
[23:40:53] [PASSED] Fail: overflowing fb with source height
[23:40:53] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[23:40:53] [PASSED] drm_test_framebuffer_cleanup
[23:40:53] =============== drm_test_framebuffer_create ===============
[23:40:53] [PASSED] ABGR8888 normal sizes
[23:40:53] [PASSED] ABGR8888 max sizes
[23:40:53] [PASSED] ABGR8888 pitch greater than min required
[23:40:53] [PASSED] ABGR8888 pitch less than min required
[23:40:53] [PASSED] ABGR8888 Invalid width
[23:40:53] [PASSED] ABGR8888 Invalid buffer handle
[23:40:53] [PASSED] No pixel format
[23:40:53] [PASSED] ABGR8888 Width 0
[23:40:53] [PASSED] ABGR8888 Height 0
[23:40:53] [PASSED] ABGR8888 Out of bound height * pitch combination
[23:40:53] [PASSED] ABGR8888 Large buffer offset
[23:40:53] [PASSED] ABGR8888 Buffer offset for inexistent plane
[23:40:53] [PASSED] ABGR8888 Invalid flag
[23:40:53] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[23:40:53] [PASSED] ABGR8888 Valid buffer modifier
[23:40:53] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[23:40:53] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[23:40:53] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[23:40:53] [PASSED] NV12 Normal sizes
[23:40:53] [PASSED] NV12 Max sizes
[23:40:53] [PASSED] NV12 Invalid pitch
[23:40:53] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[23:40:53] [PASSED] NV12 different modifier per-plane
[23:40:53] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[23:40:53] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[23:40:53] [PASSED] NV12 Modifier for inexistent plane
[23:40:53] [PASSED] NV12 Handle for inexistent plane
[23:40:53] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[23:40:53] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[23:40:53] [PASSED] YVU420 Normal sizes
[23:40:53] [PASSED] YVU420 Max sizes
[23:40:53] [PASSED] YVU420 Invalid pitch
[23:40:53] [PASSED] YVU420 Different pitches
[23:40:53] [PASSED] YVU420 Different buffer offsets/pitches
[23:40:53] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[23:40:53] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[23:40:53] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[23:40:53] [PASSED] YVU420 Valid modifier
[23:40:53] [PASSED] YVU420 Different modifiers per plane
[23:40:53] [PASSED] YVU420 Modifier for inexistent plane
[23:40:53] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[23:40:53] [PASSED] X0L2 Normal sizes
[23:40:53] [PASSED] X0L2 Max sizes
[23:40:53] [PASSED] X0L2 Invalid pitch
[23:40:53] [PASSED] X0L2 Pitch greater than minimum required
[23:40:53] [PASSED] X0L2 Handle for inexistent plane
[23:40:53] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[23:40:53] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[23:40:53] [PASSED] X0L2 Valid modifier
[23:40:53] [PASSED] X0L2 Modifier for inexistent plane
[23:40:53] =========== [PASSED] drm_test_framebuffer_create ===========
[23:40:53] [PASSED] drm_test_framebuffer_free
[23:40:53] [PASSED] drm_test_framebuffer_init
[23:40:53] [PASSED] drm_test_framebuffer_init_bad_format
[23:40:53] [PASSED] drm_test_framebuffer_init_dev_mismatch
[23:40:53] [PASSED] drm_test_framebuffer_lookup
[23:40:53] [PASSED] drm_test_framebuffer_lookup_inexistent
[23:40:53] [PASSED] drm_test_framebuffer_modifiers_not_supported
[23:40:53] ================= [PASSED] drm_framebuffer =================
[23:40:53] ================ drm_gem_shmem (8 subtests) ================
[23:40:53] [PASSED] drm_gem_shmem_test_obj_create
[23:40:53] [PASSED] drm_gem_shmem_test_obj_create_private
[23:40:53] [PASSED] drm_gem_shmem_test_pin_pages
[23:40:53] [PASSED] drm_gem_shmem_test_vmap
[23:40:53] [PASSED] drm_gem_shmem_test_get_sg_table
[23:40:53] [PASSED] drm_gem_shmem_test_get_pages_sgt
[23:40:53] [PASSED] drm_gem_shmem_test_madvise
[23:40:53] [PASSED] drm_gem_shmem_test_purge
[23:40:53] ================== [PASSED] drm_gem_shmem ==================
[23:40:53] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[23:40:53] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[23:40:53] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[23:40:53] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[23:40:53] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[23:40:53] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[23:40:53] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[23:40:53] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[23:40:53] [PASSED] Automatic
[23:40:53] [PASSED] Full
[23:40:53] [PASSED] Limited 16:235
[23:40:53] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[23:40:53] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[23:40:53] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[23:40:53] [PASSED] drm_test_check_disable_connector
[23:40:53] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[23:40:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[23:40:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[23:40:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[23:40:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[23:40:53] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[23:40:53] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[23:40:53] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[23:40:53] [PASSED] drm_test_check_output_bpc_dvi
[23:40:53] [PASSED] drm_test_check_output_bpc_format_vic_1
[23:40:53] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[23:40:53] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[23:40:53] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[23:40:53] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[23:40:53] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[23:40:53] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[23:40:53] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[23:40:53] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[23:40:53] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[23:40:53] [PASSED] drm_test_check_broadcast_rgb_value
[23:40:53] [PASSED] drm_test_check_bpc_8_value
[23:40:53] [PASSED] drm_test_check_bpc_10_value
[23:40:53] [PASSED] drm_test_check_bpc_12_value
[23:40:53] [PASSED] drm_test_check_format_value
[23:40:53] [PASSED] drm_test_check_tmds_char_value
[23:40:53] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[23:40:53] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[23:40:53] [PASSED] drm_test_check_mode_valid
[23:40:53] [PASSED] drm_test_check_mode_valid_reject
[23:40:53] [PASSED] drm_test_check_mode_valid_reject_rate
[23:40:53] [PASSED] drm_test_check_mode_valid_reject_max_clock
[23:40:53] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[23:40:53] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[23:40:53] [PASSED] drm_test_check_infoframes
[23:40:53] [PASSED] drm_test_check_reject_avi_infoframe
[23:40:53] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[23:40:53] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[23:40:53] [PASSED] drm_test_check_reject_audio_infoframe
[23:40:53] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[23:40:53] ================= drm_managed (2 subtests) =================
[23:40:53] [PASSED] drm_test_managed_release_action
[23:40:53] [PASSED] drm_test_managed_run_action
[23:40:53] =================== [PASSED] drm_managed ===================
[23:40:53] =================== drm_mm (6 subtests) ====================
[23:40:53] [PASSED] drm_test_mm_init
[23:40:53] [PASSED] drm_test_mm_debug
[23:40:53] [PASSED] drm_test_mm_align32
[23:40:53] [PASSED] drm_test_mm_align64
[23:40:53] [PASSED] drm_test_mm_lowest
[23:40:53] [PASSED] drm_test_mm_highest
[23:40:53] ===================== [PASSED] drm_mm ======================
[23:40:53] ============= drm_modes_analog_tv (5 subtests) =============
[23:40:53] [PASSED] drm_test_modes_analog_tv_mono_576i
[23:40:53] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[23:40:53] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[23:40:53] [PASSED] drm_test_modes_analog_tv_pal_576i
[23:40:53] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[23:40:53] =============== [PASSED] drm_modes_analog_tv ===============
[23:40:53] ============== drm_plane_helper (2 subtests) ===============
[23:40:53] =============== drm_test_check_plane_state ================
[23:40:53] [PASSED] clipping_simple
[23:40:53] [PASSED] clipping_rotate_reflect
[23:40:53] [PASSED] positioning_simple
[23:40:53] [PASSED] upscaling
[23:40:53] [PASSED] downscaling
[23:40:53] [PASSED] rounding1
[23:40:53] [PASSED] rounding2
[23:40:53] [PASSED] rounding3
[23:40:53] [PASSED] rounding4
[23:40:53] =========== [PASSED] drm_test_check_plane_state ============
[23:40:53] =========== drm_test_check_invalid_plane_state ============
[23:40:53] [PASSED] positioning_invalid
[23:40:53] [PASSED] upscaling_invalid
[23:40:53] [PASSED] downscaling_invalid
[23:40:53] ======= [PASSED] drm_test_check_invalid_plane_state ========
[23:40:53] ================ [PASSED] drm_plane_helper =================
[23:40:53] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[23:40:53] ====== drm_test_connector_helper_tv_get_modes_check =======
[23:40:53] [PASSED] None
[23:40:53] [PASSED] PAL
[23:40:53] [PASSED] NTSC
[23:40:53] [PASSED] Both, NTSC Default
[23:40:53] [PASSED] Both, PAL Default
[23:40:53] [PASSED] Both, NTSC Default, with PAL on command-line
[23:40:53] [PASSED] Both, PAL Default, with NTSC on command-line
[23:40:53] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[23:40:53] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[23:40:53] ================== drm_rect (9 subtests) ===================
[23:40:53] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[23:40:53] [PASSED] drm_test_rect_clip_scaled_not_clipped
[23:40:53] [PASSED] drm_test_rect_clip_scaled_clipped
[23:40:53] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[23:40:53] ================= drm_test_rect_intersect =================
[23:40:53] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[23:40:53] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[23:40:53] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[23:40:53] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[23:40:53] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[23:40:53] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[23:40:53] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[23:40:53] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[23:40:53] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[23:40:53] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[23:40:53] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[23:40:53] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[23:40:53] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[23:40:53] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[23:40:53] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[23:40:53] ============= [PASSED] drm_test_rect_intersect =============
[23:40:53] ================ drm_test_rect_calc_hscale ================
[23:40:53] [PASSED] normal use
[23:40:53] [PASSED] out of max range
[23:40:53] [PASSED] out of min range
[23:40:53] [PASSED] zero dst
[23:40:53] [PASSED] negative src
[23:40:53] [PASSED] negative dst
[23:40:53] ============ [PASSED] drm_test_rect_calc_hscale ============
[23:40:53] ================ drm_test_rect_calc_vscale ================
[23:40:53] [PASSED] normal use
[23:40:53] [PASSED] out of max range
[23:40:53] [PASSED] out of min range
[23:40:53] [PASSED] zero dst
[23:40:53] [PASSED] negative src
[23:40:53] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[23:40:53] ============ [PASSED] drm_test_rect_calc_vscale ============
[23:40:53] ================== drm_test_rect_rotate ===================
[23:40:53] [PASSED] reflect-x
[23:40:53] [PASSED] reflect-y
[23:40:53] [PASSED] rotate-0
[23:40:53] [PASSED] rotate-90
[23:40:53] [PASSED] rotate-180
[23:40:53] [PASSED] rotate-270
[23:40:53] ============== [PASSED] drm_test_rect_rotate ===============
[23:40:53] ================ drm_test_rect_rotate_inv =================
[23:40:53] [PASSED] reflect-x
[23:40:53] [PASSED] reflect-y
[23:40:53] [PASSED] rotate-0
[23:40:53] [PASSED] rotate-90
[23:40:53] [PASSED] rotate-180
[23:40:53] [PASSED] rotate-270
[23:40:53] ============ [PASSED] drm_test_rect_rotate_inv =============
[23:40:53] ==================== [PASSED] drm_rect =====================
[23:40:53] ============ drm_sysfb_modeset_test (1 subtest) ============
[23:40:53] ============ drm_test_sysfb_build_fourcc_list =============
[23:40:53] [PASSED] no native formats
[23:40:53] [PASSED] XRGB8888 as native format
[23:40:53] [PASSED] remove duplicates
[23:40:53] [PASSED] convert alpha formats
[23:40:53] [PASSED] random formats
[23:40:53] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[23:40:53] ============= [PASSED] drm_sysfb_modeset_test ==============
[23:40:53] ================== drm_fixp (2 subtests) ===================
[23:40:53] [PASSED] drm_test_int2fixp
[23:40:53] [PASSED] drm_test_sm2fixp
[23:40:53] ==================== [PASSED] drm_fixp =====================
[23:40:53] ============================================================
[23:40:53] Testing complete. Ran 621 tests: passed: 621
[23:40:53] Elapsed time: 25.951s total, 1.717s configuring, 24.065s building, 0.132s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[23:40:53] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:40:55] 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
[23:41:04] Starting KUnit Kernel (1/1)...
[23:41:04] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:41:04] ================= ttm_device (5 subtests) ==================
[23:41:04] [PASSED] ttm_device_init_basic
[23:41:04] [PASSED] ttm_device_init_multiple
[23:41:04] [PASSED] ttm_device_fini_basic
[23:41:04] [PASSED] ttm_device_init_no_vma_man
[23:41:04] ================== ttm_device_init_pools ==================
[23:41:04] [PASSED] No DMA allocations, no DMA32 required
[23:41:04] [PASSED] DMA allocations, DMA32 required
[23:41:04] [PASSED] No DMA allocations, DMA32 required
[23:41:04] [PASSED] DMA allocations, no DMA32 required
[23:41:04] ============== [PASSED] ttm_device_init_pools ==============
[23:41:04] =================== [PASSED] ttm_device ====================
[23:41:04] ================== ttm_pool (8 subtests) ===================
[23:41:04] ================== ttm_pool_alloc_basic ===================
[23:41:04] [PASSED] One page
[23:41:04] [PASSED] More than one page
[23:41:04] [PASSED] Above the allocation limit
[23:41:04] [PASSED] One page, with coherent DMA mappings enabled
[23:41:04] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:41:04] ============== [PASSED] ttm_pool_alloc_basic ===============
[23:41:04] ============== ttm_pool_alloc_basic_dma_addr ==============
[23:41:04] [PASSED] One page
[23:41:04] [PASSED] More than one page
[23:41:04] [PASSED] Above the allocation limit
[23:41:04] [PASSED] One page, with coherent DMA mappings enabled
[23:41:04] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:41:04] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[23:41:04] [PASSED] ttm_pool_alloc_order_caching_match
[23:41:04] [PASSED] ttm_pool_alloc_caching_mismatch
[23:41:04] [PASSED] ttm_pool_alloc_order_mismatch
[23:41:04] [PASSED] ttm_pool_free_dma_alloc
[23:41:04] [PASSED] ttm_pool_free_no_dma_alloc
[23:41:04] [PASSED] ttm_pool_fini_basic
[23:41:04] ==================== [PASSED] ttm_pool =====================
[23:41:04] ================ ttm_resource (8 subtests) =================
[23:41:04] ================= ttm_resource_init_basic =================
[23:41:04] [PASSED] Init resource in TTM_PL_SYSTEM
[23:41:04] [PASSED] Init resource in TTM_PL_VRAM
[23:41:04] [PASSED] Init resource in a private placement
[23:41:04] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[23:41:04] ============= [PASSED] ttm_resource_init_basic =============
[23:41:04] [PASSED] ttm_resource_init_pinned
[23:41:04] [PASSED] ttm_resource_fini_basic
[23:41:04] [PASSED] ttm_resource_manager_init_basic
[23:41:04] [PASSED] ttm_resource_manager_usage_basic
[23:41:04] [PASSED] ttm_resource_manager_set_used_basic
[23:41:04] [PASSED] ttm_sys_man_alloc_basic
[23:41:04] [PASSED] ttm_sys_man_free_basic
[23:41:04] ================== [PASSED] ttm_resource ===================
[23:41:04] =================== ttm_tt (15 subtests) ===================
[23:41:04] ==================== ttm_tt_init_basic ====================
[23:41:04] [PASSED] Page-aligned size
[23:41:04] [PASSED] Extra pages requested
[23:41:04] ================ [PASSED] ttm_tt_init_basic ================
[23:41:04] [PASSED] ttm_tt_init_misaligned
[23:41:04] [PASSED] ttm_tt_fini_basic
[23:41:04] [PASSED] ttm_tt_fini_sg
[23:41:04] [PASSED] ttm_tt_fini_shmem
[23:41:04] [PASSED] ttm_tt_create_basic
[23:41:04] [PASSED] ttm_tt_create_invalid_bo_type
[23:41:04] [PASSED] ttm_tt_create_ttm_exists
[23:41:04] [PASSED] ttm_tt_create_failed
[23:41:04] [PASSED] ttm_tt_destroy_basic
[23:41:04] [PASSED] ttm_tt_populate_null_ttm
[23:41:04] [PASSED] ttm_tt_populate_populated_ttm
[23:41:04] [PASSED] ttm_tt_unpopulate_basic
[23:41:04] [PASSED] ttm_tt_unpopulate_empty_ttm
[23:41:04] [PASSED] ttm_tt_swapin_basic
[23:41:04] ===================== [PASSED] ttm_tt ======================
[23:41:04] =================== ttm_bo (14 subtests) ===================
[23:41:04] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[23:41:04] [PASSED] Cannot be interrupted and sleeps
[23:41:04] [PASSED] Cannot be interrupted, locks straight away
[23:41:04] [PASSED] Can be interrupted, sleeps
[23:41:04] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[23:41:04] [PASSED] ttm_bo_reserve_locked_no_sleep
[23:41:04] [PASSED] ttm_bo_reserve_no_wait_ticket
[23:41:05] [PASSED] ttm_bo_reserve_double_resv
[23:41:05] [PASSED] ttm_bo_reserve_interrupted
[23:41:05] [PASSED] ttm_bo_reserve_deadlock
[23:41:05] [PASSED] ttm_bo_unreserve_basic
[23:41:05] [PASSED] ttm_bo_unreserve_pinned
[23:41:05] [PASSED] ttm_bo_unreserve_bulk
[23:41:05] [PASSED] ttm_bo_fini_basic
[23:41:05] [PASSED] ttm_bo_fini_shared_resv
[23:41:05] [PASSED] ttm_bo_pin_basic
[23:41:05] [PASSED] ttm_bo_pin_unpin_resource
[23:41:05] [PASSED] ttm_bo_multiple_pin_one_unpin
[23:41:05] ===================== [PASSED] ttm_bo ======================
[23:41:05] ============== ttm_bo_validate (21 subtests) ===============
[23:41:05] ============== ttm_bo_init_reserved_sys_man ===============
[23:41:05] [PASSED] Buffer object for userspace
[23:41:05] [PASSED] Kernel buffer object
[23:41:05] [PASSED] Shared buffer object
[23:41:05] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[23:41:05] ============== ttm_bo_init_reserved_mock_man ==============
[23:41:05] [PASSED] Buffer object for userspace
[23:41:05] [PASSED] Kernel buffer object
[23:41:05] [PASSED] Shared buffer object
[23:41:05] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[23:41:05] [PASSED] ttm_bo_init_reserved_resv
[23:41:05] ================== ttm_bo_validate_basic ==================
[23:41:05] [PASSED] Buffer object for userspace
[23:41:05] [PASSED] Kernel buffer object
[23:41:05] [PASSED] Shared buffer object
[23:41:05] ============== [PASSED] ttm_bo_validate_basic ==============
[23:41:05] [PASSED] ttm_bo_validate_invalid_placement
[23:41:05] ============= ttm_bo_validate_same_placement ==============
[23:41:05] [PASSED] System manager
[23:41:05] [PASSED] VRAM manager
[23:41:05] ========= [PASSED] ttm_bo_validate_same_placement ==========
[23:41:05] [PASSED] ttm_bo_validate_failed_alloc
[23:41:05] [PASSED] ttm_bo_validate_pinned
[23:41:05] [PASSED] ttm_bo_validate_busy_placement
[23:41:05] ================ ttm_bo_validate_multihop =================
[23:41:05] [PASSED] Buffer object for userspace
[23:41:05] [PASSED] Kernel buffer object
[23:41:05] [PASSED] Shared buffer object
[23:41:05] ============ [PASSED] ttm_bo_validate_multihop =============
[23:41:05] ========== ttm_bo_validate_no_placement_signaled ==========
[23:41:05] [PASSED] Buffer object in system domain, no page vector
[23:41:05] [PASSED] Buffer object in system domain with an existing page vector
[23:41:05] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[23:41:05] ======== ttm_bo_validate_no_placement_not_signaled ========
[23:41:05] [PASSED] Buffer object for userspace
[23:41:05] [PASSED] Kernel buffer object
[23:41:05] [PASSED] Shared buffer object
[23:41:05] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[23:41:05] [PASSED] ttm_bo_validate_move_fence_signaled
[23:41:05] ========= ttm_bo_validate_move_fence_not_signaled =========
[23:41:05] [PASSED] Waits for GPU
[23:41:05] [PASSED] Tries to lock straight away
[23:41:05] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[23:41:05] [PASSED] ttm_bo_validate_happy_evict
[23:41:05] [PASSED] ttm_bo_validate_all_pinned_evict
[23:41:05] [PASSED] ttm_bo_validate_allowed_only_evict
[23:41:05] [PASSED] ttm_bo_validate_deleted_evict
[23:41:05] [PASSED] ttm_bo_validate_busy_domain_evict
[23:41:05] [PASSED] ttm_bo_validate_evict_gutting
[23:41:05] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[23:41:05] ================= [PASSED] ttm_bo_validate =================
[23:41:05] ============================================================
[23:41:05] Testing complete. Ran 101 tests: passed: 101
[23:41:05] Elapsed time: 11.436s total, 1.696s configuring, 9.523s building, 0.185s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev3)
2026-02-20 22:53 [PATCH v5 1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure Zhanjun Dong
` (4 preceding siblings ...)
2026-02-25 23:41 ` ✓ CI.KUnit: success for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev3) Patchwork
@ 2026-02-26 0:37 ` Patchwork
2026-02-26 3:13 ` ✗ Xe.CI.FULL: failure " Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-26 0:37 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 918 bytes --]
== Series Details ==
Series: series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev3)
URL : https://patchwork.freedesktop.org/series/161912/
State : success
== Summary ==
CI Bug Log - changes from xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440_BAT -> xe-pw-161912v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 13)
------------------------------
Missing (1): bat-bmg-3
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440 -> xe-pw-161912v3
IGT_8772: 8772
xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440: f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440
xe-pw-161912v3: 161912v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/index.html
[-- Attachment #2: Type: text/html, Size: 1466 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev3)
2026-02-20 22:53 [PATCH v5 1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure Zhanjun Dong
` (5 preceding siblings ...)
2026-02-26 0:37 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-26 3:13 ` Patchwork
2026-02-26 15:02 ` Dong, Zhanjun
6 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2026-02-26 3:13 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 32193 bytes --]
== Series Details ==
Series: series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev3)
URL : https://patchwork.freedesktop.org/series/161912/
State : failure
== Summary ==
CI Bug Log - changes from xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440_FULL -> xe-pw-161912v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-161912v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-161912v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-161912v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_cursor@primary:
- shard-bmg: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-6/igt@kms_plane_cursor@primary.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-2/igt@kms_plane_cursor@primary.html
* igt@xe_exec_balancer@many-virtual-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][3] +5 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_exec_balancer@many-virtual-userptr-invalidate-race.html
Known issues
------------
Here are the changes found in xe-pw-161912v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
- shard-lnl: [PASS][4] -> [FAIL][5] ([Intel XE#3718] / [Intel XE#7265]) +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-lnl-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#7059])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7059])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1407]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +5 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#610])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-3/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][12] ([Intel XE#1124])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1512]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +4 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2652]) +8 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#2669] / [Intel XE#3433]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2724])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2325])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#306])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2252]) +4 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#373]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_color_pipeline@plane-lut1d-lut1d@pipe-a-plane-2:
- shard-lnl: NOTRUN -> [FAIL][23] ([Intel XE#7305]) +9 other tests fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_color_pipeline@plane-lut1d-lut1d@pipe-a-plane-2.html
* igt@kms_content_protection@content-type-change:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3278])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#6974])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2320]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2321])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2321]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1424]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#309])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2244]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2244])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#4422])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1421]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#7178]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7178]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#6312]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2311]) +9 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#4141]) +5 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2352])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2313]) +8 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#656]) +6 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7061])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#3374] / [Intel XE#3544])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_hdr@brightness-with-hdr.html
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#3374] / [Intel XE#3544])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#7173] / [Intel XE#7294])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#7283])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7283]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2393])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1406] / [Intel XE#2893])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1406]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_psr@fbc-pr-sprite-plane-move.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-bmg: [PASS][56] -> [ABORT][57] ([Intel XE#5545] / [Intel XE#6652])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1127])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_sharpness_filter@filter-dpms:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6503]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-3/igt@kms_sharpness_filter@filter-dpms.html
* igt@xe_eudebug@basic-vm-access-faultable:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#4837]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@xe_eudebug@basic-vm-access-faultable.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#4837] / [Intel XE#6665])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html
* igt@xe_evict@evict-beng-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#6540] / [Intel XE#688])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_evict@evict-beng-cm-threads-small.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][64] -> [INCOMPLETE][65] ([Intel XE#6321])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1392]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2322]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#7136]) +7 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-3/igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#7136]) +6 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#6874]) +6 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#6874]) +8 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-3/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html
* igt@xe_exec_threads@threads-many-queues:
- shard-bmg: NOTRUN -> [FAIL][72] ([Intel XE#7166])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-3/igt@xe_exec_threads@threads-many-queues.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#7138]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#7138]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate.html
* igt@xe_multigpu_svm@mgpu-coherency-fail-basic:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#6964])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_multigpu_svm@mgpu-coherency-fail-basic.html
* igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#6964])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-3/igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch.html
* igt@xe_peer2peer@read:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1061] / [Intel XE#7326])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@xe_peer2peer@read.html
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-1/igt@xe_peer2peer@read.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#584])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2284]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#4650])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@pxp-optout:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#4733]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@xe_pxp@pxp-optout.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#4130])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-bmg: [ABORT][84] ([Intel XE#5545]) -> [PASS][85] +1 other test pass
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][86] ([Intel XE#7480]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][88] ([Intel XE#6321]) -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [FAIL][90] ([Intel XE#5625]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-lnl: [ABORT][92] ([Intel XE#4757]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-lnl-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-lnl: [INCOMPLETE][94] -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_pm@s4-vm-bind-prefetch.html
#### Warnings ####
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][96] ([Intel XE#2426]) -> [SKIP][97] ([Intel XE#2509])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[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#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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4757
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166
[Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294
[Intel XE#7305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7305
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7480
Build changes
-------------
* Linux: xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440 -> xe-pw-161912v3
IGT_8772: 8772
xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440: f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440
xe-pw-161912v3: 161912v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/index.html
[-- Attachment #2: Type: text/html, Size: 36162 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ Xe.CI.FULL: failure for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev3)
2026-02-26 3:13 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-26 15:02 ` Dong, Zhanjun
0 siblings, 0 replies; 9+ messages in thread
From: Dong, Zhanjun @ 2026-02-26 15:02 UTC (permalink / raw)
To: intel-xe
On 2026-02-25 10:13 p.m., Patchwork wrote:
> *Patch Details*
> *Series:* series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy
> cleanup on early initialization failure (rev3)
> *URL:* https://patchwork.freedesktop.org/series/161912/ <https://
> patchwork.freedesktop.org/series/161912/>
> *State:* failure
> *Details:* https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/
> index.html <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/
> index.html>
>
>
> CI Bug Log - changes from xe-4620-
> f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440_FULL -> xe-pw-161912v3_FULL
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with xe-pw-161912v3_FULL absolutely need
> to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in xe-pw-161912v3_FULL, please notify your bug team (I915-ci-
> infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
>
> Participating hosts (2 -> 2)
>
> No changes in participating hosts
>
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in xe-
> pw-161912v3_FULL:
>
>
> IGT changes
>
>
> Possible regressions
>
> *
>
> igt@kms_plane_cursor@primary:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-6/
> igt@kms_plane_cursor@primary.html> -> DMESG-FAIL <https://intel-
> gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-bmg-2/
> igt@kms_plane_cursor@primary.html> +1 other test dmesg-fail
This GuC crash is not related to this patch.
> *
>
> igt@xe_exec_balancer@many-virtual-userptr-invalidate-race:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_exec_balancer@many-
> virtual-userptr-invalidate-race.html> +5 other tests skip
>
This skip is not related to this patch.
Regards,
Zhanjun Dong
>
> Known issues
>
> Here are the changes found in xe-pw-161912v3_FULL that come from known
> issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
>
> o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-lnl-5/
> igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html>
> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/xe-
> pw-161912v3/shard-lnl-6/igt@kms_async_flips@alternate-sync-
> async-flip@pipe-a-edp-1.html> (Intel XE#3718 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3718> / Intel
> XE#7265 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/7265>) +1 other test fail
> *
>
> igt@kms_big_fb@linear-32bpp-rotate-270:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_big_fb@linear-32bpp-
> rotate-270.html> (Intel XE#2327 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2327>)
> *
>
> igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_big_fb@linear-max-
> hw-stride-32bpp-rotate-180-hflip.html> (Intel XE#7059 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/7059>)
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_big_fb@linear-max-
> hw-stride-32bpp-rotate-180-hflip.html> (Intel XE#7059 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/7059>)
> *
>
> igt@kms_big_fb@x-tiled-16bpp-rotate-270:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_big_fb@x-
> tiled-16bpp-rotate-270.html> (Intel XE#1407 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +2 other
> tests skip
> *
>
> igt@kms_big_fb@y-tiled-16bpp-rotate-0:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_big_fb@y-
> tiled-16bpp-rotate-0.html> (Intel XE#1124 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +5 other
> tests skip
> *
>
> igt@kms_big_fb@y-tiled-addfb-size-overflow:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-3/igt@kms_big_fb@y-tiled-
> addfb-size-overflow.html> (Intel XE#610 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/610>)
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-
> hw-stride-32bpp-rotate-0-async-flip.html> (Intel XE#1124
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>)
> *
>
> igt@kms_bw@linear-tiling-4-displays-2160x1440p:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_bw@linear-tiling-4-
> displays-2160x1440p.html> (Intel XE#1512 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1512>) +1 other test
> skip
> *
>
> igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_ccs@bad-pixel-
> format-y-tiled-gen12-rc-ccs-cc.html> (Intel XE#2887 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +4 other
> tests skip
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-3/igt@kms_ccs@crc-primary-
> rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html> (Intel XE#2652
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652>) +8
> other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_ccs@crc-primary-
> suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html> (Intel XE#2669
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669> /
> Intel XE#3433 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3433>) +3 other tests skip
> *
>
> igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_ccs@crc-sprite-
> planes-basic-y-tiled-gen12-rc-ccs-cc.html> (Intel XE#2887
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +3
> other tests skip
> *
>
> igt@kms_cdclk@mode-transition:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_cdclk@mode-
> transition.html> (Intel XE#2724 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2724>)
> *
>
> igt@kms_chamelium_color@ctm-0-50:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/
> igt@kms_chamelium_color@ctm-0-50.html> (Intel XE#2325 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2325>)
> *
>
> igt@kms_chamelium_color@ctm-red-to-blue:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_chamelium_color@ctm-
> red-to-blue.html> (Intel XE#306 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/306>)
> *
>
> igt@kms_chamelium_edid@dp-edid-resolution-list:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_chamelium_edid@dp-
> edid-resolution-list.html> (Intel XE#2252 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +4 other
> tests skip
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_chamelium_edid@dp-
> edid-resolution-list.html> (Intel XE#373 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +2 other tests
> skip
> *
>
> igt@kms_color_pipeline@plane-lut1d-lut1d@pipe-a-plane-2:
>
> o shard-lnl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/
> igt@kms_color_pipeline@plane-lut1d-lut1d@pipe-a-plane-2.html>
> (Intel XE#7305 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/7305>) +9 other tests fail
> *
>
> igt@kms_content_protection@content-type-change:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/
> igt@kms_content_protection@content-type-change.html> (Intel
> XE#3278 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278>)
> *
>
> igt@kms_content_protection@dp-mst-type-1-suspend-resume:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/
> igt@kms_content_protection@dp-mst-type-1-suspend-resume.html>
> (Intel XE#6974 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/6974>)
> *
>
> igt@kms_cursor_crc@cursor-offscreen-32x32:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_cursor_crc@cursor-
> offscreen-32x32.html> (Intel XE#2320 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +1 other test
> skip
> *
>
> igt@kms_cursor_crc@cursor-onscreen-512x512:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_cursor_crc@cursor-
> onscreen-512x512.html> (Intel XE#2321 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2321>)
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_cursor_crc@cursor-
> onscreen-512x512.html> (Intel XE#2321 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +1 other test
> skip
> *
>
> igt@kms_cursor_crc@cursor-rapid-movement-32x10:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_cursor_crc@cursor-
> rapid-movement-32x10.html> (Intel XE#1424 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +1 other test
> skip
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/
> igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-
> varying-size.html> (Intel XE#309 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/309>)
> *
>
> igt@kms_dsc@dsc-fractional-bpp:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-3/igt@kms_dsc@dsc-fractional-
> bpp.html> (Intel XE#2244 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2244>) +1 other test skip
> *
>
> igt@kms_dsc@dsc-with-bpc:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_dsc@dsc-with-
> bpc.html> (Intel XE#2244 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2244>)
> *
>
> igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-
> dirty-rectangle-dirtyfb-tests.html> (Intel XE#4422 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4422>)
> *
>
> igt@kms_flip@2x-flip-vs-modeset-vs-hang:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_flip@2x-flip-vs-
> modeset-vs-hang.html> (Intel XE#1421 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +1 other test
> skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-
> downscaling.html> (Intel XE#7178 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/7178>) +1 other test
> skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-
> upscaling.html> (Intel XE#7178 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/7178>) +2 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/
> igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-
> blt.html> (Intel XE#6312 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/6312>) +1 other test skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/
> igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-
> mmap-wc.html> (Intel XE#6312 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/6312> / Intel XE#651 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +2 other tests
> skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-1/
> igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-
> blt.html> (Intel XE#2311 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2311>) +9 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-1/
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-
> render.html> (Intel XE#4141 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4141>) +5 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-tiling-y:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/
> igt@kms_frontbuffer_tracking@fbc-tiling-y.html> (Intel XE#2352
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-
> blt.html> (Intel XE#2313 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2313>) +8 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-
> onoff.html> (Intel XE#656 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/656>) +6 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-7/
> igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-
> wc.html> (Intel XE#7061 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/7061>)
> *
>
> igt@kms_hdr@brightness-with-hdr:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_hdr@brightness-with-
> hdr.html> (Intel XE#3374 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/3374> / Intel XE#3544 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_hdr@brightness-with-
> hdr.html> (Intel XE#3374 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/3374> / Intel XE#3544 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3544>)
> *
>
> igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_joiner@switch-
> modeset-ultra-joiner-big-joiner.html> (Intel XE#7173 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/7173> / Intel
> XE#7294 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294>)
> *
>
> igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/igt@kms_plane@pixel-
> format-4-tiled-dg2-rc-ccs-cc-modifier.html> (Intel XE#7283
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283>)
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_plane@pixel-
> format-4-tiled-dg2-rc-ccs-cc-modifier.html> (Intel XE#7283
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283>) +1
> other test skip
> *
>
> igt@kms_plane_lowres@tiling-yf:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/igt@kms_plane_lowres@tiling-
> yf.html> (Intel XE#2393 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2393>)
> *
>
> igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-
> factor-0-75@pipe-b:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-3/
> igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-
> factor-0-75@pipe-b.html> (Intel XE#2763 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel
> XE#6886 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/6886>) +4 other tests skip
> *
>
> igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-
> cursor-plane-move-continuous-exceed-fully-sf.html> (Intel
> XE#1406 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1406> / Intel XE#2893 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2893>)
> *
>
> igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_psr2_sf@psr2-
> overlay-plane-move-continuous-exceed-fully-sf.html> (Intel
> XE#1406 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1406> / Intel XE#1489 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1489>) +2 other tests skip
> *
>
> igt@kms_psr@fbc-pr-sprite-plane-move:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@kms_psr@fbc-pr-sprite-
> plane-move.html> (Intel XE#1406 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1406>) +1 other test skip
> *
>
> igt@kms_psr@pr-sprite-plane-onoff:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-1/igt@kms_psr@pr-sprite-plane-
> onoff.html> (Intel XE#1406 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1406> / Intel XE#2234 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel
> XE#2850 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2850>) +4 other tests skip
> *
>
> igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-6/
> igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> ->
> ABORT <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/
> shard-bmg-2/igt@kms_rotation_crc@primary-4-tiled-reflect-
> x-180.html> (Intel XE#5545 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/5545> / Intel XE#6652 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/6652>)
> *
>
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel
> XE#1127 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>)
> *
>
> igt@kms_sharpness_filter@filter-dpms:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-3/
> igt@kms_sharpness_filter@filter-dpms.html> (Intel XE#6503
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503>) +1
> other test skip
> *
>
> igt@xe_eudebug@basic-vm-access-faultable:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/igt@xe_eudebug@basic-vm-
> access-faultable.html> (Intel XE#4837 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4837>) +1 other test
> skip
> *
>
> igt@xe_eudebug_online@interrupt-all-set-breakpoint:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/
> igt@xe_eudebug_online@interrupt-all-set-breakpoint.html> (Intel
> XE#4837 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4837> / Intel XE#6665 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/6665>) +1 other test skip
> *
>
> igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/
> igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-
> sram.html> (Intel XE#4837 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4837> / Intel XE#6665 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/6665>)
> *
>
> igt@xe_evict@evict-beng-cm-threads-small:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_evict@evict-beng-cm-
> threads-small.html> (Intel XE#6540 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/6540> / Intel XE#688
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>)
> *
>
> igt@xe_evict@evict-beng-mixed-many-threads-small:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-1/
> igt@xe_evict@evict-beng-mixed-many-threads-small.html> ->
> INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-xe/xe-
> pw-161912v3/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-
> threads-small.html> (Intel XE#6321 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/6321>)
> *
>
> igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_exec_basic@multigpu-
> many-execqueues-many-vm-null.html> (Intel XE#1392 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +1 other test
> skip
> *
>
> igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-7/igt@xe_exec_basic@multigpu-
> many-execqueues-many-vm-null-defer-bind.html> (Intel XE#2322
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +2
> other tests skip
> *
>
> igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-3/igt@xe_exec_fault_mode@many-
> multi-queue-userptr-rebind-prefetch.html> (Intel XE#7136
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136>) +7
> other tests skip
> *
>
> igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/
> igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html>
> (Intel XE#7136 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/7136>) +6 other tests skip
> *
>
> igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/igt@xe_exec_multi_queue@few-
> execs-preempt-mode-userptr.html> (Intel XE#6874 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/6874>) +6 other
> tests skip
> *
>
> igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-3/igt@xe_exec_multi_queue@two-
> queues-preempt-mode-fault-priority.html> (Intel XE#6874
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874>) +8
> other tests skip
> *
>
> igt@xe_exec_threads@threads-many-queues:
>
> o shard-bmg: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-3/igt@xe_exec_threads@threads-
> many-queues.html> (Intel XE#7166 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/7166>)
> *
>
> igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/igt@xe_exec_threads@threads-
> multi-queue-cm-fd-userptr-rebind.html> (Intel XE#7138 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/7138>) +3 other
> tests skip
> *
>
> igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_exec_threads@threads-
> multi-queue-fd-userptr-invalidate.html> (Intel XE#7138 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/7138>) +3 other
> tests skip
> *
>
> igt@xe_multigpu_svm@mgpu-coherency-fail-basic:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_multigpu_svm@mgpu-
> coherency-fail-basic.html> (Intel XE#6964 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/6964>)
> *
>
> igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-3/igt@xe_multigpu_svm@mgpu-
> xgpu-access-prefetch.html> (Intel XE#6964 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/6964>)
> *
>
> igt@xe_peer2peer@read:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/igt@xe_peer2peer@read.html>
> (Intel XE#1061 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1061> / Intel XE#7326 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/7326>)
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-1/igt@xe_peer2peer@read.html>
> (Intel XE#2427 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2427> / Intel XE#6953 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/6953> / Intel XE#7326 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/7326>)
> *
>
> igt@xe_pm@s3-mocs:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/igt@xe_pm@s3-mocs.html>
> (Intel XE#584 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/584>)
> *
>
> igt@xe_pm@s4-d3cold-basic-exec:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/igt@xe_pm@s4-d3cold-basic-
> exec.html> (Intel XE#2284 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2284>) +2 other tests skip
> *
>
> igt@xe_pmu@fn-engine-activity-load:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-5/igt@xe_pmu@fn-engine-
> activity-load.html> (Intel XE#4650 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4650>)
> *
>
> igt@xe_pxp@pxp-optout:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-bmg-6/igt@xe_pxp@pxp-optout.html>
> (Intel XE#4733 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4733>) +1 other test skip
> *
>
> igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-8/
> igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-
> numvfs.html> (Intel XE#4130 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4130>)
>
>
> Possible fixes
>
> *
>
> igt@kms_atomic_transition@plane-all-modeset-transition:
>
> o shard-bmg: ABORT <https://intel-gfx-ci.01.org/tree/intel-xe/
> xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-2/
> igt@kms_atomic_transition@plane-all-modeset-transition.html>
> (Intel XE#5545 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/5545>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/xe-pw-161912v3/shard-bmg-6/igt@kms_atomic_transition@plane-
> all-modeset-transition.html> +1 other test pass
> *
>
> igt@kms_cursor_legacy@flip-vs-cursor-atomic:
>
> o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-1/
> igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> (Intel XE#7480
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/7480>) ->
> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/
> shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html>
> *
>
> igt@xe_evict@evict-mixed-many-threads-small:
>
> o shard-bmg: INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-
> xe/xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-3/
> igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#6321
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321>) ->
> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/
> shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html>
> *
>
> igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
>
> o shard-lnl: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-lnl-8/
> igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-
> vma.html> (Intel XE#5625 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/5625>) -> PASS <https://intel-gfx-ci.01.org/tree/
> intel-xe/xe-pw-161912v3/shard-lnl-7/
> igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-
> vma.html>
> *
>
> igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
>
> o shard-lnl: ABORT <https://intel-gfx-ci.01.org/tree/intel-xe/
> xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-lnl-8/
> igt@xe_fault_injection@probe-fail-guc-
> xe_guc_mmio_send_recv.html> (Intel XE#4757 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4757>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-
> lnl-5/igt@xe_fault_injection@probe-fail-guc-
> xe_guc_mmio_send_recv.html>
> *
>
> igt@xe_pm@s4-vm-bind-prefetch:
>
> o shard-lnl: INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-
> xe/xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-lnl-2/
> igt@xe_pm@s4-vm-bind-prefetch.html> -> PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/xe-pw-161912v3/shard-lnl-8/igt@xe_pm@s4-
> vm-bind-prefetch.html>
>
>
> Warnings
>
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440/shard-bmg-7/
> igt@kms_tiled_display@basic-test-pattern-with-chamelium.html>
> (Intel XE#2426 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2426>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/xe-pw-161912v3/shard-bmg-2/igt@kms_tiled_display@basic-test-
> pattern-with-chamelium.html> (Intel XE#2509 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2509>)
>
>
> Build changes
>
> * Linux: xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440 -> xe-
> pw-161912v3
>
> IGT_8772: 8772
> xe-4620-f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440:
> f0ec6252eb6d9a4f0cb5a437f5c21fec16d0a440
> xe-pw-161912v3: 161912v3
>
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-02-26 15:02 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-20 22:53 [PATCH v5 1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure Zhanjun Dong
2026-02-20 23:00 ` ✓ CI.KUnit: success for series starting with [v5,1/1] " Patchwork
2026-02-20 23:34 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-23 11:58 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-24 15:24 ` ✓ CI.KUnit: success for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev2) Patchwork
2026-02-25 23:41 ` ✓ CI.KUnit: success for series starting with [v5,1/1] drm/xe/gsc: Fix GSC proxy cleanup on early initialization failure (rev3) Patchwork
2026-02-26 0:37 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-26 3:13 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-26 15:02 ` Dong, Zhanjun
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox