* [PATCH v2 1/4] drm/xe/guc: WRITE_ONCE g2h_fence done in g2h_fence_cancel
2025-12-18 21:29 [PATCH v2 0/4] drm/xe/guc: Prevent compiler read/write optimization breaks Jonathan Cavitt
@ 2025-12-18 21:29 ` Jonathan Cavitt
2025-12-18 21:29 ` [PATCH v2 2/4] drm/xe/guc: WRITE_ONCE g2h_fence done in parse_g2h_response Jonathan Cavitt
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Jonathan Cavitt @ 2025-12-18 21:29 UTC (permalink / raw)
To: intel-xe
Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, matthew.brost,
daniele.ceraolospurio, rodrigo.vivi, michal.wajdeczko,
stuart.summers, dixit.ashutosh
Use WRITE_ONCE when operating on g2h_fence->done in g2h_fence_cancel to
prevent the compiler from ignoring this operation.
Fixes: 94de94d24ea8 ("drm/xe/guc: Cancel ongoing H2G requests when stopping CT")
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
drivers/gpu/drm/xe/xe_guc_ct.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index c3df9b3f1b4d..d177df166d2a 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -206,7 +206,9 @@ static void g2h_fence_cancel(struct g2h_fence *g2h_fence)
{
g2h_fence->cancel = true;
g2h_fence->fail = true;
- g2h_fence->done = true;
+
+ /* WRITE_ONCE pairs with wait_event_timeout in guc_ct_send_recv */
+ WRITE_ONCE(g2h_fence->done, true);
}
static bool g2h_fence_needs_alloc(struct g2h_fence *g2h_fence)
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCH v2 2/4] drm/xe/guc: WRITE_ONCE g2h_fence done in parse_g2h_response
2025-12-18 21:29 [PATCH v2 0/4] drm/xe/guc: Prevent compiler read/write optimization breaks Jonathan Cavitt
2025-12-18 21:29 ` [PATCH v2 1/4] drm/xe/guc: WRITE_ONCE g2h_fence done in g2h_fence_cancel Jonathan Cavitt
@ 2025-12-18 21:29 ` Jonathan Cavitt
2025-12-18 21:29 ` [PATCH v2 3/4] drm/xe/guc: READ/WRITE_ONCE ct state in ct_change_state and enabled Jonathan Cavitt
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Jonathan Cavitt @ 2025-12-18 21:29 UTC (permalink / raw)
To: intel-xe
Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, matthew.brost,
daniele.ceraolospurio, rodrigo.vivi, michal.wajdeczko,
stuart.summers, dixit.ashutosh
Use WRITE_ONCE when operating on g2h_fence->done in parse_g2h_response
to prevent the compiler from ignoring this operation.
Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/xe/xe_guc_ct.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index d177df166d2a..38b58590c94b 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -1500,7 +1500,8 @@ static int parse_g2h_response(struct xe_guc_ct *ct, u32 *msg, u32 len)
g2h_release_space(ct, GUC_CTB_HXG_MSG_MAX_LEN);
- g2h_fence->done = true;
+ /* WRITE_ONCE pairs with wait_event_timeout in guc_ct_send_recv */
+ WRITE_ONCE(g2h_fence->done, true);
smp_mb();
wake_up_all(&ct->g2h_fence_wq);
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCH v2 3/4] drm/xe/guc: READ/WRITE_ONCE ct state in ct_change_state and enabled
2025-12-18 21:29 [PATCH v2 0/4] drm/xe/guc: Prevent compiler read/write optimization breaks Jonathan Cavitt
2025-12-18 21:29 ` [PATCH v2 1/4] drm/xe/guc: WRITE_ONCE g2h_fence done in g2h_fence_cancel Jonathan Cavitt
2025-12-18 21:29 ` [PATCH v2 2/4] drm/xe/guc: WRITE_ONCE g2h_fence done in parse_g2h_response Jonathan Cavitt
@ 2025-12-18 21:29 ` Jonathan Cavitt
2025-12-18 21:29 ` [PATCH v2 4/4] drm/xe/guc: READ_ONCE ct state in xe_guc_ct_initialized Jonathan Cavitt
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Jonathan Cavitt @ 2025-12-18 21:29 UTC (permalink / raw)
To: intel-xe
Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, matthew.brost,
daniele.ceraolospurio, rodrigo.vivi, michal.wajdeczko,
stuart.summers, dixit.ashutosh
Use WRITE_ONCE when operating on ct->state in guc_ct_change_state to
prevent the compiler from ignoring this operation. Use READ_ONCE when
reading ct->state in xe_guc_ct_enabled for the same reason.
Fixes: dc75d03716fe ("drm/xe/guc: Add more GuC CT states")
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
drivers/gpu/drm/xe/xe_guc_ct.c | 4 +++-
drivers/gpu/drm/xe/xe_guc_ct.h | 3 ++-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index 38b58590c94b..c59e38189cf0 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -529,7 +529,9 @@ static void guc_ct_change_state(struct xe_guc_ct *ct,
if (ct->g2h_outstanding)
xe_pm_runtime_put(ct_to_xe(ct));
ct->g2h_outstanding = 0;
- ct->state = state;
+
+ /* WRITE_ONCE pairs with READ_ONCE in xe_guc_ct_enabled. */
+ WRITE_ONCE(ct->state, state);
xe_gt_dbg(gt, "GuC CT communication channel %s\n",
state == XE_GUC_CT_STATE_STOPPED ? "stopped" :
diff --git a/drivers/gpu/drm/xe/xe_guc_ct.h b/drivers/gpu/drm/xe/xe_guc_ct.h
index 5599939f8fe1..5f2811a06833 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.h
+++ b/drivers/gpu/drm/xe/xe_guc_ct.h
@@ -35,7 +35,8 @@ static inline bool xe_guc_ct_initialized(struct xe_guc_ct *ct)
static inline bool xe_guc_ct_enabled(struct xe_guc_ct *ct)
{
- return ct->state == XE_GUC_CT_STATE_ENABLED;
+ /* READ_ONCE pairs with WRITE_ONCE in guc_ct_change_state. */
+ return READ_ONCE(ct->state) == XE_GUC_CT_STATE_ENABLED;
}
static inline void xe_guc_ct_irq_handler(struct xe_guc_ct *ct)
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCH v2 4/4] drm/xe/guc: READ_ONCE ct state in xe_guc_ct_initialized
2025-12-18 21:29 [PATCH v2 0/4] drm/xe/guc: Prevent compiler read/write optimization breaks Jonathan Cavitt
` (2 preceding siblings ...)
2025-12-18 21:29 ` [PATCH v2 3/4] drm/xe/guc: READ/WRITE_ONCE ct state in ct_change_state and enabled Jonathan Cavitt
@ 2025-12-18 21:29 ` Jonathan Cavitt
2025-12-18 21:31 ` [PATCH v2 0/4] drm/xe/guc: Prevent compiler read/write optimization breaks Cavitt, Jonathan
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Jonathan Cavitt @ 2025-12-18 21:29 UTC (permalink / raw)
To: intel-xe
Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, matthew.brost,
daniele.ceraolospurio, rodrigo.vivi, michal.wajdeczko,
stuart.summers, dixit.ashutosh
Use READ_ONCE when reading ct->state in xe_guc_ct_initialized to prevent
the compiler from ignoring this operation.
Fixes: 0b93b7dcd9eb ("drm/xe: Fix early wedge on GuC load failure")
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
---
drivers/gpu/drm/xe/xe_guc_ct.c | 5 ++++-
drivers/gpu/drm/xe/xe_guc_ct.h | 3 ++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index c59e38189cf0..24857c2c8cb5 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -530,7 +530,10 @@ static void guc_ct_change_state(struct xe_guc_ct *ct,
xe_pm_runtime_put(ct_to_xe(ct));
ct->g2h_outstanding = 0;
- /* WRITE_ONCE pairs with READ_ONCE in xe_guc_ct_enabled. */
+ /*
+ * WRITE_ONCE pairs with READ_ONCEs in xe_guc_ct_initialized and
+ * xe_guc_ct_enabled.
+ */
WRITE_ONCE(ct->state, state);
xe_gt_dbg(gt, "GuC CT communication channel %s\n",
diff --git a/drivers/gpu/drm/xe/xe_guc_ct.h b/drivers/gpu/drm/xe/xe_guc_ct.h
index 5f2811a06833..767365a33dee 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.h
+++ b/drivers/gpu/drm/xe/xe_guc_ct.h
@@ -30,7 +30,8 @@ void xe_guc_ct_print(struct xe_guc_ct *ct, struct drm_printer *p, bool want_ctb)
static inline bool xe_guc_ct_initialized(struct xe_guc_ct *ct)
{
- return ct->state != XE_GUC_CT_STATE_NOT_INITIALIZED;
+ /* READ_ONCE pairs with WRITE_ONCE in guc_ct_change_state. */
+ return READ_ONCE(ct->state) != XE_GUC_CT_STATE_NOT_INITIALIZED;
}
static inline bool xe_guc_ct_enabled(struct xe_guc_ct *ct)
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* RE: [PATCH v2 0/4] drm/xe/guc: Prevent compiler read/write optimization breaks
2025-12-18 21:29 [PATCH v2 0/4] drm/xe/guc: Prevent compiler read/write optimization breaks Jonathan Cavitt
` (3 preceding siblings ...)
2025-12-18 21:29 ` [PATCH v2 4/4] drm/xe/guc: READ_ONCE ct state in xe_guc_ct_initialized Jonathan Cavitt
@ 2025-12-18 21:31 ` Cavitt, Jonathan
2025-12-18 22:17 ` ✓ CI.KUnit: success for " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Cavitt, Jonathan @ 2025-12-18 21:31 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org
Cc: Gupta, Saurabhg, Zuo, Alex, Brost, Matthew,
Ceraolo Spurio, Daniele, Vivi, Rodrigo, Wajdeczko, Michal,
Summers, Stuart, Dixit, Ashutosh
-----Original Message-----
From: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Sent: Thursday, December 18, 2025 1:30 PM
To: intel-xe@lists.freedesktop.org
Cc: Gupta, Saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; Cavitt, Jonathan <jonathan.cavitt@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Ceraolo Spurio, Daniele <daniele.ceraolospurio@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com>; Wajdeczko, Michal <Michal.Wajdeczko@intel.com>; Summers, Stuart <stuart.summers@intel.com>; dixit.ashutosh@intel.com
Subject: [PATCH v2 0/4] drm/xe/guc: Prevent compiler read/write optimization breaks
>
> Use READ_ONCE and WRITE_ONCE when operating on ct->state and the
> g2h_fence->done values to prevent the compiler from ignoring these
> necessary operations.
>
> v2: (Matt Brost)
> - Add Fixes tags
> - Add comments
>
> v3:
> - Split into multiple patches (Rodrigo Vivi)
>
> v4:
> - s/xe_guc_ct/guc (Michal W)
> - Add comments with READ_ONCE and WRITE_ONCE updates
> (Rodrigo, Stuart, Dixit)
> - Squash patches with same Fixes target
> (Rodrigo, Stuart, Dixit)
> - Add partial comment justifying WRITE_ONCE in guc_ct_change_state
> before READ_ONCE in xe_guc_ct_enabled is added (Rodrigo Vivi)
> - Update above comment when adding READ_ONCE to xe_guc_ct_enabled
> (jcavitt)
>
> Suggested-by: Matthew Brost <matthew.brost@intel.com>
> Suggested-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Stuart Summers <stuart.summers@intel.com>
> Cc: Dixit Ashutosh <dixit.ashutosh@intel.com>
I apologize to Ashutosh Dixit for getting your name backwards. I foresee this needing
another revision anyways, so I'll fix it for V5.
-Jonathan Cavitt
>
> Jonathan Cavitt (4):
> drm/xe/guc: WRITE_ONCE g2h_fence done in g2h_fence_cancel
> drm/xe/guc: WRITE_ONCE g2h_fence done in parse_g2h_response
> drm/xe/guc: READ/WRITE_ONCE ct state in ct_change_state and enabled
> drm/xe/guc: READ_ONCE ct state in xe_guc_ct_initialized
>
> drivers/gpu/drm/xe/xe_guc_ct.c | 14 +++++++++++---
> drivers/gpu/drm/xe/xe_guc_ct.h | 6 ++++--
> 2 files changed, 15 insertions(+), 5 deletions(-)
>
> --
> 2.43.0
>
>
^ permalink raw reply [flat|nested] 9+ messages in thread* ✓ CI.KUnit: success for drm/xe/guc: Prevent compiler read/write optimization breaks
2025-12-18 21:29 [PATCH v2 0/4] drm/xe/guc: Prevent compiler read/write optimization breaks Jonathan Cavitt
` (4 preceding siblings ...)
2025-12-18 21:31 ` [PATCH v2 0/4] drm/xe/guc: Prevent compiler read/write optimization breaks Cavitt, Jonathan
@ 2025-12-18 22:17 ` Patchwork
2025-12-18 23:02 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-20 0:24 ` ✗ Xe.CI.Full: failure " Patchwork
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-12-18 22:17 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-xe
== Series Details ==
Series: drm/xe/guc: Prevent compiler read/write optimization breaks
URL : https://patchwork.freedesktop.org/series/159246/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[22:15:25] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:15: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
[22:16:31] Starting KUnit Kernel (1/1)...
[22:16:31] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:16:31] ================== guc_buf (11 subtests) ===================
[22:16:31] [PASSED] test_smallest
[22:16:31] [PASSED] test_largest
[22:16:31] [PASSED] test_granular
[22:16:31] [PASSED] test_unique
[22:16:31] [PASSED] test_overlap
[22:16:31] [PASSED] test_reusable
[22:16:31] [PASSED] test_too_big
[22:16:31] [PASSED] test_flush
[22:16:31] [PASSED] test_lookup
[22:16:31] [PASSED] test_data
[22:16:31] [PASSED] test_class
[22:16:31] ===================== [PASSED] guc_buf =====================
[22:16:31] =================== guc_dbm (7 subtests) ===================
[22:16:31] [PASSED] test_empty
[22:16:31] [PASSED] test_default
[22:16:31] ======================== test_size ========================
[22:16:31] [PASSED] 4
[22:16:31] [PASSED] 8
[22:16:31] [PASSED] 32
[22:16:31] [PASSED] 256
[22:16:31] ==================== [PASSED] test_size ====================
[22:16:31] ======================= test_reuse ========================
[22:16:31] [PASSED] 4
[22:16:31] [PASSED] 8
[22:16:31] [PASSED] 32
[22:16:31] [PASSED] 256
[22:16:31] =================== [PASSED] test_reuse ====================
[22:16:31] =================== test_range_overlap ====================
[22:16:31] [PASSED] 4
[22:16:31] [PASSED] 8
[22:16:31] [PASSED] 32
[22:16:31] [PASSED] 256
[22:16:31] =============== [PASSED] test_range_overlap ================
[22:16:31] =================== test_range_compact ====================
[22:16:31] [PASSED] 4
[22:16:31] [PASSED] 8
[22:16:31] [PASSED] 32
[22:16:31] [PASSED] 256
[22:16:31] =============== [PASSED] test_range_compact ================
[22:16:31] ==================== test_range_spare =====================
[22:16:31] [PASSED] 4
[22:16:31] [PASSED] 8
[22:16:31] [PASSED] 32
[22:16:31] [PASSED] 256
[22:16:31] ================ [PASSED] test_range_spare =================
[22:16:31] ===================== [PASSED] guc_dbm =====================
[22:16:31] =================== guc_idm (6 subtests) ===================
[22:16:31] [PASSED] bad_init
[22:16:31] [PASSED] no_init
[22:16:31] [PASSED] init_fini
[22:16:31] [PASSED] check_used
[22:16:31] [PASSED] check_quota
[22:16:31] [PASSED] check_all
[22:16:31] ===================== [PASSED] guc_idm =====================
[22:16:31] ================== no_relay (3 subtests) ===================
[22:16:31] [PASSED] xe_drops_guc2pf_if_not_ready
[22:16:31] [PASSED] xe_drops_guc2vf_if_not_ready
[22:16:31] [PASSED] xe_rejects_send_if_not_ready
[22:16:31] ==================== [PASSED] no_relay =====================
[22:16:31] ================== pf_relay (14 subtests) ==================
[22:16:31] [PASSED] pf_rejects_guc2pf_too_short
[22:16:31] [PASSED] pf_rejects_guc2pf_too_long
[22:16:31] [PASSED] pf_rejects_guc2pf_no_payload
[22:16:31] [PASSED] pf_fails_no_payload
[22:16:31] [PASSED] pf_fails_bad_origin
[22:16:31] [PASSED] pf_fails_bad_type
[22:16:31] [PASSED] pf_txn_reports_error
[22:16:31] [PASSED] pf_txn_sends_pf2guc
[22:16:31] [PASSED] pf_sends_pf2guc
[22:16:31] [SKIPPED] pf_loopback_nop
[22:16:31] [SKIPPED] pf_loopback_echo
[22:16:31] [SKIPPED] pf_loopback_fail
[22:16:31] [SKIPPED] pf_loopback_busy
[22:16:31] [SKIPPED] pf_loopback_retry
[22:16:31] ==================== [PASSED] pf_relay =====================
[22:16:31] ================== vf_relay (3 subtests) ===================
[22:16:31] [PASSED] vf_rejects_guc2vf_too_short
[22:16:31] [PASSED] vf_rejects_guc2vf_too_long
[22:16:31] [PASSED] vf_rejects_guc2vf_no_payload
[22:16:31] ==================== [PASSED] vf_relay =====================
[22:16:31] ================ pf_gt_config (6 subtests) =================
[22:16:31] [PASSED] fair_contexts_1vf
[22:16:31] [PASSED] fair_doorbells_1vf
[22:16:31] [PASSED] fair_ggtt_1vf
[22:16:31] ====================== fair_contexts ======================
[22:16:31] [PASSED] 1 VF
[22:16:31] [PASSED] 2 VFs
[22:16:31] [PASSED] 3 VFs
[22:16:31] [PASSED] 4 VFs
[22:16:31] [PASSED] 5 VFs
[22:16:31] [PASSED] 6 VFs
[22:16:31] [PASSED] 7 VFs
[22:16:31] [PASSED] 8 VFs
[22:16:31] [PASSED] 9 VFs
[22:16:31] [PASSED] 10 VFs
[22:16:31] [PASSED] 11 VFs
[22:16:31] [PASSED] 12 VFs
[22:16:31] [PASSED] 13 VFs
[22:16:31] [PASSED] 14 VFs
[22:16:31] [PASSED] 15 VFs
[22:16:31] [PASSED] 16 VFs
[22:16:31] [PASSED] 17 VFs
[22:16:31] [PASSED] 18 VFs
[22:16:31] [PASSED] 19 VFs
[22:16:31] [PASSED] 20 VFs
[22:16:31] [PASSED] 21 VFs
[22:16:31] [PASSED] 22 VFs
[22:16:31] [PASSED] 23 VFs
[22:16:31] [PASSED] 24 VFs
[22:16:31] [PASSED] 25 VFs
[22:16:31] [PASSED] 26 VFs
[22:16:31] [PASSED] 27 VFs
[22:16:31] [PASSED] 28 VFs
[22:16:31] [PASSED] 29 VFs
[22:16:31] [PASSED] 30 VFs
[22:16:31] [PASSED] 31 VFs
[22:16:31] [PASSED] 32 VFs
[22:16:31] [PASSED] 33 VFs
[22:16:31] [PASSED] 34 VFs
[22:16:31] [PASSED] 35 VFs
[22:16:31] [PASSED] 36 VFs
[22:16:31] [PASSED] 37 VFs
[22:16:31] [PASSED] 38 VFs
[22:16:31] [PASSED] 39 VFs
[22:16:31] [PASSED] 40 VFs
[22:16:31] [PASSED] 41 VFs
[22:16:31] [PASSED] 42 VFs
[22:16:31] [PASSED] 43 VFs
[22:16:31] [PASSED] 44 VFs
[22:16:31] [PASSED] 45 VFs
[22:16:31] [PASSED] 46 VFs
[22:16:31] [PASSED] 47 VFs
[22:16:31] [PASSED] 48 VFs
[22:16:31] [PASSED] 49 VFs
[22:16:31] [PASSED] 50 VFs
[22:16:31] [PASSED] 51 VFs
[22:16:31] [PASSED] 52 VFs
[22:16:31] [PASSED] 53 VFs
[22:16:31] [PASSED] 54 VFs
[22:16:31] [PASSED] 55 VFs
[22:16:31] [PASSED] 56 VFs
[22:16:31] [PASSED] 57 VFs
[22:16:31] [PASSED] 58 VFs
[22:16:31] [PASSED] 59 VFs
[22:16:31] [PASSED] 60 VFs
[22:16:31] [PASSED] 61 VFs
[22:16:31] [PASSED] 62 VFs
[22:16:31] [PASSED] 63 VFs
[22:16:31] ================== [PASSED] fair_contexts ==================
[22:16:31] ===================== fair_doorbells ======================
[22:16:31] [PASSED] 1 VF
[22:16:31] [PASSED] 2 VFs
[22:16:31] [PASSED] 3 VFs
[22:16:31] [PASSED] 4 VFs
[22:16:31] [PASSED] 5 VFs
[22:16:31] [PASSED] 6 VFs
[22:16:31] [PASSED] 7 VFs
[22:16:31] [PASSED] 8 VFs
[22:16:31] [PASSED] 9 VFs
[22:16:31] [PASSED] 10 VFs
[22:16:31] [PASSED] 11 VFs
[22:16:31] [PASSED] 12 VFs
[22:16:31] [PASSED] 13 VFs
[22:16:31] [PASSED] 14 VFs
[22:16:31] [PASSED] 15 VFs
[22:16:31] [PASSED] 16 VFs
[22:16:31] [PASSED] 17 VFs
[22:16:31] [PASSED] 18 VFs
[22:16:31] [PASSED] 19 VFs
[22:16:31] [PASSED] 20 VFs
[22:16:31] [PASSED] 21 VFs
[22:16:31] [PASSED] 22 VFs
[22:16:31] [PASSED] 23 VFs
[22:16:31] [PASSED] 24 VFs
[22:16:31] [PASSED] 25 VFs
[22:16:31] [PASSED] 26 VFs
[22:16:31] [PASSED] 27 VFs
[22:16:31] [PASSED] 28 VFs
[22:16:31] [PASSED] 29 VFs
[22:16:31] [PASSED] 30 VFs
[22:16:31] [PASSED] 31 VFs
[22:16:31] [PASSED] 32 VFs
[22:16:31] [PASSED] 33 VFs
[22:16:31] [PASSED] 34 VFs
[22:16:31] [PASSED] 35 VFs
[22:16:31] [PASSED] 36 VFs
[22:16:31] [PASSED] 37 VFs
[22:16:31] [PASSED] 38 VFs
[22:16:31] [PASSED] 39 VFs
[22:16:31] [PASSED] 40 VFs
[22:16:31] [PASSED] 41 VFs
[22:16:31] [PASSED] 42 VFs
[22:16:31] [PASSED] 43 VFs
[22:16:31] [PASSED] 44 VFs
[22:16:31] [PASSED] 45 VFs
[22:16:31] [PASSED] 46 VFs
[22:16:31] [PASSED] 47 VFs
[22:16:31] [PASSED] 48 VFs
[22:16:31] [PASSED] 49 VFs
[22:16:31] [PASSED] 50 VFs
[22:16:31] [PASSED] 51 VFs
[22:16:31] [PASSED] 52 VFs
[22:16:31] [PASSED] 53 VFs
[22:16:31] [PASSED] 54 VFs
[22:16:31] [PASSED] 55 VFs
[22:16:31] [PASSED] 56 VFs
[22:16:31] [PASSED] 57 VFs
[22:16:31] [PASSED] 58 VFs
[22:16:31] [PASSED] 59 VFs
[22:16:31] [PASSED] 60 VFs
[22:16:31] [PASSED] 61 VFs
[22:16:31] [PASSED] 62 VFs
[22:16:31] [PASSED] 63 VFs
[22:16:31] ================= [PASSED] fair_doorbells ==================
[22:16:31] ======================== fair_ggtt ========================
[22:16:31] [PASSED] 1 VF
[22:16:31] [PASSED] 2 VFs
[22:16:31] [PASSED] 3 VFs
[22:16:31] [PASSED] 4 VFs
[22:16:31] [PASSED] 5 VFs
[22:16:31] [PASSED] 6 VFs
[22:16:31] [PASSED] 7 VFs
[22:16:31] [PASSED] 8 VFs
[22:16:31] [PASSED] 9 VFs
[22:16:31] [PASSED] 10 VFs
[22:16:31] [PASSED] 11 VFs
[22:16:31] [PASSED] 12 VFs
[22:16:31] [PASSED] 13 VFs
[22:16:31] [PASSED] 14 VFs
[22:16:31] [PASSED] 15 VFs
[22:16:31] [PASSED] 16 VFs
[22:16:31] [PASSED] 17 VFs
[22:16:31] [PASSED] 18 VFs
[22:16:31] [PASSED] 19 VFs
[22:16:31] [PASSED] 20 VFs
[22:16:31] [PASSED] 21 VFs
[22:16:31] [PASSED] 22 VFs
[22:16:31] [PASSED] 23 VFs
[22:16:31] [PASSED] 24 VFs
[22:16:31] [PASSED] 25 VFs
[22:16:31] [PASSED] 26 VFs
[22:16:31] [PASSED] 27 VFs
[22:16:31] [PASSED] 28 VFs
[22:16:31] [PASSED] 29 VFs
[22:16:31] [PASSED] 30 VFs
[22:16:32] [PASSED] 31 VFs
[22:16:32] [PASSED] 32 VFs
[22:16:32] [PASSED] 33 VFs
[22:16:32] [PASSED] 34 VFs
[22:16:32] [PASSED] 35 VFs
[22:16:32] [PASSED] 36 VFs
[22:16:32] [PASSED] 37 VFs
[22:16:32] [PASSED] 38 VFs
[22:16:32] [PASSED] 39 VFs
[22:16:32] [PASSED] 40 VFs
[22:16:32] [PASSED] 41 VFs
[22:16:32] [PASSED] 42 VFs
[22:16:32] [PASSED] 43 VFs
[22:16:32] [PASSED] 44 VFs
[22:16:32] [PASSED] 45 VFs
[22:16:32] [PASSED] 46 VFs
[22:16:32] [PASSED] 47 VFs
[22:16:32] [PASSED] 48 VFs
[22:16:32] [PASSED] 49 VFs
[22:16:32] [PASSED] 50 VFs
[22:16:32] [PASSED] 51 VFs
[22:16:32] [PASSED] 52 VFs
[22:16:32] [PASSED] 53 VFs
[22:16:32] [PASSED] 54 VFs
[22:16:32] [PASSED] 55 VFs
[22:16:32] [PASSED] 56 VFs
[22:16:32] [PASSED] 57 VFs
[22:16:32] [PASSED] 58 VFs
[22:16:32] [PASSED] 59 VFs
[22:16:32] [PASSED] 60 VFs
[22:16:32] [PASSED] 61 VFs
[22:16:32] [PASSED] 62 VFs
[22:16:32] [PASSED] 63 VFs
[22:16:32] ==================== [PASSED] fair_ggtt ====================
[22:16:32] ================== [PASSED] pf_gt_config ===================
[22:16:32] ===================== lmtt (1 subtest) =====================
[22:16:32] ======================== test_ops =========================
[22:16:32] [PASSED] 2-level
[22:16:32] [PASSED] multi-level
[22:16:32] ==================== [PASSED] test_ops =====================
[22:16:32] ====================== [PASSED] lmtt =======================
[22:16:32] ================= pf_service (11 subtests) =================
[22:16:32] [PASSED] pf_negotiate_any
[22:16:32] [PASSED] pf_negotiate_base_match
[22:16:32] [PASSED] pf_negotiate_base_newer
[22:16:32] [PASSED] pf_negotiate_base_next
[22:16:32] [SKIPPED] pf_negotiate_base_older
[22:16:32] [PASSED] pf_negotiate_base_prev
[22:16:32] [PASSED] pf_negotiate_latest_match
[22:16:32] [PASSED] pf_negotiate_latest_newer
[22:16:32] [PASSED] pf_negotiate_latest_next
[22:16:32] [SKIPPED] pf_negotiate_latest_older
[22:16:32] [SKIPPED] pf_negotiate_latest_prev
[22:16:32] =================== [PASSED] pf_service ====================
[22:16:32] ================= xe_guc_g2g (2 subtests) ==================
[22:16:32] ============== xe_live_guc_g2g_kunit_default ==============
[22:16:32] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[22:16:32] ============== xe_live_guc_g2g_kunit_allmem ===============
[22:16:32] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[22:16:32] =================== [SKIPPED] xe_guc_g2g ===================
[22:16:32] =================== xe_mocs (2 subtests) ===================
[22:16:32] ================ xe_live_mocs_kernel_kunit ================
[22:16:32] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[22:16:32] ================ xe_live_mocs_reset_kunit =================
[22:16:32] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[22:16:32] ==================== [SKIPPED] xe_mocs =====================
[22:16:32] ================= xe_migrate (2 subtests) ==================
[22:16:32] ================= xe_migrate_sanity_kunit =================
[22:16:32] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[22:16:32] ================== xe_validate_ccs_kunit ==================
[22:16:32] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[22:16:32] =================== [SKIPPED] xe_migrate ===================
[22:16:32] ================== xe_dma_buf (1 subtest) ==================
[22:16:32] ==================== xe_dma_buf_kunit =====================
[22:16:32] ================ [SKIPPED] xe_dma_buf_kunit ================
[22:16:32] =================== [SKIPPED] xe_dma_buf ===================
[22:16:32] ================= xe_bo_shrink (1 subtest) =================
[22:16:32] =================== xe_bo_shrink_kunit ====================
[22:16:32] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[22:16:32] ================== [SKIPPED] xe_bo_shrink ==================
[22:16:32] ==================== xe_bo (2 subtests) ====================
[22:16:32] ================== xe_ccs_migrate_kunit ===================
[22:16:32] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[22:16:32] ==================== xe_bo_evict_kunit ====================
[22:16:32] =============== [SKIPPED] xe_bo_evict_kunit ================
[22:16:32] ===================== [SKIPPED] xe_bo ======================
[22:16:32] ==================== args (13 subtests) ====================
[22:16:32] [PASSED] count_args_test
[22:16:32] [PASSED] call_args_example
[22:16:32] [PASSED] call_args_test
[22:16:32] [PASSED] drop_first_arg_example
[22:16:32] [PASSED] drop_first_arg_test
[22:16:32] [PASSED] first_arg_example
[22:16:32] [PASSED] first_arg_test
[22:16:32] [PASSED] last_arg_example
[22:16:32] [PASSED] last_arg_test
[22:16:32] [PASSED] pick_arg_example
[22:16:32] [PASSED] if_args_example
[22:16:32] [PASSED] if_args_test
[22:16:32] [PASSED] sep_comma_example
[22:16:32] ====================== [PASSED] args =======================
[22:16:32] =================== xe_pci (3 subtests) ====================
[22:16:32] ==================== check_graphics_ip ====================
[22:16:32] [PASSED] 12.00 Xe_LP
[22:16:32] [PASSED] 12.10 Xe_LP+
[22:16:32] [PASSED] 12.55 Xe_HPG
[22:16:32] [PASSED] 12.60 Xe_HPC
[22:16:32] [PASSED] 12.70 Xe_LPG
[22:16:32] [PASSED] 12.71 Xe_LPG
[22:16:32] [PASSED] 12.74 Xe_LPG+
[22:16:32] [PASSED] 20.01 Xe2_HPG
[22:16:32] [PASSED] 20.02 Xe2_HPG
[22:16:32] [PASSED] 20.04 Xe2_LPG
[22:16:32] [PASSED] 30.00 Xe3_LPG
[22:16:32] [PASSED] 30.01 Xe3_LPG
[22:16:32] [PASSED] 30.03 Xe3_LPG
[22:16:32] [PASSED] 30.04 Xe3_LPG
[22:16:32] [PASSED] 30.05 Xe3_LPG
[22:16:32] [PASSED] 35.11 Xe3p_XPC
[22:16:32] ================ [PASSED] check_graphics_ip ================
[22:16:32] ===================== check_media_ip ======================
[22:16:32] [PASSED] 12.00 Xe_M
[22:16:32] [PASSED] 12.55 Xe_HPM
[22:16:32] [PASSED] 13.00 Xe_LPM+
[22:16:32] [PASSED] 13.01 Xe2_HPM
[22:16:32] [PASSED] 20.00 Xe2_LPM
[22:16:32] [PASSED] 30.00 Xe3_LPM
[22:16:32] [PASSED] 30.02 Xe3_LPM
[22:16:32] [PASSED] 35.00 Xe3p_LPM
[22:16:32] [PASSED] 35.03 Xe3p_HPM
[22:16:32] ================= [PASSED] check_media_ip ==================
[22:16:32] =================== check_platform_desc ===================
[22:16:32] [PASSED] 0x9A60 (TIGERLAKE)
[22:16:32] [PASSED] 0x9A68 (TIGERLAKE)
[22:16:32] [PASSED] 0x9A70 (TIGERLAKE)
[22:16:32] [PASSED] 0x9A40 (TIGERLAKE)
[22:16:32] [PASSED] 0x9A49 (TIGERLAKE)
[22:16:32] [PASSED] 0x9A59 (TIGERLAKE)
[22:16:32] [PASSED] 0x9A78 (TIGERLAKE)
[22:16:32] [PASSED] 0x9AC0 (TIGERLAKE)
[22:16:32] [PASSED] 0x9AC9 (TIGERLAKE)
[22:16:32] [PASSED] 0x9AD9 (TIGERLAKE)
[22:16:32] [PASSED] 0x9AF8 (TIGERLAKE)
[22:16:32] [PASSED] 0x4C80 (ROCKETLAKE)
[22:16:32] [PASSED] 0x4C8A (ROCKETLAKE)
[22:16:32] [PASSED] 0x4C8B (ROCKETLAKE)
[22:16:32] [PASSED] 0x4C8C (ROCKETLAKE)
[22:16:32] [PASSED] 0x4C90 (ROCKETLAKE)
[22:16:32] [PASSED] 0x4C9A (ROCKETLAKE)
[22:16:32] [PASSED] 0x4680 (ALDERLAKE_S)
[22:16:32] [PASSED] 0x4682 (ALDERLAKE_S)
[22:16:32] [PASSED] 0x4688 (ALDERLAKE_S)
[22:16:32] [PASSED] 0x468A (ALDERLAKE_S)
[22:16:32] [PASSED] 0x468B (ALDERLAKE_S)
[22:16:32] [PASSED] 0x4690 (ALDERLAKE_S)
[22:16:32] [PASSED] 0x4692 (ALDERLAKE_S)
[22:16:32] [PASSED] 0x4693 (ALDERLAKE_S)
[22:16:32] [PASSED] 0x46A0 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46A1 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46A2 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46A3 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46A6 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46A8 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46AA (ALDERLAKE_P)
[22:16:32] [PASSED] 0x462A (ALDERLAKE_P)
[22:16:32] [PASSED] 0x4626 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[22:16:32] [PASSED] 0x46B0 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46B1 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46B2 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46B3 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46C0 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46C1 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46C2 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46C3 (ALDERLAKE_P)
[22:16:32] [PASSED] 0x46D0 (ALDERLAKE_N)
[22:16:32] [PASSED] 0x46D1 (ALDERLAKE_N)
[22:16:32] [PASSED] 0x46D2 (ALDERLAKE_N)
[22:16:32] [PASSED] 0x46D3 (ALDERLAKE_N)
[22:16:32] [PASSED] 0x46D4 (ALDERLAKE_N)
[22:16:32] [PASSED] 0xA721 (ALDERLAKE_P)
[22:16:32] [PASSED] 0xA7A1 (ALDERLAKE_P)
[22:16:32] [PASSED] 0xA7A9 (ALDERLAKE_P)
[22:16:32] [PASSED] 0xA7AC (ALDERLAKE_P)
[22:16:32] [PASSED] 0xA7AD (ALDERLAKE_P)
[22:16:32] [PASSED] 0xA720 (ALDERLAKE_P)
[22:16:32] [PASSED] 0xA7A0 (ALDERLAKE_P)
[22:16:32] [PASSED] 0xA7A8 (ALDERLAKE_P)
[22:16:32] [PASSED] 0xA7AA (ALDERLAKE_P)
[22:16:32] [PASSED] 0xA7AB (ALDERLAKE_P)
[22:16:32] [PASSED] 0xA780 (ALDERLAKE_S)
[22:16:32] [PASSED] 0xA781 (ALDERLAKE_S)
[22:16:32] [PASSED] 0xA782 (ALDERLAKE_S)
[22:16:32] [PASSED] 0xA783 (ALDERLAKE_S)
[22:16:32] [PASSED] 0xA788 (ALDERLAKE_S)
[22:16:32] [PASSED] 0xA789 (ALDERLAKE_S)
[22:16:32] [PASSED] 0xA78A (ALDERLAKE_S)
[22:16:32] [PASSED] 0xA78B (ALDERLAKE_S)
[22:16:32] [PASSED] 0x4905 (DG1)
[22:16:32] [PASSED] 0x4906 (DG1)
[22:16:32] [PASSED] 0x4907 (DG1)
[22:16:32] [PASSED] 0x4908 (DG1)
[22:16:32] [PASSED] 0x4909 (DG1)
[22:16:32] [PASSED] 0x56C0 (DG2)
[22:16:32] [PASSED] 0x56C2 (DG2)
[22:16:32] [PASSED] 0x56C1 (DG2)
[22:16:32] [PASSED] 0x7D51 (METEORLAKE)
[22:16:32] [PASSED] 0x7DD1 (METEORLAKE)
[22:16:32] [PASSED] 0x7D41 (METEORLAKE)
[22:16:32] [PASSED] 0x7D67 (METEORLAKE)
[22:16:32] [PASSED] 0xB640 (METEORLAKE)
[22:16:32] [PASSED] 0x56A0 (DG2)
[22:16:32] [PASSED] 0x56A1 (DG2)
[22:16:32] [PASSED] 0x56A2 (DG2)
[22:16:32] [PASSED] 0x56BE (DG2)
[22:16:32] [PASSED] 0x56BF (DG2)
[22:16:32] [PASSED] 0x5690 (DG2)
[22:16:32] [PASSED] 0x5691 (DG2)
[22:16:32] [PASSED] 0x5692 (DG2)
[22:16:32] [PASSED] 0x56A5 (DG2)
[22:16:32] [PASSED] 0x56A6 (DG2)
[22:16:32] [PASSED] 0x56B0 (DG2)
[22:16:32] [PASSED] 0x56B1 (DG2)
[22:16:32] [PASSED] 0x56BA (DG2)
[22:16:32] [PASSED] 0x56BB (DG2)
[22:16:32] [PASSED] 0x56BC (DG2)
[22:16:32] [PASSED] 0x56BD (DG2)
[22:16:32] [PASSED] 0x5693 (DG2)
[22:16:32] [PASSED] 0x5694 (DG2)
[22:16:32] [PASSED] 0x5695 (DG2)
[22:16:32] [PASSED] 0x56A3 (DG2)
[22:16:32] [PASSED] 0x56A4 (DG2)
[22:16:32] [PASSED] 0x56B2 (DG2)
[22:16:32] [PASSED] 0x56B3 (DG2)
[22:16:32] [PASSED] 0x5696 (DG2)
[22:16:32] [PASSED] 0x5697 (DG2)
[22:16:32] [PASSED] 0xB69 (PVC)
[22:16:32] [PASSED] 0xB6E (PVC)
[22:16:32] [PASSED] 0xBD4 (PVC)
[22:16:32] [PASSED] 0xBD5 (PVC)
[22:16:32] [PASSED] 0xBD6 (PVC)
[22:16:32] [PASSED] 0xBD7 (PVC)
[22:16:32] [PASSED] 0xBD8 (PVC)
[22:16:32] [PASSED] 0xBD9 (PVC)
[22:16:32] [PASSED] 0xBDA (PVC)
[22:16:32] [PASSED] 0xBDB (PVC)
[22:16:32] [PASSED] 0xBE0 (PVC)
[22:16:32] [PASSED] 0xBE1 (PVC)
[22:16:32] [PASSED] 0xBE5 (PVC)
[22:16:32] [PASSED] 0x7D40 (METEORLAKE)
[22:16:32] [PASSED] 0x7D45 (METEORLAKE)
[22:16:32] [PASSED] 0x7D55 (METEORLAKE)
[22:16:32] [PASSED] 0x7D60 (METEORLAKE)
[22:16:32] [PASSED] 0x7DD5 (METEORLAKE)
[22:16:32] [PASSED] 0x6420 (LUNARLAKE)
[22:16:32] [PASSED] 0x64A0 (LUNARLAKE)
[22:16:32] [PASSED] 0x64B0 (LUNARLAKE)
[22:16:32] [PASSED] 0xE202 (BATTLEMAGE)
[22:16:32] [PASSED] 0xE209 (BATTLEMAGE)
[22:16:32] [PASSED] 0xE20B (BATTLEMAGE)
[22:16:32] [PASSED] 0xE20C (BATTLEMAGE)
[22:16:32] [PASSED] 0xE20D (BATTLEMAGE)
[22:16:32] [PASSED] 0xE210 (BATTLEMAGE)
[22:16:32] [PASSED] 0xE211 (BATTLEMAGE)
[22:16:32] [PASSED] 0xE212 (BATTLEMAGE)
[22:16:32] [PASSED] 0xE216 (BATTLEMAGE)
[22:16:32] [PASSED] 0xE220 (BATTLEMAGE)
[22:16:32] [PASSED] 0xE221 (BATTLEMAGE)
[22:16:32] [PASSED] 0xE222 (BATTLEMAGE)
[22:16:32] [PASSED] 0xE223 (BATTLEMAGE)
[22:16:32] [PASSED] 0xB080 (PANTHERLAKE)
[22:16:32] [PASSED] 0xB081 (PANTHERLAKE)
[22:16:32] [PASSED] 0xB082 (PANTHERLAKE)
[22:16:32] [PASSED] 0xB083 (PANTHERLAKE)
[22:16:32] [PASSED] 0xB084 (PANTHERLAKE)
[22:16:32] [PASSED] 0xB085 (PANTHERLAKE)
[22:16:32] [PASSED] 0xB086 (PANTHERLAKE)
[22:16:32] [PASSED] 0xB087 (PANTHERLAKE)
[22:16:32] [PASSED] 0xB08F (PANTHERLAKE)
[22:16:32] [PASSED] 0xB090 (PANTHERLAKE)
[22:16:32] [PASSED] 0xB0A0 (PANTHERLAKE)
[22:16:32] [PASSED] 0xB0B0 (PANTHERLAKE)
[22:16:32] [PASSED] 0xFD80 (PANTHERLAKE)
[22:16:32] [PASSED] 0xFD81 (PANTHERLAKE)
[22:16:32] [PASSED] 0xD740 (NOVALAKE_S)
[22:16:32] [PASSED] 0xD741 (NOVALAKE_S)
[22:16:32] [PASSED] 0xD742 (NOVALAKE_S)
[22:16:32] [PASSED] 0xD743 (NOVALAKE_S)
[22:16:32] [PASSED] 0xD744 (NOVALAKE_S)
[22:16:32] [PASSED] 0xD745 (NOVALAKE_S)
[22:16:32] [PASSED] 0x674C (CRESCENTISLAND)
[22:16:32] =============== [PASSED] check_platform_desc ===============
[22:16:32] ===================== [PASSED] xe_pci ======================
[22:16:32] =================== xe_rtp (2 subtests) ====================
[22:16:32] =============== xe_rtp_process_to_sr_tests ================
[22:16:32] [PASSED] coalesce-same-reg
[22:16:32] [PASSED] no-match-no-add
[22:16:32] [PASSED] match-or
[22:16:32] [PASSED] match-or-xfail
[22:16:32] [PASSED] no-match-no-add-multiple-rules
[22:16:32] [PASSED] two-regs-two-entries
[22:16:32] [PASSED] clr-one-set-other
[22:16:32] [PASSED] set-field
[22:16:32] [PASSED] conflict-duplicate
[22:16:32] [PASSED] conflict-not-disjoint
[22:16:32] [PASSED] conflict-reg-type
[22:16:32] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[22:16:32] ================== xe_rtp_process_tests ===================
[22:16:32] [PASSED] active1
[22:16:32] [PASSED] active2
[22:16:32] [PASSED] active-inactive
[22:16:32] [PASSED] inactive-active
[22:16:32] [PASSED] inactive-1st_or_active-inactive
[22:16:32] [PASSED] inactive-2nd_or_active-inactive
[22:16:32] [PASSED] inactive-last_or_active-inactive
[22:16:32] [PASSED] inactive-no_or_active-inactive
[22:16:32] ============== [PASSED] xe_rtp_process_tests ===============
[22:16:32] ===================== [PASSED] xe_rtp ======================
[22:16:32] ==================== xe_wa (1 subtest) =====================
[22:16:32] ======================== xe_wa_gt =========================
[22:16:32] [PASSED] TIGERLAKE B0
[22:16:32] [PASSED] DG1 A0
[22:16:32] [PASSED] DG1 B0
[22:16:32] [PASSED] ALDERLAKE_S A0
[22:16:32] [PASSED] ALDERLAKE_S B0
[22:16:32] [PASSED] ALDERLAKE_S C0
[22:16:32] [PASSED] ALDERLAKE_S D0
[22:16:32] [PASSED] ALDERLAKE_P A0
[22:16:32] [PASSED] ALDERLAKE_P B0
[22:16:32] [PASSED] ALDERLAKE_P C0
[22:16:32] [PASSED] ALDERLAKE_S RPLS D0
[22:16:32] [PASSED] ALDERLAKE_P RPLU E0
[22:16:32] [PASSED] DG2 G10 C0
[22:16:32] [PASSED] DG2 G11 B1
[22:16:32] [PASSED] DG2 G12 A1
[22:16:32] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:16:32] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:16:32] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[22:16:32] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[22:16:32] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[22:16:32] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[22:16:32] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[22:16:32] ==================== [PASSED] xe_wa_gt =====================
[22:16:32] ====================== [PASSED] xe_wa ======================
[22:16:32] ============================================================
[22:16:32] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[22:16:32] Elapsed time: 66.701s total, 4.265s configuring, 61.613s building, 0.790s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[22:16:32] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:16:34] 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:17:23] Starting KUnit Kernel (1/1)...
[22:17:23] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:17:23] ============ drm_test_pick_cmdline (2 subtests) ============
[22:17:23] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[22:17:23] =============== drm_test_pick_cmdline_named ===============
[22:17:23] [PASSED] NTSC
[22:17:23] [PASSED] NTSC-J
[22:17:23] [PASSED] PAL
[22:17:23] [PASSED] PAL-M
[22:17:23] =========== [PASSED] drm_test_pick_cmdline_named ===========
[22:17:23] ============== [PASSED] drm_test_pick_cmdline ==============
[22:17:23] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[22:17:23] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[22:17:23] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[22:17:23] =========== drm_validate_clone_mode (2 subtests) ===========
[22:17:23] ============== drm_test_check_in_clone_mode ===============
[22:17:23] [PASSED] in_clone_mode
[22:17:23] [PASSED] not_in_clone_mode
[22:17:23] ========== [PASSED] drm_test_check_in_clone_mode ===========
[22:17:23] =============== drm_test_check_valid_clones ===============
[22:17:23] [PASSED] not_in_clone_mode
[22:17:23] [PASSED] valid_clone
[22:17:23] [PASSED] invalid_clone
[22:17:23] =========== [PASSED] drm_test_check_valid_clones ===========
[22:17:23] ============= [PASSED] drm_validate_clone_mode =============
[22:17:23] ============= drm_validate_modeset (1 subtest) =============
[22:17:23] [PASSED] drm_test_check_connector_changed_modeset
[22:17:23] ============== [PASSED] drm_validate_modeset ===============
[22:17:23] ====== drm_test_bridge_get_current_state (2 subtests) ======
[22:17:23] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[22:17:23] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[22:17:23] ======== [PASSED] drm_test_bridge_get_current_state ========
[22:17:23] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[22:17:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[22:17:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[22:17:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[22:17:23] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[22:17:23] ============== drm_bridge_alloc (2 subtests) ===============
[22:17:23] [PASSED] drm_test_drm_bridge_alloc_basic
[22:17:23] [PASSED] drm_test_drm_bridge_alloc_get_put
[22:17:23] ================ [PASSED] drm_bridge_alloc =================
[22:17:23] ================== drm_buddy (8 subtests) ==================
[22:17:23] [PASSED] drm_test_buddy_alloc_limit
[22:17:23] [PASSED] drm_test_buddy_alloc_optimistic
[22:17:23] [PASSED] drm_test_buddy_alloc_pessimistic
[22:17:23] [PASSED] drm_test_buddy_alloc_pathological
[22:17:23] [PASSED] drm_test_buddy_alloc_contiguous
[22:17:23] [PASSED] drm_test_buddy_alloc_clear
[22:17:23] [PASSED] drm_test_buddy_alloc_range_bias
[22:17:23] [PASSED] drm_test_buddy_fragmentation_performance
[22:17:23] ==================== [PASSED] drm_buddy ====================
[22:17:23] ============= drm_cmdline_parser (40 subtests) =============
[22:17:23] [PASSED] drm_test_cmdline_force_d_only
[22:17:23] [PASSED] drm_test_cmdline_force_D_only_dvi
[22:17:23] [PASSED] drm_test_cmdline_force_D_only_hdmi
[22:17:23] [PASSED] drm_test_cmdline_force_D_only_not_digital
[22:17:23] [PASSED] drm_test_cmdline_force_e_only
[22:17:23] [PASSED] drm_test_cmdline_res
[22:17:23] [PASSED] drm_test_cmdline_res_vesa
[22:17:23] [PASSED] drm_test_cmdline_res_vesa_rblank
[22:17:23] [PASSED] drm_test_cmdline_res_rblank
[22:17:23] [PASSED] drm_test_cmdline_res_bpp
[22:17:23] [PASSED] drm_test_cmdline_res_refresh
[22:17:23] [PASSED] drm_test_cmdline_res_bpp_refresh
[22:17:23] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[22:17:23] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[22:17:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[22:17:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[22:17:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[22:17:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[22:17:23] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[22:17:23] [PASSED] drm_test_cmdline_res_margins_force_on
[22:17:23] [PASSED] drm_test_cmdline_res_vesa_margins
[22:17:23] [PASSED] drm_test_cmdline_name
[22:17:23] [PASSED] drm_test_cmdline_name_bpp
[22:17:23] [PASSED] drm_test_cmdline_name_option
[22:17:23] [PASSED] drm_test_cmdline_name_bpp_option
[22:17:23] [PASSED] drm_test_cmdline_rotate_0
[22:17:23] [PASSED] drm_test_cmdline_rotate_90
[22:17:23] [PASSED] drm_test_cmdline_rotate_180
[22:17:23] [PASSED] drm_test_cmdline_rotate_270
[22:17:23] [PASSED] drm_test_cmdline_hmirror
[22:17:23] [PASSED] drm_test_cmdline_vmirror
[22:17:23] [PASSED] drm_test_cmdline_margin_options
[22:17:23] [PASSED] drm_test_cmdline_multiple_options
[22:17:23] [PASSED] drm_test_cmdline_bpp_extra_and_option
[22:17:23] [PASSED] drm_test_cmdline_extra_and_option
[22:17:23] [PASSED] drm_test_cmdline_freestanding_options
[22:17:23] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[22:17:23] [PASSED] drm_test_cmdline_panel_orientation
[22:17:23] ================ drm_test_cmdline_invalid =================
[22:17:23] [PASSED] margin_only
[22:17:23] [PASSED] interlace_only
[22:17:23] [PASSED] res_missing_x
[22:17:23] [PASSED] res_missing_y
[22:17:23] [PASSED] res_bad_y
[22:17:23] [PASSED] res_missing_y_bpp
[22:17:23] [PASSED] res_bad_bpp
[22:17:23] [PASSED] res_bad_refresh
[22:17:23] [PASSED] res_bpp_refresh_force_on_off
[22:17:23] [PASSED] res_invalid_mode
[22:17:23] [PASSED] res_bpp_wrong_place_mode
[22:17:23] [PASSED] name_bpp_refresh
[22:17:23] [PASSED] name_refresh
[22:17:23] [PASSED] name_refresh_wrong_mode
[22:17:23] [PASSED] name_refresh_invalid_mode
[22:17:23] [PASSED] rotate_multiple
[22:17:23] [PASSED] rotate_invalid_val
[22:17:23] [PASSED] rotate_truncated
[22:17:23] [PASSED] invalid_option
[22:17:23] [PASSED] invalid_tv_option
[22:17:23] [PASSED] truncated_tv_option
[22:17:23] ============ [PASSED] drm_test_cmdline_invalid =============
[22:17:23] =============== drm_test_cmdline_tv_options ===============
[22:17:23] [PASSED] NTSC
[22:17:23] [PASSED] NTSC_443
[22:17:23] [PASSED] NTSC_J
[22:17:23] [PASSED] PAL
[22:17:23] [PASSED] PAL_M
[22:17:23] [PASSED] PAL_N
[22:17:23] [PASSED] SECAM
[22:17:23] [PASSED] MONO_525
[22:17:23] [PASSED] MONO_625
[22:17:23] =========== [PASSED] drm_test_cmdline_tv_options ===========
[22:17:23] =============== [PASSED] drm_cmdline_parser ================
[22:17:23] ========== drmm_connector_hdmi_init (20 subtests) ==========
[22:17:23] [PASSED] drm_test_connector_hdmi_init_valid
[22:17:23] [PASSED] drm_test_connector_hdmi_init_bpc_8
[22:17:23] [PASSED] drm_test_connector_hdmi_init_bpc_10
[22:17:23] [PASSED] drm_test_connector_hdmi_init_bpc_12
[22:17:23] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[22:17:23] [PASSED] drm_test_connector_hdmi_init_bpc_null
[22:17:23] [PASSED] drm_test_connector_hdmi_init_formats_empty
[22:17:23] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[22:17:23] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:17:23] [PASSED] supported_formats=0x9 yuv420_allowed=1
[22:17:23] [PASSED] supported_formats=0x9 yuv420_allowed=0
[22:17:23] [PASSED] supported_formats=0x3 yuv420_allowed=1
[22:17:23] [PASSED] supported_formats=0x3 yuv420_allowed=0
[22:17:23] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:17:23] [PASSED] drm_test_connector_hdmi_init_null_ddc
[22:17:23] [PASSED] drm_test_connector_hdmi_init_null_product
[22:17:23] [PASSED] drm_test_connector_hdmi_init_null_vendor
[22:17:23] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[22:17:23] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[22:17:23] [PASSED] drm_test_connector_hdmi_init_product_valid
[22:17:23] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[22:17:23] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[22:17:23] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[22:17:23] ========= drm_test_connector_hdmi_init_type_valid =========
[22:17:23] [PASSED] HDMI-A
[22:17:23] [PASSED] HDMI-B
[22:17:23] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[22:17:23] ======== drm_test_connector_hdmi_init_type_invalid ========
[22:17:23] [PASSED] Unknown
[22:17:23] [PASSED] VGA
[22:17:23] [PASSED] DVI-I
[22:17:23] [PASSED] DVI-D
[22:17:23] [PASSED] DVI-A
[22:17:23] [PASSED] Composite
[22:17:23] [PASSED] SVIDEO
[22:17:23] [PASSED] LVDS
[22:17:23] [PASSED] Component
[22:17:23] [PASSED] DIN
[22:17:23] [PASSED] DP
[22:17:23] [PASSED] TV
[22:17:23] [PASSED] eDP
[22:17:23] [PASSED] Virtual
[22:17:23] [PASSED] DSI
[22:17:23] [PASSED] DPI
[22:17:23] [PASSED] Writeback
[22:17:23] [PASSED] SPI
[22:17:23] [PASSED] USB
[22:17:23] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[22:17:23] ============ [PASSED] drmm_connector_hdmi_init =============
[22:17:23] ============= drmm_connector_init (3 subtests) =============
[22:17:23] [PASSED] drm_test_drmm_connector_init
[22:17:23] [PASSED] drm_test_drmm_connector_init_null_ddc
[22:17:23] ========= drm_test_drmm_connector_init_type_valid =========
[22:17:23] [PASSED] Unknown
[22:17:23] [PASSED] VGA
[22:17:23] [PASSED] DVI-I
[22:17:23] [PASSED] DVI-D
[22:17:23] [PASSED] DVI-A
[22:17:23] [PASSED] Composite
[22:17:23] [PASSED] SVIDEO
[22:17:23] [PASSED] LVDS
[22:17:23] [PASSED] Component
[22:17:23] [PASSED] DIN
[22:17:23] [PASSED] DP
[22:17:23] [PASSED] HDMI-A
[22:17:23] [PASSED] HDMI-B
[22:17:23] [PASSED] TV
[22:17:23] [PASSED] eDP
[22:17:23] [PASSED] Virtual
[22:17:23] [PASSED] DSI
[22:17:23] [PASSED] DPI
[22:17:23] [PASSED] Writeback
[22:17:23] [PASSED] SPI
[22:17:23] [PASSED] USB
[22:17:23] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[22:17:23] =============== [PASSED] drmm_connector_init ===============
[22:17:23] ========= drm_connector_dynamic_init (6 subtests) ==========
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_init
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_init_properties
[22:17:23] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[22:17:23] [PASSED] Unknown
[22:17:23] [PASSED] VGA
[22:17:23] [PASSED] DVI-I
[22:17:23] [PASSED] DVI-D
[22:17:23] [PASSED] DVI-A
[22:17:23] [PASSED] Composite
[22:17:23] [PASSED] SVIDEO
[22:17:23] [PASSED] LVDS
[22:17:23] [PASSED] Component
[22:17:23] [PASSED] DIN
[22:17:23] [PASSED] DP
[22:17:23] [PASSED] HDMI-A
[22:17:23] [PASSED] HDMI-B
[22:17:23] [PASSED] TV
[22:17:23] [PASSED] eDP
[22:17:23] [PASSED] Virtual
[22:17:23] [PASSED] DSI
[22:17:23] [PASSED] DPI
[22:17:23] [PASSED] Writeback
[22:17:23] [PASSED] SPI
[22:17:23] [PASSED] USB
[22:17:23] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[22:17:23] ======== drm_test_drm_connector_dynamic_init_name =========
[22:17:23] [PASSED] Unknown
[22:17:23] [PASSED] VGA
[22:17:23] [PASSED] DVI-I
[22:17:23] [PASSED] DVI-D
[22:17:23] [PASSED] DVI-A
[22:17:23] [PASSED] Composite
[22:17:23] [PASSED] SVIDEO
[22:17:23] [PASSED] LVDS
[22:17:23] [PASSED] Component
[22:17:23] [PASSED] DIN
[22:17:23] [PASSED] DP
[22:17:23] [PASSED] HDMI-A
[22:17:23] [PASSED] HDMI-B
[22:17:23] [PASSED] TV
[22:17:23] [PASSED] eDP
[22:17:23] [PASSED] Virtual
[22:17:23] [PASSED] DSI
[22:17:23] [PASSED] DPI
[22:17:23] [PASSED] Writeback
[22:17:23] [PASSED] SPI
[22:17:23] [PASSED] USB
[22:17:23] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[22:17:23] =========== [PASSED] drm_connector_dynamic_init ============
[22:17:23] ==== drm_connector_dynamic_register_early (4 subtests) =====
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[22:17:23] ====== [PASSED] drm_connector_dynamic_register_early =======
[22:17:23] ======= drm_connector_dynamic_register (7 subtests) ========
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[22:17:23] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[22:17:23] ========= [PASSED] drm_connector_dynamic_register ==========
[22:17:23] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[22:17:23] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[22:17:23] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[22:17:23] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[22:17:23] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[22:17:23] ========== drm_test_get_tv_mode_from_name_valid ===========
[22:17:23] [PASSED] NTSC
[22:17:23] [PASSED] NTSC-443
[22:17:23] [PASSED] NTSC-J
[22:17:23] [PASSED] PAL
[22:17:23] [PASSED] PAL-M
[22:17:23] [PASSED] PAL-N
[22:17:23] [PASSED] SECAM
[22:17:23] [PASSED] Mono
[22:17:23] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[22:17:23] [PASSED] drm_test_get_tv_mode_from_name_truncated
[22:17:23] ============ [PASSED] drm_get_tv_mode_from_name ============
[22:17:23] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[22:17:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[22:17:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[22:17:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[22:17:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[22:17:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[22:17:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[22:17:23] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[22:17:23] [PASSED] VIC 96
[22:17:23] [PASSED] VIC 97
[22:17:23] [PASSED] VIC 101
[22:17:23] [PASSED] VIC 102
[22:17:23] [PASSED] VIC 106
[22:17:23] [PASSED] VIC 107
[22:17:23] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[22:17:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[22:17:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[22:17:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[22:17:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[22:17:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[22:17:23] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[22:17:23] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[22:17:23] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[22:17:23] [PASSED] Automatic
[22:17:23] [PASSED] Full
[22:17:23] [PASSED] Limited 16:235
[22:17:23] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[22:17:23] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[22:17:23] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[22:17:23] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[22:17:23] === drm_test_drm_hdmi_connector_get_output_format_name ====
[22:17:23] [PASSED] RGB
[22:17:23] [PASSED] YUV 4:2:0
[22:17:23] [PASSED] YUV 4:2:2
[22:17:23] [PASSED] YUV 4:4:4
[22:17:23] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[22:17:23] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[22:17:23] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[22:17:23] ============= drm_damage_helper (21 subtests) ==============
[22:17:23] [PASSED] drm_test_damage_iter_no_damage
[22:17:23] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[22:17:23] [PASSED] drm_test_damage_iter_no_damage_src_moved
[22:17:23] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[22:17:23] [PASSED] drm_test_damage_iter_no_damage_not_visible
[22:17:23] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[22:17:23] [PASSED] drm_test_damage_iter_no_damage_no_fb
[22:17:23] [PASSED] drm_test_damage_iter_simple_damage
[22:17:23] [PASSED] drm_test_damage_iter_single_damage
[22:17:23] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[22:17:23] [PASSED] drm_test_damage_iter_single_damage_outside_src
[22:17:23] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[22:17:23] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[22:17:23] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[22:17:23] [PASSED] drm_test_damage_iter_single_damage_src_moved
[22:17:23] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[22:17:23] [PASSED] drm_test_damage_iter_damage
[22:17:23] [PASSED] drm_test_damage_iter_damage_one_intersect
[22:17:23] [PASSED] drm_test_damage_iter_damage_one_outside
[22:17:23] [PASSED] drm_test_damage_iter_damage_src_moved
[22:17:23] [PASSED] drm_test_damage_iter_damage_not_visible
[22:17:23] ================ [PASSED] drm_damage_helper ================
[22:17:23] ============== drm_dp_mst_helper (3 subtests) ==============
[22:17:23] ============== drm_test_dp_mst_calc_pbn_mode ==============
[22:17:23] [PASSED] Clock 154000 BPP 30 DSC disabled
[22:17:23] [PASSED] Clock 234000 BPP 30 DSC disabled
[22:17:23] [PASSED] Clock 297000 BPP 24 DSC disabled
[22:17:23] [PASSED] Clock 332880 BPP 24 DSC enabled
[22:17:23] [PASSED] Clock 324540 BPP 24 DSC enabled
[22:17:23] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[22:17:23] ============== drm_test_dp_mst_calc_pbn_div ===============
[22:17:23] [PASSED] Link rate 2000000 lane count 4
[22:17:23] [PASSED] Link rate 2000000 lane count 2
[22:17:23] [PASSED] Link rate 2000000 lane count 1
[22:17:23] [PASSED] Link rate 1350000 lane count 4
[22:17:23] [PASSED] Link rate 1350000 lane count 2
[22:17:23] [PASSED] Link rate 1350000 lane count 1
[22:17:23] [PASSED] Link rate 1000000 lane count 4
[22:17:23] [PASSED] Link rate 1000000 lane count 2
[22:17:23] [PASSED] Link rate 1000000 lane count 1
[22:17:23] [PASSED] Link rate 810000 lane count 4
[22:17:23] [PASSED] Link rate 810000 lane count 2
[22:17:23] [PASSED] Link rate 810000 lane count 1
[22:17:23] [PASSED] Link rate 540000 lane count 4
[22:17:23] [PASSED] Link rate 540000 lane count 2
[22:17:23] [PASSED] Link rate 540000 lane count 1
[22:17:23] [PASSED] Link rate 270000 lane count 4
[22:17:23] [PASSED] Link rate 270000 lane count 2
[22:17:23] [PASSED] Link rate 270000 lane count 1
[22:17:23] [PASSED] Link rate 162000 lane count 4
[22:17:23] [PASSED] Link rate 162000 lane count 2
[22:17:23] [PASSED] Link rate 162000 lane count 1
[22:17:23] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[22:17:23] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[22:17:23] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[22:17:23] [PASSED] DP_POWER_UP_PHY with port number
[22:17:23] [PASSED] DP_POWER_DOWN_PHY with port number
[22:17:23] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[22:17:23] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[22:17:23] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[22:17:23] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[22:17:23] [PASSED] DP_QUERY_PAYLOAD with port number
[22:17:23] [PASSED] DP_QUERY_PAYLOAD with VCPI
[22:17:23] [PASSED] DP_REMOTE_DPCD_READ with port number
[22:17:23] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[22:17:23] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[22:17:23] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[22:17:23] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[22:17:23] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[22:17:23] [PASSED] DP_REMOTE_I2C_READ with port number
[22:17:23] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[22:17:23] [PASSED] DP_REMOTE_I2C_READ with transactions array
[22:17:23] [PASSED] DP_REMOTE_I2C_WRITE with port number
[22:17:23] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[22:17:23] [PASSED] DP_REMOTE_I2C_WRITE with data array
[22:17:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[22:17:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[22:17:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[22:17:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[22:17:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[22:17:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[22:17:23] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[22:17:23] ================ [PASSED] drm_dp_mst_helper ================
[22:17:23] ================== drm_exec (7 subtests) ===================
[22:17:23] [PASSED] sanitycheck
[22:17:23] [PASSED] test_lock
[22:17:23] [PASSED] test_lock_unlock
[22:17:23] [PASSED] test_duplicates
[22:17:23] [PASSED] test_prepare
[22:17:23] [PASSED] test_prepare_array
[22:17:23] [PASSED] test_multiple_loops
[22:17:23] ==================== [PASSED] drm_exec =====================
[22:17:23] =========== drm_format_helper_test (17 subtests) ===========
[22:17:23] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[22:17:23] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[22:17:23] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[22:17:23] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[22:17:23] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[22:17:23] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[22:17:23] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[22:17:23] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[22:17:23] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[22:17:23] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[22:17:23] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[22:17:23] ============== drm_test_fb_xrgb8888_to_mono ===============
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[22:17:23] ==================== drm_test_fb_swab =====================
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ================ [PASSED] drm_test_fb_swab =================
[22:17:23] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[22:17:23] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[22:17:23] [PASSED] single_pixel_source_buffer
[22:17:23] [PASSED] single_pixel_clip_rectangle
[22:17:23] [PASSED] well_known_colors
[22:17:23] [PASSED] destination_pitch
[22:17:23] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[22:17:23] ================= drm_test_fb_clip_offset =================
[22:17:23] [PASSED] pass through
[22:17:23] [PASSED] horizontal offset
[22:17:23] [PASSED] vertical offset
[22:17:23] [PASSED] horizontal and vertical offset
[22:17:23] [PASSED] horizontal offset (custom pitch)
[22:17:23] [PASSED] vertical offset (custom pitch)
[22:17:23] [PASSED] horizontal and vertical offset (custom pitch)
[22:17:23] ============= [PASSED] drm_test_fb_clip_offset =============
[22:17:23] =================== drm_test_fb_memcpy ====================
[22:17:23] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[22:17:23] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[22:17:23] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[22:17:23] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[22:17:23] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[22:17:23] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[22:17:23] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[22:17:23] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[22:17:23] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[22:17:23] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[22:17:23] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[22:17:23] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[22:17:23] =============== [PASSED] drm_test_fb_memcpy ================
[22:17:23] ============= [PASSED] drm_format_helper_test ==============
[22:17:23] ================= drm_format (18 subtests) =================
[22:17:23] [PASSED] drm_test_format_block_width_invalid
[22:17:23] [PASSED] drm_test_format_block_width_one_plane
[22:17:23] [PASSED] drm_test_format_block_width_two_plane
[22:17:23] [PASSED] drm_test_format_block_width_three_plane
[22:17:23] [PASSED] drm_test_format_block_width_tiled
[22:17:23] [PASSED] drm_test_format_block_height_invalid
[22:17:23] [PASSED] drm_test_format_block_height_one_plane
[22:17:23] [PASSED] drm_test_format_block_height_two_plane
[22:17:23] [PASSED] drm_test_format_block_height_three_plane
[22:17:23] [PASSED] drm_test_format_block_height_tiled
[22:17:23] [PASSED] drm_test_format_min_pitch_invalid
[22:17:23] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[22:17:23] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[22:17:23] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[22:17:23] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[22:17:23] [PASSED] drm_test_format_min_pitch_two_plane
[22:17:23] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[22:17:23] [PASSED] drm_test_format_min_pitch_tiled
[22:17:23] =================== [PASSED] drm_format ====================
[22:17:23] ============== drm_framebuffer (10 subtests) ===============
[22:17:23] ========== drm_test_framebuffer_check_src_coords ==========
[22:17:23] [PASSED] Success: source fits into fb
[22:17:23] [PASSED] Fail: overflowing fb with x-axis coordinate
[22:17:23] [PASSED] Fail: overflowing fb with y-axis coordinate
[22:17:23] [PASSED] Fail: overflowing fb with source width
[22:17:23] [PASSED] Fail: overflowing fb with source height
[22:17:23] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[22:17:23] [PASSED] drm_test_framebuffer_cleanup
[22:17:23] =============== drm_test_framebuffer_create ===============
[22:17:23] [PASSED] ABGR8888 normal sizes
[22:17:23] [PASSED] ABGR8888 max sizes
[22:17:23] [PASSED] ABGR8888 pitch greater than min required
[22:17:23] [PASSED] ABGR8888 pitch less than min required
[22:17:23] [PASSED] ABGR8888 Invalid width
[22:17:23] [PASSED] ABGR8888 Invalid buffer handle
[22:17:23] [PASSED] No pixel format
[22:17:23] [PASSED] ABGR8888 Width 0
[22:17:23] [PASSED] ABGR8888 Height 0
[22:17:23] [PASSED] ABGR8888 Out of bound height * pitch combination
[22:17:23] [PASSED] ABGR8888 Large buffer offset
[22:17:23] [PASSED] ABGR8888 Buffer offset for inexistent plane
[22:17:23] [PASSED] ABGR8888 Invalid flag
[22:17:23] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[22:17:23] [PASSED] ABGR8888 Valid buffer modifier
[22:17:23] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[22:17:23] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[22:17:23] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[22:17:23] [PASSED] NV12 Normal sizes
[22:17:23] [PASSED] NV12 Max sizes
[22:17:23] [PASSED] NV12 Invalid pitch
[22:17:23] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[22:17:23] [PASSED] NV12 different modifier per-plane
[22:17:23] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[22:17:23] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[22:17:23] [PASSED] NV12 Modifier for inexistent plane
[22:17:23] [PASSED] NV12 Handle for inexistent plane
[22:17:23] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[22:17:23] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[22:17:23] [PASSED] YVU420 Normal sizes
[22:17:23] [PASSED] YVU420 Max sizes
[22:17:23] [PASSED] YVU420 Invalid pitch
[22:17:23] [PASSED] YVU420 Different pitches
[22:17:23] [PASSED] YVU420 Different buffer offsets/pitches
[22:17:23] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[22:17:23] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[22:17:23] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[22:17:23] [PASSED] YVU420 Valid modifier
[22:17:23] [PASSED] YVU420 Different modifiers per plane
[22:17:23] [PASSED] YVU420 Modifier for inexistent plane
[22:17:23] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[22:17:23] [PASSED] X0L2 Normal sizes
[22:17:23] [PASSED] X0L2 Max sizes
[22:17:23] [PASSED] X0L2 Invalid pitch
[22:17:23] [PASSED] X0L2 Pitch greater than minimum required
[22:17:23] [PASSED] X0L2 Handle for inexistent plane
[22:17:23] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[22:17:23] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[22:17:23] [PASSED] X0L2 Valid modifier
[22:17:23] [PASSED] X0L2 Modifier for inexistent plane
[22:17:23] =========== [PASSED] drm_test_framebuffer_create ===========
[22:17:23] [PASSED] drm_test_framebuffer_free
[22:17:23] [PASSED] drm_test_framebuffer_init
[22:17:23] [PASSED] drm_test_framebuffer_init_bad_format
[22:17:23] [PASSED] drm_test_framebuffer_init_dev_mismatch
[22:17:23] [PASSED] drm_test_framebuffer_lookup
[22:17:23] [PASSED] drm_test_framebuffer_lookup_inexistent
[22:17:23] [PASSED] drm_test_framebuffer_modifiers_not_supported
[22:17:23] ================= [PASSED] drm_framebuffer =================
[22:17:23] ================ drm_gem_shmem (8 subtests) ================
[22:17:23] [PASSED] drm_gem_shmem_test_obj_create
[22:17:23] [PASSED] drm_gem_shmem_test_obj_create_private
[22:17:23] [PASSED] drm_gem_shmem_test_pin_pages
[22:17:23] [PASSED] drm_gem_shmem_test_vmap
[22:17:23] [PASSED] drm_gem_shmem_test_get_pages_sgt
[22:17:23] [PASSED] drm_gem_shmem_test_get_sg_table
[22:17:23] [PASSED] drm_gem_shmem_test_madvise
[22:17:23] [PASSED] drm_gem_shmem_test_purge
[22:17:23] ================== [PASSED] drm_gem_shmem ==================
[22:17:23] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[22:17:23] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[22:17:23] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[22:17:23] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[22:17:23] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[22:17:23] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[22:17:23] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[22:17:23] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[22:17:23] [PASSED] Automatic
[22:17:23] [PASSED] Full
[22:17:23] [PASSED] Limited 16:235
[22:17:23] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[22:17:23] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[22:17:23] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[22:17:23] [PASSED] drm_test_check_disable_connector
[22:17:23] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[22:17:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[22:17:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[22:17:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[22:17:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[22:17:23] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[22:17:23] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[22:17:23] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[22:17:23] [PASSED] drm_test_check_output_bpc_dvi
[22:17:23] [PASSED] drm_test_check_output_bpc_format_vic_1
[22:17:23] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[22:17:23] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[22:17:23] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[22:17:23] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[22:17:23] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[22:17:23] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[22:17:23] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[22:17:23] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[22:17:23] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[22:17:23] [PASSED] drm_test_check_broadcast_rgb_value
[22:17:23] [PASSED] drm_test_check_bpc_8_value
[22:17:23] [PASSED] drm_test_check_bpc_10_value
[22:17:23] [PASSED] drm_test_check_bpc_12_value
[22:17:23] [PASSED] drm_test_check_format_value
[22:17:23] [PASSED] drm_test_check_tmds_char_value
[22:17:23] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[22:17:23] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[22:17:23] [PASSED] drm_test_check_mode_valid
[22:17:23] [PASSED] drm_test_check_mode_valid_reject
[22:17:23] [PASSED] drm_test_check_mode_valid_reject_rate
[22:17:23] [PASSED] drm_test_check_mode_valid_reject_max_clock
[22:17:23] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[22:17:23] ================= drm_managed (2 subtests) =================
[22:17:23] [PASSED] drm_test_managed_release_action
[22:17:23] [PASSED] drm_test_managed_run_action
[22:17:23] =================== [PASSED] drm_managed ===================
[22:17:23] =================== drm_mm (6 subtests) ====================
[22:17:23] [PASSED] drm_test_mm_init
[22:17:23] [PASSED] drm_test_mm_debug
[22:17:23] [PASSED] drm_test_mm_align32
[22:17:23] [PASSED] drm_test_mm_align64
[22:17:23] [PASSED] drm_test_mm_lowest
[22:17:23] [PASSED] drm_test_mm_highest
[22:17:23] ===================== [PASSED] drm_mm ======================
[22:17:23] ============= drm_modes_analog_tv (5 subtests) =============
[22:17:23] [PASSED] drm_test_modes_analog_tv_mono_576i
[22:17:23] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[22:17:23] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[22:17:23] [PASSED] drm_test_modes_analog_tv_pal_576i
[22:17:23] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[22:17:23] =============== [PASSED] drm_modes_analog_tv ===============
[22:17:23] ============== drm_plane_helper (2 subtests) ===============
[22:17:23] =============== drm_test_check_plane_state ================
[22:17:23] [PASSED] clipping_simple
[22:17:23] [PASSED] clipping_rotate_reflect
[22:17:23] [PASSED] positioning_simple
[22:17:23] [PASSED] upscaling
[22:17:23] [PASSED] downscaling
[22:17:23] [PASSED] rounding1
[22:17:23] [PASSED] rounding2
[22:17:23] [PASSED] rounding3
[22:17:23] [PASSED] rounding4
[22:17:23] =========== [PASSED] drm_test_check_plane_state ============
[22:17:23] =========== drm_test_check_invalid_plane_state ============
[22:17:23] [PASSED] positioning_invalid
[22:17:23] [PASSED] upscaling_invalid
[22:17:23] [PASSED] downscaling_invalid
[22:17:23] ======= [PASSED] drm_test_check_invalid_plane_state ========
[22:17:23] ================ [PASSED] drm_plane_helper =================
[22:17:23] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[22:17:23] ====== drm_test_connector_helper_tv_get_modes_check =======
[22:17:23] [PASSED] None
[22:17:23] [PASSED] PAL
[22:17:23] [PASSED] NTSC
[22:17:23] [PASSED] Both, NTSC Default
[22:17:23] [PASSED] Both, PAL Default
[22:17:23] [PASSED] Both, NTSC Default, with PAL on command-line
[22:17:23] [PASSED] Both, PAL Default, with NTSC on command-line
[22:17:23] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[22:17:23] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[22:17:23] ================== drm_rect (9 subtests) ===================
[22:17:23] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[22:17:23] [PASSED] drm_test_rect_clip_scaled_not_clipped
[22:17:23] [PASSED] drm_test_rect_clip_scaled_clipped
[22:17:23] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[22:17:23] ================= drm_test_rect_intersect =================
[22:17:23] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[22:17:23] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[22:17:23] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[22:17:23] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[22:17:23] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[22:17:23] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[22:17:23] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[22:17:23] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[22:17:23] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[22:17:23] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[22:17:23] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[22:17:23] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[22:17:23] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[22:17:23] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[22:17:23] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[22:17:23] ============= [PASSED] drm_test_rect_intersect =============
[22:17:23] ================ drm_test_rect_calc_hscale ================
[22:17:23] [PASSED] normal use
[22:17:23] [PASSED] out of max range
[22:17:23] [PASSED] out of min range
[22:17:23] [PASSED] zero dst
[22:17:23] [PASSED] negative src
[22:17:23] [PASSED] negative dst
[22:17:23] ============ [PASSED] drm_test_rect_calc_hscale ============
[22:17:23] ================ drm_test_rect_calc_vscale ================
[22:17:23] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[22:17:23] [PASSED] out of max range
[22:17:23] [PASSED] out of min range
[22:17:23] [PASSED] zero dst
[22:17:23] [PASSED] negative src
[22:17:23] [PASSED] negative dst
[22:17:23] ============ [PASSED] drm_test_rect_calc_vscale ============
[22:17:23] ================== drm_test_rect_rotate ===================
[22:17:23] [PASSED] reflect-x
[22:17:23] [PASSED] reflect-y
[22:17:23] [PASSED] rotate-0
[22:17:23] [PASSED] rotate-90
[22:17:23] [PASSED] rotate-180
[22:17:23] [PASSED] rotate-270
[22:17:23] ============== [PASSED] drm_test_rect_rotate ===============
[22:17:23] ================ drm_test_rect_rotate_inv =================
[22:17:23] [PASSED] reflect-x
[22:17:23] [PASSED] reflect-y
[22:17:23] [PASSED] rotate-0
[22:17:23] [PASSED] rotate-90
[22:17:23] [PASSED] rotate-180
[22:17:23] [PASSED] rotate-270
[22:17:23] ============ [PASSED] drm_test_rect_rotate_inv =============
[22:17:23] ==================== [PASSED] drm_rect =====================
[22:17:23] ============ drm_sysfb_modeset_test (1 subtest) ============
[22:17:23] ============ drm_test_sysfb_build_fourcc_list =============
[22:17:23] [PASSED] no native formats
[22:17:23] [PASSED] XRGB8888 as native format
[22:17:23] [PASSED] remove duplicates
[22:17:23] [PASSED] convert alpha formats
[22:17:23] [PASSED] random formats
[22:17:23] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[22:17:23] ============= [PASSED] drm_sysfb_modeset_test ==============
[22:17:23] ================== drm_fixp (2 subtests) ===================
[22:17:23] [PASSED] drm_test_int2fixp
[22:17:23] [PASSED] drm_test_sm2fixp
[22:17:23] ==================== [PASSED] drm_fixp =====================
[22:17:23] ============================================================
[22:17:23] Testing complete. Ran 624 tests: passed: 624
[22:17:24] Elapsed time: 51.647s total, 2.593s configuring, 48.376s building, 0.616s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[22:17:24] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:17:26] 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:17:42] Starting KUnit Kernel (1/1)...
[22:17:42] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:17:42] ================= ttm_device (5 subtests) ==================
[22:17:42] [PASSED] ttm_device_init_basic
[22:17:42] [PASSED] ttm_device_init_multiple
[22:17:42] [PASSED] ttm_device_fini_basic
[22:17:42] [PASSED] ttm_device_init_no_vma_man
[22:17:42] ================== ttm_device_init_pools ==================
[22:17:42] [PASSED] No DMA allocations, no DMA32 required
[22:17:42] [PASSED] DMA allocations, DMA32 required
[22:17:42] [PASSED] No DMA allocations, DMA32 required
[22:17:42] [PASSED] DMA allocations, no DMA32 required
[22:17:42] ============== [PASSED] ttm_device_init_pools ==============
[22:17:42] =================== [PASSED] ttm_device ====================
[22:17:42] ================== ttm_pool (8 subtests) ===================
[22:17:42] ================== ttm_pool_alloc_basic ===================
[22:17:42] [PASSED] One page
[22:17:42] [PASSED] More than one page
[22:17:42] [PASSED] Above the allocation limit
[22:17:42] [PASSED] One page, with coherent DMA mappings enabled
[22:17:42] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:17:42] ============== [PASSED] ttm_pool_alloc_basic ===============
[22:17:42] ============== ttm_pool_alloc_basic_dma_addr ==============
[22:17:42] [PASSED] One page
[22:17:42] [PASSED] More than one page
[22:17:42] [PASSED] Above the allocation limit
[22:17:42] [PASSED] One page, with coherent DMA mappings enabled
[22:17:42] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:17:42] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[22:17:42] [PASSED] ttm_pool_alloc_order_caching_match
[22:17:42] [PASSED] ttm_pool_alloc_caching_mismatch
[22:17:42] [PASSED] ttm_pool_alloc_order_mismatch
[22:17:42] [PASSED] ttm_pool_free_dma_alloc
[22:17:42] [PASSED] ttm_pool_free_no_dma_alloc
[22:17:42] [PASSED] ttm_pool_fini_basic
[22:17:42] ==================== [PASSED] ttm_pool =====================
[22:17:42] ================ ttm_resource (8 subtests) =================
[22:17:42] ================= ttm_resource_init_basic =================
[22:17:42] [PASSED] Init resource in TTM_PL_SYSTEM
[22:17:42] [PASSED] Init resource in TTM_PL_VRAM
[22:17:42] [PASSED] Init resource in a private placement
[22:17:42] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[22:17:42] ============= [PASSED] ttm_resource_init_basic =============
[22:17:42] [PASSED] ttm_resource_init_pinned
[22:17:42] [PASSED] ttm_resource_fini_basic
[22:17:42] [PASSED] ttm_resource_manager_init_basic
[22:17:42] [PASSED] ttm_resource_manager_usage_basic
[22:17:42] [PASSED] ttm_resource_manager_set_used_basic
[22:17:42] [PASSED] ttm_sys_man_alloc_basic
[22:17:42] [PASSED] ttm_sys_man_free_basic
[22:17:42] ================== [PASSED] ttm_resource ===================
[22:17:42] =================== ttm_tt (15 subtests) ===================
[22:17:42] ==================== ttm_tt_init_basic ====================
[22:17:42] [PASSED] Page-aligned size
[22:17:42] [PASSED] Extra pages requested
[22:17:42] ================ [PASSED] ttm_tt_init_basic ================
[22:17:42] [PASSED] ttm_tt_init_misaligned
[22:17:42] [PASSED] ttm_tt_fini_basic
[22:17:42] [PASSED] ttm_tt_fini_sg
[22:17:42] [PASSED] ttm_tt_fini_shmem
[22:17:42] [PASSED] ttm_tt_create_basic
[22:17:42] [PASSED] ttm_tt_create_invalid_bo_type
[22:17:42] [PASSED] ttm_tt_create_ttm_exists
[22:17:42] [PASSED] ttm_tt_create_failed
[22:17:42] [PASSED] ttm_tt_destroy_basic
[22:17:42] [PASSED] ttm_tt_populate_null_ttm
[22:17:42] [PASSED] ttm_tt_populate_populated_ttm
[22:17:42] [PASSED] ttm_tt_unpopulate_basic
[22:17:42] [PASSED] ttm_tt_unpopulate_empty_ttm
[22:17:42] [PASSED] ttm_tt_swapin_basic
[22:17:42] ===================== [PASSED] ttm_tt ======================
[22:17:42] =================== ttm_bo (14 subtests) ===================
[22:17:42] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[22:17:42] [PASSED] Cannot be interrupted and sleeps
[22:17:42] [PASSED] Cannot be interrupted, locks straight away
[22:17:42] [PASSED] Can be interrupted, sleeps
[22:17:42] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[22:17:42] [PASSED] ttm_bo_reserve_locked_no_sleep
[22:17:42] [PASSED] ttm_bo_reserve_no_wait_ticket
[22:17:42] [PASSED] ttm_bo_reserve_double_resv
[22:17:42] [PASSED] ttm_bo_reserve_interrupted
[22:17:42] [PASSED] ttm_bo_reserve_deadlock
[22:17:42] [PASSED] ttm_bo_unreserve_basic
[22:17:42] [PASSED] ttm_bo_unreserve_pinned
[22:17:42] [PASSED] ttm_bo_unreserve_bulk
[22:17:42] [PASSED] ttm_bo_fini_basic
[22:17:42] [PASSED] ttm_bo_fini_shared_resv
[22:17:42] [PASSED] ttm_bo_pin_basic
[22:17:42] [PASSED] ttm_bo_pin_unpin_resource
[22:17:42] [PASSED] ttm_bo_multiple_pin_one_unpin
[22:17:42] ===================== [PASSED] ttm_bo ======================
[22:17:42] ============== ttm_bo_validate (21 subtests) ===============
[22:17:42] ============== ttm_bo_init_reserved_sys_man ===============
[22:17:42] [PASSED] Buffer object for userspace
[22:17:42] [PASSED] Kernel buffer object
[22:17:42] [PASSED] Shared buffer object
[22:17:42] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[22:17:42] ============== ttm_bo_init_reserved_mock_man ==============
[22:17:42] [PASSED] Buffer object for userspace
[22:17:42] [PASSED] Kernel buffer object
[22:17:42] [PASSED] Shared buffer object
[22:17:42] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[22:17:42] [PASSED] ttm_bo_init_reserved_resv
[22:17:42] ================== ttm_bo_validate_basic ==================
[22:17:42] [PASSED] Buffer object for userspace
[22:17:42] [PASSED] Kernel buffer object
[22:17:42] [PASSED] Shared buffer object
[22:17:42] ============== [PASSED] ttm_bo_validate_basic ==============
[22:17:42] [PASSED] ttm_bo_validate_invalid_placement
[22:17:42] ============= ttm_bo_validate_same_placement ==============
[22:17:42] [PASSED] System manager
[22:17:42] [PASSED] VRAM manager
[22:17:42] ========= [PASSED] ttm_bo_validate_same_placement ==========
[22:17:42] [PASSED] ttm_bo_validate_failed_alloc
[22:17:42] [PASSED] ttm_bo_validate_pinned
[22:17:42] [PASSED] ttm_bo_validate_busy_placement
[22:17:42] ================ ttm_bo_validate_multihop =================
[22:17:42] [PASSED] Buffer object for userspace
[22:17:42] [PASSED] Kernel buffer object
[22:17:42] [PASSED] Shared buffer object
[22:17:42] ============ [PASSED] ttm_bo_validate_multihop =============
[22:17:42] ========== ttm_bo_validate_no_placement_signaled ==========
[22:17:42] [PASSED] Buffer object in system domain, no page vector
[22:17:42] [PASSED] Buffer object in system domain with an existing page vector
[22:17:42] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[22:17:42] ======== ttm_bo_validate_no_placement_not_signaled ========
[22:17:42] [PASSED] Buffer object for userspace
[22:17:42] [PASSED] Kernel buffer object
[22:17:42] [PASSED] Shared buffer object
[22:17:42] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[22:17:42] [PASSED] ttm_bo_validate_move_fence_signaled
[22:17:42] ========= ttm_bo_validate_move_fence_not_signaled =========
[22:17:42] [PASSED] Waits for GPU
[22:17:42] [PASSED] Tries to lock straight away
[22:17:42] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[22:17:42] [PASSED] ttm_bo_validate_happy_evict
[22:17:42] [PASSED] ttm_bo_validate_all_pinned_evict
[22:17:42] [PASSED] ttm_bo_validate_allowed_only_evict
[22:17:42] [PASSED] ttm_bo_validate_deleted_evict
[22:17:42] [PASSED] ttm_bo_validate_busy_domain_evict
[22:17:42] [PASSED] ttm_bo_validate_evict_gutting
[22:17:42] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[22:17:42] ================= [PASSED] ttm_bo_validate =================
[22:17:42] ============================================================
[22:17:42] Testing complete. Ran 101 tests: passed: 101
[22:17:42] Elapsed time: 18.731s total, 2.499s configuring, 15.956s building, 0.263s 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 drm/xe/guc: Prevent compiler read/write optimization breaks
2025-12-18 21:29 [PATCH v2 0/4] drm/xe/guc: Prevent compiler read/write optimization breaks Jonathan Cavitt
` (5 preceding siblings ...)
2025-12-18 22:17 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-12-18 23:02 ` Patchwork
2025-12-20 0:24 ` ✗ Xe.CI.Full: failure " Patchwork
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-12-18 23:02 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1964 bytes --]
== Series Details ==
Series: drm/xe/guc: Prevent compiler read/write optimization breaks
URL : https://patchwork.freedesktop.org/series/159246/
State : success
== Summary ==
CI Bug Log - changes from xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4_BAT -> xe-pw-159246v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-159246v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#6519])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/bat-dg2-oem2/igt@xe_waitfence@engine.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/bat-dg2-oem2/igt@xe_waitfence@engine.html
#### Possible fixes ####
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [FAIL][3] ([Intel XE#6520]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* Linux: xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4 -> xe-pw-159246v1
IGT_8674: f38f4d8e9c65aff45ac807e646d06e38bc3193a2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4: c25fd3953a459143758264a6c4dab32107bb48c4
xe-pw-159246v1: 159246v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/index.html
[-- Attachment #2: Type: text/html, Size: 2551 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread* ✗ Xe.CI.Full: failure for drm/xe/guc: Prevent compiler read/write optimization breaks
2025-12-18 21:29 [PATCH v2 0/4] drm/xe/guc: Prevent compiler read/write optimization breaks Jonathan Cavitt
` (6 preceding siblings ...)
2025-12-18 23:02 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-12-20 0:24 ` Patchwork
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-12-20 0:24 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 71153 bytes --]
== Series Details ==
Series: drm/xe/guc: Prevent compiler read/write optimization breaks
URL : https://patchwork.freedesktop.org/series/159246/
State : failure
== Summary ==
CI Bug Log - changes from xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4_FULL -> xe-pw-159246v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-159246v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-159246v1_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-159246v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3:
- shard-bmg: [PASS][1] -> [SKIP][2] +5 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-10/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-9/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-bmg: NOTRUN -> [INCOMPLETE][3] +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-10/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pmu@gt-frequency:
- shard-lnl: [PASS][4] -> [FAIL][5] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-lnl-1/igt@xe_pmu@gt-frequency.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-lnl-4/igt@xe_pmu@gt-frequency.html
Known issues
------------
Here are the changes found in xe-pw-159246v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- shard-bmg: [PASS][6] -> [SKIP][7] ([Intel XE#2134])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@fbdev@info.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@fbdev@info.html
* igt@fbdev@unaligned-write:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2134]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@fbdev@unaligned-write.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-10/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#1178])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2291]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2244])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2316]) +4 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#6703]) +335 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [PASS][20] -> [FAIL][21] ([Intel XE#301] / [Intel XE#3149])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#301]) +2 other tests fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2293]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#4141])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2312]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2311])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2313]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2350])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-10/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-bmg: [PASS][30] -> [ABORT][31] ([Intel XE#6740]) +1 other test abort
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_hdr@bpc-switch-suspend.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#6901])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#6886]) +15 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2392])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-10/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@i2c:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6693])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#6693])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#1406] / [Intel XE#1489])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@psr-basic:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1406] / [Intel XE#6703]) +8 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr2-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_psr@psr2-sprite-render.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2168])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_vrr@lobf.html
* igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4837] / [Intel XE#6665])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-10/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2322])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#6557] / [Intel XE#6703]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html
* igt@xe_exec_multi_queue@two-queues-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#6874])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-priority-smem.html
* igt@xe_exec_system_allocator@once-mmap-race-nomemset:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#6557] / [Intel XE#6703]) +4 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html
* igt@xe_exec_system_allocator@threads-many-large-new-nomemset:
- shard-bmg: NOTRUN -> [INCOMPLETE][48] ([Intel XE#6480])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-large-new-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#4943]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge.html
* igt@xe_exec_system_allocator@twice-large-malloc-nomemset:
- shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#6703]) +340 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@xe_exec_system_allocator@twice-large-malloc-nomemset.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_exec_system_allocator@twice-large-malloc-nomemset.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2457])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@xe_module_load@force-load.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#5937]) +1 other test fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
#### Possible fixes ####
* igt@core_setmaster@master-drop-set-root:
- shard-bmg: [FAIL][54] ([Intel XE#6910]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@core_setmaster@master-drop-set-root.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@core_setmaster@master-drop-set-root.html
* igt@fbdev@nullptr:
- shard-bmg: [SKIP][56] ([Intel XE#2134]) -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@fbdev@nullptr.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@fbdev@nullptr.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-bmg: [INCOMPLETE][58] ([Intel XE#2705] / [Intel XE#6766]) -> [PASS][59] +1 other test pass
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_cursor_edge_walk@256x256-right-edge:
- shard-bmg: [FAIL][60] -> [PASS][61] +1 other test pass
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-right-edge.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-8/igt@kms_cursor_edge_walk@256x256-right-edge.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-bmg: [SKIP][62] ([Intel XE#2291]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][64] ([Intel XE#301]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2:
- shard-bmg: [ABORT][66] ([Intel XE#6740]) -> [PASS][67] +2 other tests pass
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-1/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2.html
* igt@kms_pipe_crc_basic@disable-crc-after-crtc:
- shard-bmg: [SKIP][68] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][69] +6 other tests pass
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html
* igt@kms_pm_rpm@universal-planes:
- shard-bmg: [SKIP][70] ([Intel XE#6693]) -> [PASS][71] +1 other test pass
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_pm_rpm@universal-planes.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_pm_rpm@universal-planes.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][72] ([Intel XE#6321]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [SKIP][74] ([Intel XE#6703]) -> [PASS][75] +497 other tests pass
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_system_allocator@many-stride-malloc-prefetch:
- shard-bmg: [WARN][76] ([Intel XE#5786]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [FAIL][78] ([Intel XE#5625]) -> [PASS][79]
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [SKIP][80] ([Intel XE#2229]) -> [PASS][81] +1 other test pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_live_ktest@xe_bo.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@xe_live_ktest@xe_bo.html
* igt@xe_module_load@reload:
- shard-bmg: [FAIL][82] ([Intel XE#6913]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_module_load@reload.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@xe_module_load@reload.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0:
- shard-lnl: [FAIL][84] ([Intel XE#6251]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-lnl-1/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: [SKIP][86] ([Intel XE#2233]) -> [SKIP][87] ([Intel XE#6703])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: [SKIP][88] ([Intel XE#2327]) -> [SKIP][89] ([Intel XE#6703])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: [SKIP][90] ([Intel XE#6703]) -> [SKIP][91] ([Intel XE#2327]) +6 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-bmg: [SKIP][92] ([Intel XE#6703]) -> [SKIP][93] ([Intel XE#1124]) +6 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-bmg: [SKIP][94] ([Intel XE#1124]) -> [SKIP][95] ([Intel XE#6703]) +5 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: [SKIP][96] ([Intel XE#6703]) -> [SKIP][97] ([Intel XE#610])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: [SKIP][98] ([Intel XE#6703]) -> [SKIP][99] ([Intel XE#607])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: [SKIP][100] ([Intel XE#367]) -> [SKIP][101] ([Intel XE#6703]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-bmg: [SKIP][102] ([Intel XE#6703]) -> [SKIP][103] ([Intel XE#367]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: [SKIP][104] ([Intel XE#2887]) -> [SKIP][105] ([Intel XE#6703]) +8 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][106] ([Intel XE#3432]) -> [SKIP][107] ([Intel XE#6703])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: [SKIP][108] ([Intel XE#6703]) -> [SKIP][109] ([Intel XE#2887]) +13 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: [SKIP][110] ([Intel XE#2325]) -> [SKIP][111] ([Intel XE#6703]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_chamelium_color@ctm-blue-to-red.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: [SKIP][112] ([Intel XE#2252]) -> [SKIP][113] ([Intel XE#6703]) +6 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-bmg: [SKIP][114] ([Intel XE#6703]) -> [SKIP][115] ([Intel XE#2252]) +8 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-9/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: [SKIP][116] ([Intel XE#6703]) -> [SKIP][117] ([Intel XE#2341]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_content_protection@content-type-change.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-9/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][118] ([Intel XE#2390]) -> [SKIP][119] ([Intel XE#6703])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_content_protection@dp-mst-type-1.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][120] ([Intel XE#6703]) -> [FAIL][121] ([Intel XE#1178])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_content_protection@srm.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-bmg: [SKIP][122] ([Intel XE#2341]) -> [SKIP][123] ([Intel XE#6703])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_content_protection@type1.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-bmg: [SKIP][124] ([Intel XE#6703]) -> [SKIP][125] ([Intel XE#2320]) +5 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-bmg: [SKIP][126] ([Intel XE#6703]) -> [SKIP][127] ([Intel XE#2321])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_cursor_crc@cursor-random-512x512.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: [SKIP][128] ([Intel XE#2320]) -> [SKIP][129] ([Intel XE#6703]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-256x85.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [SKIP][130] ([Intel XE#2291]) -> [SKIP][131] ([Intel XE#6703])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: [SKIP][132] ([Intel XE#2286]) -> [SKIP][133] ([Intel XE#6703])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: [SKIP][134] ([Intel XE#6703]) -> [SKIP][135] ([Intel XE#4354])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_dp_link_training@uhbr-sst.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: [SKIP][136] ([Intel XE#2244]) -> [SKIP][137] ([Intel XE#6703]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_dsc@dsc-with-bpc-formats.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: [SKIP][138] ([Intel XE#6703]) -> [SKIP][139] ([Intel XE#2244])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_dsc@dsc-with-formats.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: [SKIP][140] ([Intel XE#6703]) -> [SKIP][141] ([Intel XE#776])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_fbcon_fbt@psr.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-9/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: [SKIP][142] ([Intel XE#6703]) -> [SKIP][143] ([Intel XE#1138])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_feature_discovery@display-4x.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: [SKIP][144] ([Intel XE#6703]) -> [SKIP][145] ([Intel XE#2374])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_feature_discovery@psr1.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-bmg: [SKIP][146] ([Intel XE#2316]) -> [SKIP][147] ([Intel XE#6703]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][148] ([Intel XE#301]) -> [FAIL][149] ([Intel XE#301] / [Intel XE#3149])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-bmg: [SKIP][150] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][151] ([Intel XE#2293] / [Intel XE#2380])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: [SKIP][152] ([Intel XE#6703]) -> [SKIP][153] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-bmg: [SKIP][154] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][155] ([Intel XE#6703]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][156] ([Intel XE#2311]) -> [SKIP][157] ([Intel XE#6703]) +10 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][158] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][159] ([Intel XE#2311])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][160] ([Intel XE#2311]) -> [SKIP][161] ([Intel XE#2312]) +7 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][162] ([Intel XE#2312]) -> [SKIP][163] ([Intel XE#6703]) +9 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][164] ([Intel XE#2312]) -> [SKIP][165] ([Intel XE#2311]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][166] ([Intel XE#6703]) -> [SKIP][167] ([Intel XE#4141]) +12 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][168] ([Intel XE#4141]) -> [SKIP][169] ([Intel XE#6703]) +8 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][170] ([Intel XE#4141]) -> [SKIP][171] ([Intel XE#2312]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: [SKIP][172] ([Intel XE#6703]) -> [SKIP][173] ([Intel XE#2352])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][174] ([Intel XE#6703]) -> [SKIP][175] ([Intel XE#2311]) +18 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][176] ([Intel XE#2313]) -> [SKIP][177] ([Intel XE#6703]) +12 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][178] ([Intel XE#2313]) -> [SKIP][179] ([Intel XE#2312]) +5 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-bmg: [SKIP][180] ([Intel XE#6703]) -> [SKIP][181] ([Intel XE#2313]) +25 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: [SKIP][182] ([Intel XE#2352]) -> [SKIP][183] ([Intel XE#6703])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][184] ([Intel XE#2312]) -> [SKIP][185] ([Intel XE#2313])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: [SKIP][186] ([Intel XE#6703]) -> [SKIP][187] ([Intel XE#4298])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: [SKIP][188] ([Intel XE#6703]) -> [SKIP][189] ([Intel XE#6911])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_joiner@basic-ultra-joiner.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: [SKIP][190] ([Intel XE#6703]) -> [SKIP][191] ([Intel XE#2486])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_panel_fitting@legacy.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: [SKIP][192] ([Intel XE#6703]) -> [SKIP][193] ([Intel XE#4329])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][194] ([Intel XE#4596]) -> [SKIP][195] ([Intel XE#6703])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-bmg: [SKIP][196] ([Intel XE#6703]) -> [SKIP][197] ([Intel XE#6886]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: [SKIP][198] ([Intel XE#870]) -> [SKIP][199] ([Intel XE#6703])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_pm_backlight@fade-with-suspend.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: [SKIP][200] ([Intel XE#6693]) -> [SKIP][201] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: [SKIP][202] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][203] ([Intel XE#6693])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: [SKIP][204] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][205] ([Intel XE#1406] / [Intel XE#6703]) +5 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][206] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][207] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: [SKIP][208] ([Intel XE#1406] / [Intel XE#2387]) -> [SKIP][209] ([Intel XE#1406] / [Intel XE#6703])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_psr2_su@page_flip-p010.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-bmg: [SKIP][210] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][211] ([Intel XE#1406] / [Intel XE#6703]) +5 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_psr@fbc-psr2-sprite-render.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-suspend:
- shard-bmg: [SKIP][212] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][213] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +11 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_psr@psr-suspend.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_psr@psr-suspend.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: [SKIP][214] ([Intel XE#6703]) -> [SKIP][215] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_rotation_crc@bad-pixel-format.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: [SKIP][216] ([Intel XE#2330]) -> [SKIP][217] ([Intel XE#6703])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: [SKIP][218] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][219] ([Intel XE#6703]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_sharpness_filter@filter-scaler-downscale:
- shard-bmg: [SKIP][220] ([Intel XE#6703]) -> [SKIP][221] ([Intel XE#6503]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_sharpness_filter@filter-scaler-downscale.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@kms_sharpness_filter@invalid-plane-with-filter:
- shard-bmg: [SKIP][222] ([Intel XE#6503]) -> [SKIP][223] ([Intel XE#6703])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_sharpness_filter@invalid-plane-with-filter.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_sharpness_filter@invalid-plane-with-filter.html
* igt@kms_vrr@flip-dpms:
- shard-bmg: [SKIP][224] ([Intel XE#1499]) -> [SKIP][225] ([Intel XE#6703])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@kms_vrr@flip-dpms.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: [SKIP][226] ([Intel XE#6703]) -> [SKIP][227] ([Intel XE#1499])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@kms_vrr@flip-suspend.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@kms_vrr@flip-suspend.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: [SKIP][228] ([Intel XE#6703]) -> [SKIP][229] ([Intel XE#6599])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_compute@ccs-mode-basic.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-bmg: [SKIP][230] ([Intel XE#6599]) -> [SKIP][231] ([Intel XE#6703])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@xe_compute@ccs-mode-compute-kernel.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_eudebug@basic-exec-queues-enable:
- shard-bmg: [SKIP][232] ([Intel XE#4837]) -> [SKIP][233] ([Intel XE#6703]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@xe_eudebug@basic-exec-queues-enable.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_eudebug@basic-exec-queues-enable.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-bmg: [SKIP][234] ([Intel XE#4837]) -> [SKIP][235] ([Intel XE#6557] / [Intel XE#6703])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_eudebug@vm-bind-clear-faultable:
- shard-bmg: [SKIP][236] ([Intel XE#6703]) -> [SKIP][237] ([Intel XE#4837]) +3 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_eudebug@vm-bind-clear-faultable.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@xe_eudebug@vm-bind-clear-faultable.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: [SKIP][238] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][239] ([Intel XE#6703]) +4 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@xe_eudebug_online@set-breakpoint-faultable.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: [SKIP][240] ([Intel XE#6703]) -> [SKIP][241] ([Intel XE#4837] / [Intel XE#6665]) +5 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_eudebug_online@single-step.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@xe_eudebug_online@single-step.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [SKIP][242] ([Intel XE#6703]) -> [INCOMPLETE][243] ([Intel XE#6321])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-bmg: [SKIP][244] ([Intel XE#6703]) -> [SKIP][245] ([Intel XE#2322]) +5 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: [SKIP][246] ([Intel XE#2322]) -> [SKIP][247] ([Intel XE#6703]) +5 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@xe_exec_basic@multigpu-once-null-rebind.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: [SKIP][248] ([Intel XE#6703]) -> [SKIP][249] ([Intel XE#6874]) +23 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-1/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_exec_multi_queue@one-queue-priority-smem:
- shard-bmg: [SKIP][250] ([Intel XE#6874]) -> [SKIP][251] ([Intel XE#6703]) +16 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@xe_exec_multi_queue@one-queue-priority-smem.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_exec_multi_queue@one-queue-priority-smem.html
* igt@xe_exec_system_allocator@many-64k-mmap-huge:
- shard-bmg: [SKIP][252] ([Intel XE#6703]) -> [SKIP][253] ([Intel XE#5007]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
* igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge:
- shard-bmg: [SKIP][254] ([Intel XE#4943]) -> [SKIP][255] ([Intel XE#6703]) +7 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge.html
* igt@xe_exec_system_allocator@process-many-execqueues-new-busy-nomemset:
- shard-bmg: [SKIP][256] ([Intel XE#6703]) -> [ABORT][257] ([Intel XE#1727] / [Intel XE#3970])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_exec_system_allocator@process-many-execqueues-new-busy-nomemset.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-9/igt@xe_exec_system_allocator@process-many-execqueues-new-busy-nomemset.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-new-huge:
- shard-bmg: [SKIP][258] ([Intel XE#6703]) -> [SKIP][259] ([Intel XE#4943]) +19 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-new-huge.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-9/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-new-huge.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: [SKIP][260] ([Intel XE#6703]) -> [SKIP][261] ([Intel XE#1420])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_pat@pat-index-xehpc.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: [SKIP][262] ([Intel XE#6703]) -> [SKIP][263] ([Intel XE#2236])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_pat@pat-index-xelpg.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: [SKIP][264] ([Intel XE#5694]) -> [SKIP][265] ([Intel XE#6703])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@xe_pm@d3cold-i2c.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: [SKIP][266] ([Intel XE#2284]) -> [SKIP][267] ([Intel XE#6703])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-9/igt@xe_pm@d3cold-multiple-execs.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-bmg: [SKIP][268] ([Intel XE#4733]) -> [SKIP][269] ([Intel XE#6703]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@xe_pxp@display-black-pxp-fb.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: [SKIP][270] ([Intel XE#6703]) -> [SKIP][271] ([Intel XE#4733]) +3 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-config:
- shard-bmg: [SKIP][272] ([Intel XE#944]) -> [SKIP][273] ([Intel XE#6703]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-4/igt@xe_query@multigpu-query-config.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-5/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: [SKIP][274] ([Intel XE#6703]) -> [SKIP][275] ([Intel XE#944])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4/shard-bmg-5/igt@xe_query@multigpu-query-invalid-extension.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/shard-bmg-9/igt@xe_query@multigpu-query-invalid-extension.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6480
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
[Intel XE#6766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6766
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6910
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6913]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6913
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4 -> xe-pw-159246v1
IGT_8674: f38f4d8e9c65aff45ac807e646d06e38bc3193a2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4269-c25fd3953a459143758264a6c4dab32107bb48c4: c25fd3953a459143758264a6c4dab32107bb48c4
xe-pw-159246v1: 159246v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159246v1/index.html
[-- Attachment #2: Type: text/html, Size: 88402 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread