public inbox for intel-xe@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state
@ 2026-03-20  9:29 Imre Deak
  2026-03-20  9:46 ` ✓ CI.KUnit: success for " Patchwork
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Imre Deak @ 2026-03-20  9:29 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Uma Shankar, Ville Syrjälä, stable

Clearing the DP tunnel stream BW in the atomic state involves getting
the tunnel group state, which can fail. Handle the error accordingly.

This fixes at least one issue where drm_dp_tunnel_atomic_set_stream_bw()
failed to get the tunnel group state returning -EDEADLK, which wasn't
handled. This lead to the ctx->contended warn later in modeset_lock()
while taking a WW mutex for another object in the same atomic state, and
thus within the same already contended WW context.

Moving intel_crtc_state_alloc() later would avoid freeing saved_state on
the error path; this stable patch leaves that simplification for a
follow-up.

Cc: Uma Shankar <uma.shankar@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: <stable@vger.kernel.org> # v6.9+
Fixes: a4efae87ecb2 ("drm/i915/dp: Compute DP tunnel BW during encoder state computation")
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 drivers/gpu/drm/i915/display/intel_display.c  |  8 +++++++-
 .../gpu/drm/i915/display/intel_dp_tunnel.c    | 20 +++++++++++++------
 .../gpu/drm/i915/display/intel_dp_tunnel.h    | 11 ++++++----
 3 files changed, 28 insertions(+), 11 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index ee501009a251f..882db77c0bbcd 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -4640,6 +4640,7 @@ intel_crtc_prepare_cleared_state(struct intel_atomic_state *state,
 	struct intel_crtc_state *crtc_state =
 		intel_atomic_get_new_crtc_state(state, crtc);
 	struct intel_crtc_state *saved_state;
+	int err;
 
 	saved_state = intel_crtc_state_alloc(crtc);
 	if (!saved_state)
@@ -4648,7 +4649,12 @@ intel_crtc_prepare_cleared_state(struct intel_atomic_state *state,
 	/* free the old crtc_state->hw members */
 	intel_crtc_free_hw_state(crtc_state);
 
-	intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
+	err = intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
+	if (err) {
+		kfree(saved_state);
+
+		return err;
+	}
 
 	/* FIXME: before the switch to atomic started, a new pipe_config was
 	 * kzalloc'd. Code that depends on any field being zero should be
diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
index 1fd1ac8d556d8..7363c98172971 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
@@ -659,19 +659,27 @@ int intel_dp_tunnel_atomic_compute_stream_bw(struct intel_atomic_state *state,
  *
  * Clear any DP tunnel stream BW requirement set by
  * intel_dp_tunnel_atomic_compute_stream_bw().
+ *
+ * Returns 0 in case of success, a negative error code otherwise.
  */
-void intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
-					    struct intel_crtc_state *crtc_state)
+int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
+					   struct intel_crtc_state *crtc_state)
 {
 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
+	int err;
 
 	if (!crtc_state->dp_tunnel_ref.tunnel)
-		return;
+		return 0;
+
+	err = drm_dp_tunnel_atomic_set_stream_bw(&state->base,
+						 crtc_state->dp_tunnel_ref.tunnel,
+						 crtc->pipe, 0);
+	if (err)
+		return err;
 
-	drm_dp_tunnel_atomic_set_stream_bw(&state->base,
-					   crtc_state->dp_tunnel_ref.tunnel,
-					   crtc->pipe, 0);
 	drm_dp_tunnel_ref_put(&crtc_state->dp_tunnel_ref);
+
+	return 0;
 }
 
 /**
diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
index 7f0f720e8dcad..10ab9eebcef69 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
+++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
@@ -40,8 +40,8 @@ int intel_dp_tunnel_atomic_compute_stream_bw(struct intel_atomic_state *state,
 					     struct intel_dp *intel_dp,
 					     const struct intel_connector *connector,
 					     struct intel_crtc_state *crtc_state);
-void intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
-					    struct intel_crtc_state *crtc_state);
+int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
+					   struct intel_crtc_state *crtc_state);
 
 int intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state *state,
 					      struct intel_crtc *crtc);
@@ -88,9 +88,12 @@ intel_dp_tunnel_atomic_compute_stream_bw(struct intel_atomic_state *state,
 	return 0;
 }
 
-static inline void
+static inline int
 intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
-				       struct intel_crtc_state *crtc_state) {}
+				       struct intel_crtc_state *crtc_state)
+{
+	return 0;
+}
 
 static inline int
 intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state *state,
-- 
2.49.1


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

* ✓ CI.KUnit: success for drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state
  2026-03-20  9:29 [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state Imre Deak
@ 2026-03-20  9:46 ` Patchwork
  2026-03-20 10:20 ` [PATCH] " Michał Grzelak
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-03-20  9:46 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-xe

== Series Details ==

Series: drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state
URL   : https://patchwork.freedesktop.org/series/163572/
State : success

== Summary ==

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

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

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

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



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

* Re: [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state
  2026-03-20  9:29 [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state Imre Deak
  2026-03-20  9:46 ` ✓ CI.KUnit: success for " Patchwork
@ 2026-03-20 10:20 ` Michał Grzelak
  2026-03-20 10:38   ` Imre Deak
  2026-03-20 11:19   ` Jani Nikula
  2026-03-20 10:33 ` ✓ Xe.CI.BAT: success for " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 10+ messages in thread
From: Michał Grzelak @ 2026-03-20 10:20 UTC (permalink / raw)
  To: Imre Deak
  Cc: intel-gfx, intel-xe, Uma Shankar, Ville Syrjälä, stable

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

On Fri, 20 Mar 2026, Imre Deak wrote:
> Clearing the DP tunnel stream BW in the atomic state involves getting
> the tunnel group state, which can fail. Handle the error accordingly.
>
> This fixes at least one issue where drm_dp_tunnel_atomic_set_stream_bw()
> failed to get the tunnel group state returning -EDEADLK, which wasn't
> handled. This lead to the ctx->contended warn later in modeset_lock()
> while taking a WW mutex for another object in the same atomic state, and
> thus within the same already contended WW context.
>
> Moving intel_crtc_state_alloc() later would avoid freeing saved_state on
> the error path; this stable patch leaves that simplification for a
> follow-up.
>
> Cc: Uma Shankar <uma.shankar@intel.com>
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Cc: <stable@vger.kernel.org> # v6.9+
> Fixes: a4efae87ecb2 ("drm/i915/dp: Compute DP tunnel BW during encoder state computation")
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display.c  |  8 +++++++-
> .../gpu/drm/i915/display/intel_dp_tunnel.c    | 20 +++++++++++++------
> .../gpu/drm/i915/display/intel_dp_tunnel.h    | 11 ++++++----
> 3 files changed, 28 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> index ee501009a251f..882db77c0bbcd 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -4640,6 +4640,7 @@ intel_crtc_prepare_cleared_state(struct intel_atomic_state *state,
> 	struct intel_crtc_state *crtc_state =
> 		intel_atomic_get_new_crtc_state(state, crtc);
> 	struct intel_crtc_state *saved_state;
> +	int err;
>
> 	saved_state = intel_crtc_state_alloc(crtc);
> 	if (!saved_state)
> @@ -4648,7 +4649,12 @@ intel_crtc_prepare_cleared_state(struct intel_atomic_state *state,
> 	/* free the old crtc_state->hw members */
> 	intel_crtc_free_hw_state(crtc_state);
>
> -	intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
> +	err = intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
> +	if (err) {
> +		kfree(saved_state);
> +

I am unsure if the blank line above is neccessary, but I might be also
missing style guidelines. Otherwise looks good to me.

Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>

BR,
Michał

> +		return err;
> +	}
>
> 	/* FIXME: before the switch to atomic started, a new pipe_config was
> 	 * kzalloc'd. Code that depends on any field being zero should be
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> index 1fd1ac8d556d8..7363c98172971 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> @@ -659,19 +659,27 @@ int intel_dp_tunnel_atomic_compute_stream_bw(struct intel_atomic_state *state,
>  *
>  * Clear any DP tunnel stream BW requirement set by
>  * intel_dp_tunnel_atomic_compute_stream_bw().
> + *
> + * Returns 0 in case of success, a negative error code otherwise.
>  */
> -void intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> -					    struct intel_crtc_state *crtc_state)
> +int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> +					   struct intel_crtc_state *crtc_state)
> {
> 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
> +	int err;
>
> 	if (!crtc_state->dp_tunnel_ref.tunnel)
> -		return;
> +		return 0;
> +
> +	err = drm_dp_tunnel_atomic_set_stream_bw(&state->base,
> +						 crtc_state->dp_tunnel_ref.tunnel,
> +						 crtc->pipe, 0);
> +	if (err)
> +		return err;
>
> -	drm_dp_tunnel_atomic_set_stream_bw(&state->base,
> -					   crtc_state->dp_tunnel_ref.tunnel,
> -					   crtc->pipe, 0);
> 	drm_dp_tunnel_ref_put(&crtc_state->dp_tunnel_ref);
> +
> +	return 0;
> }
>
> /**
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> index 7f0f720e8dcad..10ab9eebcef69 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> @@ -40,8 +40,8 @@ int intel_dp_tunnel_atomic_compute_stream_bw(struct intel_atomic_state *state,
> 					     struct intel_dp *intel_dp,
> 					     const struct intel_connector *connector,
> 					     struct intel_crtc_state *crtc_state);
> -void intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> -					    struct intel_crtc_state *crtc_state);
> +int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> +					   struct intel_crtc_state *crtc_state);
>
> int intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state *state,
> 					      struct intel_crtc *crtc);
> @@ -88,9 +88,12 @@ intel_dp_tunnel_atomic_compute_stream_bw(struct intel_atomic_state *state,
> 	return 0;
> }
>
> -static inline void
> +static inline int
> intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> -				       struct intel_crtc_state *crtc_state) {}
> +				       struct intel_crtc_state *crtc_state)
> +{
> +	return 0;
> +}
>
> static inline int
> intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state *state,
> -- 
> 2.49.1
>
>

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

* ✓ Xe.CI.BAT: success for drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state
  2026-03-20  9:29 [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state Imre Deak
  2026-03-20  9:46 ` ✓ CI.KUnit: success for " Patchwork
  2026-03-20 10:20 ` [PATCH] " Michał Grzelak
@ 2026-03-20 10:33 ` Patchwork
  2026-03-20 11:42 ` [PATCH] " Shankar, Uma
  2026-03-21  7:09 ` ✗ Xe.CI.FULL: failure for " Patchwork
  4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-03-20 10:33 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state
URL   : https://patchwork.freedesktop.org/series/163572/
State : success

== Summary ==

CI Bug Log - changes from xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a_BAT -> xe-pw-163572v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

  Here are the changes found in xe-pw-163572v1_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-bmg-2:          [PASS][1] -> [ABORT][2] ([Intel XE#7249] / [Intel XE#7578])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html

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


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

  * IGT: IGT_8811 -> IGT_8814
  * Linux: xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a -> xe-pw-163572v1

  IGT_8811: cc3169e72592a56b806ce54a87060519151ad5fe @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8814: 8814
  xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a: 4ae9f18564e78a5447be68aa1e9232a4f2c37b5a
  xe-pw-163572v1: 163572v1

== Logs ==

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

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

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

* Re: [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state
  2026-03-20 10:20 ` [PATCH] " Michał Grzelak
@ 2026-03-20 10:38   ` Imre Deak
  2026-03-20 11:19   ` Jani Nikula
  1 sibling, 0 replies; 10+ messages in thread
From: Imre Deak @ 2026-03-20 10:38 UTC (permalink / raw)
  To: Michał Grzelak
  Cc: intel-gfx, intel-xe, Uma Shankar, Ville Syrjälä, stable

On Fri, Mar 20, 2026 at 11:20:28AM +0100, Michał Grzelak wrote:
> On Fri, 20 Mar 2026, Imre Deak wrote:
> > Clearing the DP tunnel stream BW in the atomic state involves getting
> > the tunnel group state, which can fail. Handle the error accordingly.
> > 
> > This fixes at least one issue where drm_dp_tunnel_atomic_set_stream_bw()
> > failed to get the tunnel group state returning -EDEADLK, which wasn't
> > handled. This lead to the ctx->contended warn later in modeset_lock()
> > while taking a WW mutex for another object in the same atomic state, and
> > thus within the same already contended WW context.
> > 
> > Moving intel_crtc_state_alloc() later would avoid freeing saved_state on
> > the error path; this stable patch leaves that simplification for a
> > follow-up.
> > 
> > Cc: Uma Shankar <uma.shankar@intel.com>
> > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > Cc: <stable@vger.kernel.org> # v6.9+
> > Fixes: a4efae87ecb2 ("drm/i915/dp: Compute DP tunnel BW during encoder state computation")
> > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_display.c  |  8 +++++++-
> > .../gpu/drm/i915/display/intel_dp_tunnel.c    | 20 +++++++++++++------
> > .../gpu/drm/i915/display/intel_dp_tunnel.h    | 11 ++++++----
> > 3 files changed, 28 insertions(+), 11 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> > index ee501009a251f..882db77c0bbcd 100644
> > --- a/drivers/gpu/drm/i915/display/intel_display.c
> > +++ b/drivers/gpu/drm/i915/display/intel_display.c
> > @@ -4640,6 +4640,7 @@ intel_crtc_prepare_cleared_state(struct intel_atomic_state *state,
> > 	struct intel_crtc_state *crtc_state =
> > 		intel_atomic_get_new_crtc_state(state, crtc);
> > 	struct intel_crtc_state *saved_state;
> > +	int err;
> > 
> > 	saved_state = intel_crtc_state_alloc(crtc);
> > 	if (!saved_state)
> > @@ -4648,7 +4649,12 @@ intel_crtc_prepare_cleared_state(struct intel_atomic_state *state,
> > 	/* free the old crtc_state->hw members */
> > 	intel_crtc_free_hw_state(crtc_state);
> > 
> > -	intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
> > +	err = intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
> > +	if (err) {
> > +		kfree(saved_state);
> > +
> 
> I am unsure if the blank line above is neccessary,

Yes, it's used for readability before returns.

> but I might be also
> missing style guidelines. Otherwise looks good to me.
> 
> Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
> 
> BR,
> Michał
> 
> > +		return err;
> > +	}
> > 
> > 	/* FIXME: before the switch to atomic started, a new pipe_config was
> > 	 * kzalloc'd. Code that depends on any field being zero should be
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> > index 1fd1ac8d556d8..7363c98172971 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> > @@ -659,19 +659,27 @@ int intel_dp_tunnel_atomic_compute_stream_bw(struct intel_atomic_state *state,
> >  *
> >  * Clear any DP tunnel stream BW requirement set by
> >  * intel_dp_tunnel_atomic_compute_stream_bw().
> > + *
> > + * Returns 0 in case of success, a negative error code otherwise.
> >  */
> > -void intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > -					    struct intel_crtc_state *crtc_state)
> > +int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > +					   struct intel_crtc_state *crtc_state)
> > {
> > 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
> > +	int err;
> > 
> > 	if (!crtc_state->dp_tunnel_ref.tunnel)
> > -		return;
> > +		return 0;
> > +
> > +	err = drm_dp_tunnel_atomic_set_stream_bw(&state->base,
> > +						 crtc_state->dp_tunnel_ref.tunnel,
> > +						 crtc->pipe, 0);
> > +	if (err)
> > +		return err;
> > 
> > -	drm_dp_tunnel_atomic_set_stream_bw(&state->base,
> > -					   crtc_state->dp_tunnel_ref.tunnel,
> > -					   crtc->pipe, 0);
> > 	drm_dp_tunnel_ref_put(&crtc_state->dp_tunnel_ref);
> > +
> > +	return 0;
> > }
> > 
> > /**
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> > index 7f0f720e8dcad..10ab9eebcef69 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> > +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> > @@ -40,8 +40,8 @@ int intel_dp_tunnel_atomic_compute_stream_bw(struct intel_atomic_state *state,
> > 					     struct intel_dp *intel_dp,
> > 					     const struct intel_connector *connector,
> > 					     struct intel_crtc_state *crtc_state);
> > -void intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > -					    struct intel_crtc_state *crtc_state);
> > +int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > +					   struct intel_crtc_state *crtc_state);
> > 
> > int intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state *state,
> > 					      struct intel_crtc *crtc);
> > @@ -88,9 +88,12 @@ intel_dp_tunnel_atomic_compute_stream_bw(struct intel_atomic_state *state,
> > 	return 0;
> > }
> > 
> > -static inline void
> > +static inline int
> > intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > -				       struct intel_crtc_state *crtc_state) {}
> > +				       struct intel_crtc_state *crtc_state)
> > +{
> > +	return 0;
> > +}
> > 
> > static inline int
> > intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state *state,
> > -- 
> > 2.49.1
> > 
> > 


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

* Re: [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state
  2026-03-20 10:20 ` [PATCH] " Michał Grzelak
  2026-03-20 10:38   ` Imre Deak
@ 2026-03-20 11:19   ` Jani Nikula
  1 sibling, 0 replies; 10+ messages in thread
From: Jani Nikula @ 2026-03-20 11:19 UTC (permalink / raw)
  To: Michał Grzelak, Imre Deak
  Cc: intel-gfx, intel-xe, Uma Shankar, Ville Syrjälä, stable

On Fri, 20 Mar 2026, Michał Grzelak <michal.grzelak@intel.com> wrote:
> On Fri, 20 Mar 2026, Imre Deak wrote:
>> Clearing the DP tunnel stream BW in the atomic state involves getting
>> the tunnel group state, which can fail. Handle the error accordingly.
>>
>> This fixes at least one issue where drm_dp_tunnel_atomic_set_stream_bw()
>> failed to get the tunnel group state returning -EDEADLK, which wasn't
>> handled. This lead to the ctx->contended warn later in modeset_lock()
>> while taking a WW mutex for another object in the same atomic state, and
>> thus within the same already contended WW context.
>>
>> Moving intel_crtc_state_alloc() later would avoid freeing saved_state on
>> the error path; this stable patch leaves that simplification for a
>> follow-up.
>>
>> Cc: Uma Shankar <uma.shankar@intel.com>
>> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
>> Cc: <stable@vger.kernel.org> # v6.9+
>> Fixes: a4efae87ecb2 ("drm/i915/dp: Compute DP tunnel BW during encoder state computation")
>> Signed-off-by: Imre Deak <imre.deak@intel.com>
>> ---
>> drivers/gpu/drm/i915/display/intel_display.c  |  8 +++++++-
>> .../gpu/drm/i915/display/intel_dp_tunnel.c    | 20 +++++++++++++------
>> .../gpu/drm/i915/display/intel_dp_tunnel.h    | 11 ++++++----
>> 3 files changed, 28 insertions(+), 11 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
>> index ee501009a251f..882db77c0bbcd 100644
>> --- a/drivers/gpu/drm/i915/display/intel_display.c
>> +++ b/drivers/gpu/drm/i915/display/intel_display.c
>> @@ -4640,6 +4640,7 @@ intel_crtc_prepare_cleared_state(struct intel_atomic_state *state,
>> 	struct intel_crtc_state *crtc_state =
>> 		intel_atomic_get_new_crtc_state(state, crtc);
>> 	struct intel_crtc_state *saved_state;
>> +	int err;
>>
>> 	saved_state = intel_crtc_state_alloc(crtc);
>> 	if (!saved_state)
>> @@ -4648,7 +4649,12 @@ intel_crtc_prepare_cleared_state(struct intel_atomic_state *state,
>> 	/* free the old crtc_state->hw members */
>> 	intel_crtc_free_hw_state(crtc_state);
>>
>> -	intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
>> +	err = intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
>> +	if (err) {
>> +		kfree(saved_state);
>> +
>
> I am unsure if the blank line above is neccessary, but I might be also
> missing style guidelines. Otherwise looks good to me.

It's a common convention to have a blank line before return.

BR,
Jani.

>
> Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
>
> BR,
> Michał
>
>> +		return err;
>> +	}
>>
>> 	/* FIXME: before the switch to atomic started, a new pipe_config was
>> 	 * kzalloc'd. Code that depends on any field being zero should be
>> diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
>> index 1fd1ac8d556d8..7363c98172971 100644
>> --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
>> +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
>> @@ -659,19 +659,27 @@ int intel_dp_tunnel_atomic_compute_stream_bw(struct intel_atomic_state *state,
>>  *
>>  * Clear any DP tunnel stream BW requirement set by
>>  * intel_dp_tunnel_atomic_compute_stream_bw().
>> + *
>> + * Returns 0 in case of success, a negative error code otherwise.
>>  */
>> -void intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
>> -					    struct intel_crtc_state *crtc_state)
>> +int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
>> +					   struct intel_crtc_state *crtc_state)
>> {
>> 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
>> +	int err;
>>
>> 	if (!crtc_state->dp_tunnel_ref.tunnel)
>> -		return;
>> +		return 0;
>> +
>> +	err = drm_dp_tunnel_atomic_set_stream_bw(&state->base,
>> +						 crtc_state->dp_tunnel_ref.tunnel,
>> +						 crtc->pipe, 0);
>> +	if (err)
>> +		return err;
>>
>> -	drm_dp_tunnel_atomic_set_stream_bw(&state->base,
>> -					   crtc_state->dp_tunnel_ref.tunnel,
>> -					   crtc->pipe, 0);
>> 	drm_dp_tunnel_ref_put(&crtc_state->dp_tunnel_ref);
>> +
>> +	return 0;
>> }
>>
>> /**
>> diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
>> index 7f0f720e8dcad..10ab9eebcef69 100644
>> --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
>> +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
>> @@ -40,8 +40,8 @@ int intel_dp_tunnel_atomic_compute_stream_bw(struct intel_atomic_state *state,
>> 					     struct intel_dp *intel_dp,
>> 					     const struct intel_connector *connector,
>> 					     struct intel_crtc_state *crtc_state);
>> -void intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
>> -					    struct intel_crtc_state *crtc_state);
>> +int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
>> +					   struct intel_crtc_state *crtc_state);
>>
>> int intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state *state,
>> 					      struct intel_crtc *crtc);
>> @@ -88,9 +88,12 @@ intel_dp_tunnel_atomic_compute_stream_bw(struct intel_atomic_state *state,
>> 	return 0;
>> }
>>
>> -static inline void
>> +static inline int
>> intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
>> -				       struct intel_crtc_state *crtc_state) {}
>> +				       struct intel_crtc_state *crtc_state)
>> +{
>> +	return 0;
>> +}
>>
>> static inline int
>> intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state *state,
>> -- 
>> 2.49.1
>>
>>

-- 
Jani Nikula, Intel

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

* RE: [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state
  2026-03-20  9:29 [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state Imre Deak
                   ` (2 preceding siblings ...)
  2026-03-20 10:33 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-03-20 11:42 ` Shankar, Uma
  2026-03-20 14:55   ` Imre Deak
  2026-03-21  7:09 ` ✗ Xe.CI.FULL: failure for " Patchwork
  4 siblings, 1 reply; 10+ messages in thread
From: Shankar, Uma @ 2026-03-20 11:42 UTC (permalink / raw)
  To: Deak, Imre, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org
  Cc: Ville Syrjälä, stable@vger.kernel.org



> -----Original Message-----
> From: Deak, Imre <imre.deak@intel.com>
> Sent: Friday, March 20, 2026 2:59 PM
> To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
> Cc: Shankar, Uma <uma.shankar@intel.com>; Ville Syrjälä
> <ville.syrjala@linux.intel.com>; stable@vger.kernel.org
> Subject: [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW
> in atomic state
> 
> Clearing the DP tunnel stream BW in the atomic state involves getting the tunnel
> group state, which can fail. Handle the error accordingly.
> 
> This fixes at least one issue where drm_dp_tunnel_atomic_set_stream_bw()
> failed to get the tunnel group state returning -EDEADLK, which wasn't handled.
> This lead to the ctx->contended warn later in modeset_lock() while taking a WW
> mutex for another object in the same atomic state, and thus within the same
> already contended WW context.
> 
> Moving intel_crtc_state_alloc() later would avoid freeing saved_state on the error
> path; this stable patch leaves that simplification for a follow-up.
> 
> Cc: Uma Shankar <uma.shankar@intel.com>
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Cc: <stable@vger.kernel.org> # v6.9+
> Fixes: a4efae87ecb2 ("drm/i915/dp: Compute DP tunnel BW during encoder state
> computation")
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_display.c  |  8 +++++++-
>  .../gpu/drm/i915/display/intel_dp_tunnel.c    | 20 +++++++++++++------
>  .../gpu/drm/i915/display/intel_dp_tunnel.h    | 11 ++++++----
>  3 files changed, 28 insertions(+), 11 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> b/drivers/gpu/drm/i915/display/intel_display.c
> index ee501009a251f..882db77c0bbcd 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -4640,6 +4640,7 @@ intel_crtc_prepare_cleared_state(struct
> intel_atomic_state *state,
>  	struct intel_crtc_state *crtc_state =
>  		intel_atomic_get_new_crtc_state(state, crtc);
>  	struct intel_crtc_state *saved_state;
> +	int err;
> 
>  	saved_state = intel_crtc_state_alloc(crtc);
>  	if (!saved_state)
> @@ -4648,7 +4649,12 @@ intel_crtc_prepare_cleared_state(struct
> intel_atomic_state *state,
>  	/* free the old crtc_state->hw members */
>  	intel_crtc_free_hw_state(crtc_state);
> 
> -	intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
> +	err = intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
> +	if (err) {
> +		kfree(saved_state);
> +
> +		return err;
> +	}
> 
>  	/* FIXME: before the switch to atomic started, a new pipe_config was
>  	 * kzalloc'd. Code that depends on any field being zero should be diff --git
> a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> index 1fd1ac8d556d8..7363c98172971 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> @@ -659,19 +659,27 @@ int intel_dp_tunnel_atomic_compute_stream_bw(struct
> intel_atomic_state *state,
>   *
>   * Clear any DP tunnel stream BW requirement set by
>   * intel_dp_tunnel_atomic_compute_stream_bw().
> + *
> + * Returns 0 in case of success, a negative error code otherwise.
>   */
> -void intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> -					    struct intel_crtc_state *crtc_state)
> +int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> +					   struct intel_crtc_state *crtc_state)
>  {
>  	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
> +	int err;
> 
>  	if (!crtc_state->dp_tunnel_ref.tunnel)
> -		return;
> +		return 0;
> +
> +	err = drm_dp_tunnel_atomic_set_stream_bw(&state->base,
> +						 crtc_state->dp_tunnel_ref.tunnel,
> +						 crtc->pipe, 0);
> +	if (err)
> +		return err;
> 
> -	drm_dp_tunnel_atomic_set_stream_bw(&state->base,
> -					   crtc_state->dp_tunnel_ref.tunnel,
> -					   crtc->pipe, 0);
>  	drm_dp_tunnel_ref_put(&crtc_state->dp_tunnel_ref);

Hi Imre,
Should we not drop reference even in case of failure, is this intentional ?

Regards,
Uma Shankar

> +
> +	return 0;
>  }
> 
>  /**
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> index 7f0f720e8dcad..10ab9eebcef69 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> @@ -40,8 +40,8 @@ int intel_dp_tunnel_atomic_compute_stream_bw(struct
> intel_atomic_state *state,
>  					     struct intel_dp *intel_dp,
>  					     const struct intel_connector
> *connector,
>  					     struct intel_crtc_state *crtc_state); -
> void intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> -					    struct intel_crtc_state *crtc_state);
> +int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> +					   struct intel_crtc_state *crtc_state);
> 
>  int intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state *state,
>  					      struct intel_crtc *crtc);
> @@ -88,9 +88,12 @@ intel_dp_tunnel_atomic_compute_stream_bw(struct
> intel_atomic_state *state,
>  	return 0;
>  }
> 
> -static inline void
> +static inline int
>  intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> -				       struct intel_crtc_state *crtc_state) {}
> +				       struct intel_crtc_state *crtc_state) {
> +	return 0;
> +}
> 
>  static inline int
>  intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state *state,
> --
> 2.49.1


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

* Re: [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state
  2026-03-20 11:42 ` [PATCH] " Shankar, Uma
@ 2026-03-20 14:55   ` Imre Deak
  2026-03-20 22:17     ` Shankar, Uma
  0 siblings, 1 reply; 10+ messages in thread
From: Imre Deak @ 2026-03-20 14:55 UTC (permalink / raw)
  To: Shankar, Uma
  Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
	Ville Syrjälä, stable@vger.kernel.org

On Fri, Mar 20, 2026 at 01:42:58PM +0200, Shankar, Uma wrote:
> 
> 
> > -----Original Message-----
> > From: Deak, Imre <imre.deak@intel.com>
> > Sent: Friday, March 20, 2026 2:59 PM
> > To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
> > Cc: Shankar, Uma <uma.shankar@intel.com>; Ville Syrjälä
> > <ville.syrjala@linux.intel.com>; stable@vger.kernel.org
> > Subject: [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW
> > in atomic state
> > 
> > Clearing the DP tunnel stream BW in the atomic state involves getting the tunnel
> > group state, which can fail. Handle the error accordingly.
> > 
> > This fixes at least one issue where drm_dp_tunnel_atomic_set_stream_bw()
> > failed to get the tunnel group state returning -EDEADLK, which wasn't handled.
> > This lead to the ctx->contended warn later in modeset_lock() while taking a WW
> > mutex for another object in the same atomic state, and thus within the same
> > already contended WW context.
> > 
> > Moving intel_crtc_state_alloc() later would avoid freeing saved_state on the error
> > path; this stable patch leaves that simplification for a follow-up.
> > 
> > Cc: Uma Shankar <uma.shankar@intel.com>
> > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > Cc: <stable@vger.kernel.org> # v6.9+
> > Fixes: a4efae87ecb2 ("drm/i915/dp: Compute DP tunnel BW during encoder state
> > computation")
> > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > ---
> >  drivers/gpu/drm/i915/display/intel_display.c  |  8 +++++++-
> >  .../gpu/drm/i915/display/intel_dp_tunnel.c    | 20 +++++++++++++------
> >  .../gpu/drm/i915/display/intel_dp_tunnel.h    | 11 ++++++----
> >  3 files changed, 28 insertions(+), 11 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> > b/drivers/gpu/drm/i915/display/intel_display.c
> > index ee501009a251f..882db77c0bbcd 100644
> > --- a/drivers/gpu/drm/i915/display/intel_display.c
> > +++ b/drivers/gpu/drm/i915/display/intel_display.c
> > @@ -4640,6 +4640,7 @@ intel_crtc_prepare_cleared_state(struct
> > intel_atomic_state *state,
> >  	struct intel_crtc_state *crtc_state =
> >  		intel_atomic_get_new_crtc_state(state, crtc);
> >  	struct intel_crtc_state *saved_state;
> > +	int err;
> > 
> >  	saved_state = intel_crtc_state_alloc(crtc);
> >  	if (!saved_state)
> > @@ -4648,7 +4649,12 @@ intel_crtc_prepare_cleared_state(struct
> > intel_atomic_state *state,
> >  	/* free the old crtc_state->hw members */
> >  	intel_crtc_free_hw_state(crtc_state);
> > 
> > -	intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
> > +	err = intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
> > +	if (err) {
> > +		kfree(saved_state);
> > +
> > +		return err;
> > +	}
> > 
> >  	/* FIXME: before the switch to atomic started, a new pipe_config was
> >  	 * kzalloc'd. Code that depends on any field being zero should be diff --git
> > a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> > b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> > index 1fd1ac8d556d8..7363c98172971 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> > @@ -659,19 +659,27 @@ int intel_dp_tunnel_atomic_compute_stream_bw(struct
> > intel_atomic_state *state,
> >   *
> >   * Clear any DP tunnel stream BW requirement set by
> >   * intel_dp_tunnel_atomic_compute_stream_bw().
> > + *
> > + * Returns 0 in case of success, a negative error code otherwise.
> >   */
> > -void intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > -					    struct intel_crtc_state *crtc_state)
> > +int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > +					   struct intel_crtc_state *crtc_state)
> >  {
> >  	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
> > +	int err;
> > 
> >  	if (!crtc_state->dp_tunnel_ref.tunnel)
> > -		return;
> > +		return 0;
> > +
> > +	err = drm_dp_tunnel_atomic_set_stream_bw(&state->base,
> > +						 crtc_state->dp_tunnel_ref.tunnel,
> > +						 crtc->pipe, 0);
> > +	if (err)
> > +		return err;
> > 
> > -	drm_dp_tunnel_atomic_set_stream_bw(&state->base,
> > -					   crtc_state->dp_tunnel_ref.tunnel,
> > -					   crtc->pipe, 0);
> >  	drm_dp_tunnel_ref_put(&crtc_state->dp_tunnel_ref);
> 
> Hi Imre,
> Should we not drop reference even in case of failure, is this intentional ?

Yes, the early return in case of an error, preserving the tunnel reference
in the crtc state is intentional. The error here will make the whole
commit fail and the atomic state - within that the crtc state - being
freed. That crtc state freeing will drop this reference, see
intel_crtc_destroy_state().

Aside: it wouldn't cause a functional problem to drop the reference as
you suggest in case of the earlier error either - the related dropping
of the reference in intel_crtc_destroy_state() described above would be
skipped then. But I still think the usual early return - as done in the
patch - in case of an error is the logically correct way.

> 
> Regards,
> Uma Shankar
> 
> > +
> > +	return 0;
> >  }
> > 
> >  /**
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> > b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> > index 7f0f720e8dcad..10ab9eebcef69 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> > +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> > @@ -40,8 +40,8 @@ int intel_dp_tunnel_atomic_compute_stream_bw(struct
> > intel_atomic_state *state,
> >  					     struct intel_dp *intel_dp,
> >  					     const struct intel_connector
> > *connector,
> >  					     struct intel_crtc_state *crtc_state); -
> > void intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > -					    struct intel_crtc_state *crtc_state);
> > +int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > +					   struct intel_crtc_state *crtc_state);
> > 
> >  int intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state *state,
> >  					      struct intel_crtc *crtc);
> > @@ -88,9 +88,12 @@ intel_dp_tunnel_atomic_compute_stream_bw(struct
> > intel_atomic_state *state,
> >  	return 0;
> >  }
> > 
> > -static inline void
> > +static inline int
> >  intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > -				       struct intel_crtc_state *crtc_state) {}
> > +				       struct intel_crtc_state *crtc_state) {
> > +	return 0;
> > +}
> > 
> >  static inline int
> >  intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state *state,
> > --
> > 2.49.1
> 

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

* RE: [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state
  2026-03-20 14:55   ` Imre Deak
@ 2026-03-20 22:17     ` Shankar, Uma
  0 siblings, 0 replies; 10+ messages in thread
From: Shankar, Uma @ 2026-03-20 22:17 UTC (permalink / raw)
  To: Deak, Imre
  Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
	Ville Syrjälä, stable@vger.kernel.org



> -----Original Message-----
> From: Deak, Imre <imre.deak@intel.com>
> Sent: Friday, March 20, 2026 8:26 PM
> To: Shankar, Uma <uma.shankar@intel.com>
> Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org; Ville Syrjälä
> <ville.syrjala@linux.intel.com>; stable@vger.kernel.org
> Subject: Re: [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream
> BW in atomic state
> 
> On Fri, Mar 20, 2026 at 01:42:58PM +0200, Shankar, Uma wrote:
> >
> >
> > > -----Original Message-----
> > > From: Deak, Imre <imre.deak@intel.com>
> > > Sent: Friday, March 20, 2026 2:59 PM
> > > To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
> > > Cc: Shankar, Uma <uma.shankar@intel.com>; Ville Syrjälä
> > > <ville.syrjala@linux.intel.com>; stable@vger.kernel.org
> > > Subject: [PATCH] drm/i915/dp_tunnel: Fix error handling when
> > > clearing stream BW in atomic state
> > >
> > > Clearing the DP tunnel stream BW in the atomic state involves
> > > getting the tunnel group state, which can fail. Handle the error accordingly.
> > >
> > > This fixes at least one issue where
> > > drm_dp_tunnel_atomic_set_stream_bw()
> > > failed to get the tunnel group state returning -EDEADLK, which wasn't handled.
> > > This lead to the ctx->contended warn later in modeset_lock() while
> > > taking a WW mutex for another object in the same atomic state, and
> > > thus within the same already contended WW context.
> > >
> > > Moving intel_crtc_state_alloc() later would avoid freeing
> > > saved_state on the error path; this stable patch leaves that simplification for a
> follow-up.
> > >
> > > Cc: Uma Shankar <uma.shankar@intel.com>
> > > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > > Cc: <stable@vger.kernel.org> # v6.9+
> > > Fixes: a4efae87ecb2 ("drm/i915/dp: Compute DP tunnel BW during
> > > encoder state
> > > computation")
> > > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > > ---
> > >  drivers/gpu/drm/i915/display/intel_display.c  |  8 +++++++-
> > >  .../gpu/drm/i915/display/intel_dp_tunnel.c    | 20 +++++++++++++------
> > >  .../gpu/drm/i915/display/intel_dp_tunnel.h    | 11 ++++++----
> > >  3 files changed, 28 insertions(+), 11 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> > > b/drivers/gpu/drm/i915/display/intel_display.c
> > > index ee501009a251f..882db77c0bbcd 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_display.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_display.c
> > > @@ -4640,6 +4640,7 @@ intel_crtc_prepare_cleared_state(struct
> > > intel_atomic_state *state,
> > >  	struct intel_crtc_state *crtc_state =
> > >  		intel_atomic_get_new_crtc_state(state, crtc);
> > >  	struct intel_crtc_state *saved_state;
> > > +	int err;
> > >
> > >  	saved_state = intel_crtc_state_alloc(crtc);
> > >  	if (!saved_state)
> > > @@ -4648,7 +4649,12 @@ intel_crtc_prepare_cleared_state(struct
> > > intel_atomic_state *state,
> > >  	/* free the old crtc_state->hw members */
> > >  	intel_crtc_free_hw_state(crtc_state);
> > >
> > > -	intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
> > > +	err = intel_dp_tunnel_atomic_clear_stream_bw(state, crtc_state);
> > > +	if (err) {
> > > +		kfree(saved_state);
> > > +
> > > +		return err;
> > > +	}
> > >
> > >  	/* FIXME: before the switch to atomic started, a new pipe_config was
> > >  	 * kzalloc'd. Code that depends on any field being zero should be
> > > diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> > > b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> > > index 1fd1ac8d556d8..7363c98172971 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.c
> > > @@ -659,19 +659,27 @@ int
> > > intel_dp_tunnel_atomic_compute_stream_bw(struct
> > > intel_atomic_state *state,
> > >   *
> > >   * Clear any DP tunnel stream BW requirement set by
> > >   * intel_dp_tunnel_atomic_compute_stream_bw().
> > > + *
> > > + * Returns 0 in case of success, a negative error code otherwise.
> > >   */
> > > -void intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state
> *state,
> > > -					    struct intel_crtc_state *crtc_state)
> > > +int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > > +					   struct intel_crtc_state *crtc_state)
> > >  {
> > >  	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
> > > +	int err;
> > >
> > >  	if (!crtc_state->dp_tunnel_ref.tunnel)
> > > -		return;
> > > +		return 0;
> > > +
> > > +	err = drm_dp_tunnel_atomic_set_stream_bw(&state->base,
> > > +						 crtc_state->dp_tunnel_ref.tunnel,
> > > +						 crtc->pipe, 0);
> > > +	if (err)
> > > +		return err;
> > >
> > > -	drm_dp_tunnel_atomic_set_stream_bw(&state->base,
> > > -					   crtc_state->dp_tunnel_ref.tunnel,
> > > -					   crtc->pipe, 0);
> > >  	drm_dp_tunnel_ref_put(&crtc_state->dp_tunnel_ref);
> >
> > Hi Imre,
> > Should we not drop reference even in case of failure, is this intentional ?
> 
> Yes, the early return in case of an error, preserving the tunnel reference in the
> crtc state is intentional. The error here will make the whole commit fail and the
> atomic state - within that the crtc state - being freed. That crtc state freeing will
> drop this reference, see intel_crtc_destroy_state().
> 
> Aside: it wouldn't cause a functional problem to drop the reference as you suggest
> in case of the earlier error either - the related dropping of the reference in
> intel_crtc_destroy_state() described above would be skipped then. But I still think
> the usual early return - as done in the patch - in case of an error is the logically
> correct way.

Thanks for the explanation Imre, sounds good.

Reviewed-by: Uma Shankar <uma.shankar@intel.com>

> >
> > Regards,
> > Uma Shankar
> >
> > > +
> > > +	return 0;
> > >  }
> > >
> > >  /**
> > > diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> > > b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> > > index 7f0f720e8dcad..10ab9eebcef69 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> > > +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
> > > @@ -40,8 +40,8 @@ int
> > > intel_dp_tunnel_atomic_compute_stream_bw(struct
> > > intel_atomic_state *state,
> > >  					     struct intel_dp *intel_dp,
> > >  					     const struct intel_connector
> *connector,
> > >  					     struct intel_crtc_state *crtc_state); -
> void
> > > intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > > -					    struct intel_crtc_state *crtc_state);
> > > +int intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > > +					   struct intel_crtc_state *crtc_state);
> > >
> > >  int intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state
> *state,
> > >  					      struct intel_crtc *crtc); @@ -88,9
> +88,12 @@
> > > intel_dp_tunnel_atomic_compute_stream_bw(struct
> > > intel_atomic_state *state,
> > >  	return 0;
> > >  }
> > >
> > > -static inline void
> > > +static inline int
> > >  intel_dp_tunnel_atomic_clear_stream_bw(struct intel_atomic_state *state,
> > > -				       struct intel_crtc_state *crtc_state) {}
> > > +				       struct intel_crtc_state *crtc_state) {
> > > +	return 0;
> > > +}
> > >
> > >  static inline int
> > >  intel_dp_tunnel_atomic_add_state_for_crtc(struct intel_atomic_state
> > > *state,
> > > --
> > > 2.49.1
> >

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

* ✗ Xe.CI.FULL: failure for drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state
  2026-03-20  9:29 [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state Imre Deak
                   ` (3 preceding siblings ...)
  2026-03-20 11:42 ` [PATCH] " Shankar, Uma
@ 2026-03-21  7:09 ` Patchwork
  4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-03-21  7:09 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state
URL   : https://patchwork.freedesktop.org/series/163572/
State : failure

== Summary ==

CI Bug Log - changes from xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a_FULL -> xe-pw-163572v1_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@core_getversion@basic:
    - shard-bmg:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@core_getversion@basic.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@core_getversion@basic.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][3] ([Intel XE#7059] / [Intel XE#7085])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html

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

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

  * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#7621])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [PASS][7] -> [SKIP][8] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-3840x2160p:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#367] / [Intel XE#7354]) +4 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html

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

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#3432]) +3 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][13] ([Intel XE#3432])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2887]) +7 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2724] / [Intel XE#7449])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-9/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_edid@dp-edid-read:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2252]) +7 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-read.html

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

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2320]) +3 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2321] / [Intel XE#7355]) +3 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2291])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][21] -> [SKIP][22] ([Intel XE#2291]) +4 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][23] -> [FAIL][24] ([Intel XE#7586])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [PASS][25] -> [SKIP][26] ([Intel XE#3009])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-7/igt@kms_dp_aux_dev.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@kms_dp_aux_dev.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#2244]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-9/igt@kms_dsc@dsc-fractional-bpp.html

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

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

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-bmg:          [PASS][30] -> [SKIP][31] ([Intel XE#2316]) +7 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-10/igt@kms_flip@2x-wf_vblank-ts-check.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#7178] / [Intel XE#7349])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

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

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#4141]) +12 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

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

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#2312]) +7 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#6703]) +35 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2313]) +12 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [PASS][41] -> [SKIP][42] ([Intel XE#1503])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-4/igt@kms_hdr@static-swap.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#6901])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-9/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#6911] / [Intel XE#7378])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-7/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#7283]) +4 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-bmg:          [PASS][46] -> [SKIP][47] ([Intel XE#4596]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-x.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [PASS][48] -> [FAIL][49] ([Intel XE#7340] / [Intel XE#7504])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2499])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@kms_pm_lpsp@kms-lpsp.html

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

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#1489]) +3 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-6/igt@kms_psr@psr-suspend.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#2330] / [Intel XE#5813])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_sharpness_filter@filter-formats:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#6503])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-7/igt@kms_sharpness_filter@filter-formats.html

  * igt@xe_compute@ccs-mode-compute-kernel:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#6599])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-9/igt@xe_compute@ccs-mode-compute-kernel.html

  * igt@xe_eudebug@basic-vm-bind-vm-destroy:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#4837]) +5 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-vm-destroy.html

  * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-8/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [PASS][60] -> [INCOMPLETE][61] ([Intel XE#6321])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2322] / [Intel XE#7372]) +6 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html

  * igt@xe_exec_fault_mode@once-multi-queue-rebind-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#7136]) +4 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-7/igt@xe_exec_fault_mode@once-multi-queue-rebind-prefetch.html

  * igt@xe_exec_multi_queue@few-execs-preempt-mode-basic:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#6874]) +19 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-7/igt@xe_exec_multi_queue@few-execs-preempt-mode-basic.html

  * igt@xe_exec_multi_queue@one-queue-close-fd-smem:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#6874]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-lnl-7/igt@xe_exec_multi_queue@one-queue-close-fd-smem.html

  * igt@xe_exec_system_allocator@many-large-execqueues-new-race-nomemset:
    - shard-bmg:          [PASS][66] -> [SKIP][67] ([Intel XE#6703]) +121 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-1/igt@xe_exec_system_allocator@many-large-execqueues-new-race-nomemset.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-new-race-nomemset.html

  * igt@xe_exec_system_allocator@partial-middle-remap-no-cpu-fault:
    - shard-bmg:          [PASS][68] -> [FAIL][69] ([Intel XE#5625])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-9/igt@xe_exec_system_allocator@partial-middle-remap-no-cpu-fault.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-10/igt@xe_exec_system_allocator@partial-middle-remap-no-cpu-fault.html

  * igt@xe_exec_system_allocator@process-many-stride-malloc-busy-nomemset:
    - shard-bmg:          [PASS][70] -> [DMESG-FAIL][71] ([Intel XE#6652])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-5/igt@xe_exec_system_allocator@process-many-stride-malloc-busy-nomemset.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_exec_system_allocator@process-many-stride-malloc-busy-nomemset.html

  * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#7138]) +6 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init:
    - shard-bmg:          NOTRUN -> [ABORT][73] ([Intel XE#7578])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98]) -> ([PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [SKIP][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124]) ([Intel XE#2457] / [Intel XE#7405])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-5/igt@xe_module_load@load.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-3/igt@xe_module_load@load.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-4/igt@xe_module_load@load.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-9/igt@xe_module_load@load.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-1/igt@xe_module_load@load.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-3/igt@xe_module_load@load.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-1/igt@xe_module_load@load.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-1/igt@xe_module_load@load.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-10/igt@xe_module_load@load.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-4/igt@xe_module_load@load.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-2/igt@xe_module_load@load.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-2/igt@xe_module_load@load.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-3/igt@xe_module_load@load.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-9/igt@xe_module_load@load.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-5/igt@xe_module_load@load.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-5/igt@xe_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@xe_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@xe_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-8/igt@xe_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-7/igt@xe_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-7/igt@xe_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-10/igt@xe_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-8/igt@xe_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-9/igt@xe_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@xe_module_load@load.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-8/igt@xe_module_load@load.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-7/igt@xe_module_load@load.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-7/igt@xe_module_load@load.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-6/igt@xe_module_load@load.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-10/igt@xe_module_load@load.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-9/igt@xe_module_load@load.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-4/igt@xe_module_load@load.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-6/igt@xe_module_load@load.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-3/igt@xe_module_load@load.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-4/igt@xe_module_load@load.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-4/igt@xe_module_load@load.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-1/igt@xe_module_load@load.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-1/igt@xe_module_load@load.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-7/igt@xe_module_load@load.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-3/igt@xe_module_load@load.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-8/igt@xe_module_load@load.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-9/igt@xe_module_load@load.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-3/igt@xe_module_load@load.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-10/igt@xe_module_load@load.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_module_load@load.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@xe_module_load@load.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@xe_module_load@load.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-9/igt@xe_module_load@load.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_module_load@load.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@xe_module_load@load.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_module_load@load.html

  * igt@xe_multigpu_svm@mgpu-pagefault-conflict:
    - shard-bmg:          NOTRUN -> [SKIP][125] ([Intel XE#6964]) +2 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-1/igt@xe_multigpu_svm@mgpu-pagefault-conflict.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-bmg:          NOTRUN -> [SKIP][126] ([Intel XE#1420])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-3/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-bmg:          NOTRUN -> [SKIP][127] ([Intel XE#2284] / [Intel XE#7370])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-4/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
    - shard-bmg:          NOTRUN -> [SKIP][128] ([Intel XE#4733] / [Intel XE#7417])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-9/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-bmg:          [PASS][129] -> [FAIL][130] ([Intel XE#6569])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-10/igt@xe_sriov_flr@flr-vfs-parallel.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html

  * igt@xe_survivability@runtime-survivability:
    - shard-bmg:          [PASS][131] -> [DMESG-WARN][132] ([Intel XE#6627] / [Intel XE#7419])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-8/igt@xe_survivability@runtime-survivability.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@xe_survivability@runtime-survivability.html

  
#### Possible fixes ####

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [SKIP][133] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [PASS][134]
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-bmg:          [SKIP][135] ([Intel XE#2291]) -> [PASS][136] +3 other tests pass
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-bmg:          [SKIP][137] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][138] +3 other tests pass
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [SKIP][139] ([Intel XE#2316]) -> [PASS][140] +6 other tests pass
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
    - shard-lnl:          [FAIL][141] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][142]
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-bmg:          [SKIP][143] ([Intel XE#7308]) -> [PASS][144]
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@kms_hdmi_inject@inject-audio.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-10/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane_cursor@overlay:
    - shard-bmg:          [FAIL][145] -> [PASS][146] +1 other test pass
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-2/igt@kms_plane_cursor@overlay.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-10/igt@kms_plane_cursor@overlay.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
    - shard-lnl:          [FAIL][147] ([Intel XE#5625]) -> [PASS][148]
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html

  * igt@xe_exec_threads@threads-hang-shared-vm-userptr-rebind:
    - shard-bmg:          [ABORT][149] -> [PASS][150]
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-2/igt@xe_exec_threads@threads-hang-shared-vm-userptr-rebind.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@xe_exec_threads@threads-hang-shared-vm-userptr-rebind.html

  * igt@xe_pm@s2idle-mocs:
    - shard-bmg:          [INCOMPLETE][151] -> [PASS][152]
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-8/igt@xe_pm@s2idle-mocs.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-4/igt@xe_pm@s2idle-mocs.html

  * igt@xe_sriov_auto_provisioning@fair-allocation@numvfs-random:
    - shard-bmg:          [FAIL][153] ([Intel XE#5937]) -> [PASS][154] +1 other test pass
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@xe_sriov_auto_provisioning@fair-allocation@numvfs-random.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-8/igt@xe_sriov_auto_provisioning@fair-allocation@numvfs-random.html

  
#### Warnings ####

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          [SKIP][155] ([Intel XE#2327]) -> [SKIP][156] ([Intel XE#6703]) +2 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-8/igt@kms_big_fb@linear-32bpp-rotate-270.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [SKIP][157] ([Intel XE#1124]) -> [SKIP][158] ([Intel XE#6703]) +2 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-bmg:          [SKIP][159] ([Intel XE#367] / [Intel XE#7354]) -> [SKIP][160] ([Intel XE#6703]) +1 other test skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
    - shard-bmg:          [SKIP][161] ([Intel XE#2887]) -> [SKIP][162] ([Intel XE#6703])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html

  * igt@kms_chamelium_hpd@common-hpd-after-hibernate:
    - shard-bmg:          [SKIP][163] ([Intel XE#2252]) -> [SKIP][164] ([Intel XE#6703]) +3 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html

  * igt@kms_content_protection@atomic-hdcp14:
    - shard-bmg:          [FAIL][165] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][166] ([Intel XE#7194])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@kms_content_protection@atomic-hdcp14.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@kms_content_protection@atomic-hdcp14.html

  * igt@kms_content_protection@lic-type-1:
    - shard-bmg:          [SKIP][167] ([Intel XE#2341]) -> [SKIP][168] ([Intel XE#6703])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-1/igt@kms_content_protection@lic-type-1.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [SKIP][169] ([Intel XE#2341]) -> [FAIL][170] ([Intel XE#6707] / [Intel XE#7439])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-5/igt@kms_content_protection@uevent.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-10/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-sliding-32x32:
    - shard-bmg:          [SKIP][171] ([Intel XE#2320]) -> [SKIP][172] ([Intel XE#6703])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-32x32.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-32x32.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [FAIL][173] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][174] ([Intel XE#301])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
    - shard-bmg:          [SKIP][175] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][176] ([Intel XE#6703])
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
    - shard-bmg:          [SKIP][177] ([Intel XE#2312]) -> [SKIP][178] ([Intel XE#2311]) +10 other tests skip
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][179] ([Intel XE#2312]) -> [SKIP][180] ([Intel XE#4141]) +8 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][181] ([Intel XE#4141]) -> [SKIP][182] ([Intel XE#2312]) +5 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
    - shard-bmg:          [SKIP][183] ([Intel XE#4141]) -> [SKIP][184] ([Intel XE#6703]) +4 other tests skip
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
    - shard-bmg:          [SKIP][185] ([Intel XE#2311]) -> [SKIP][186] ([Intel XE#6703]) +6 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-bmg:          [SKIP][187] ([Intel XE#2311]) -> [SKIP][188] ([Intel XE#2312]) +11 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][189] ([Intel XE#2312]) -> [SKIP][190] ([Intel XE#2313]) +12 other tests skip
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt:
    - shard-bmg:          [SKIP][191] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][192] ([Intel XE#6703])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][193] ([Intel XE#2313]) -> [SKIP][194] ([Intel XE#2312]) +17 other tests skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][195] ([Intel XE#2312]) -> [SKIP][196] ([Intel XE#6703]) +1 other test skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][197] ([Intel XE#2313]) -> [SKIP][198] ([Intel XE#6703]) +3 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][199] ([Intel XE#3544]) -> [SKIP][200] ([Intel XE#3374] / [Intel XE#3544])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          [SKIP][201] ([Intel XE#7591]) -> [SKIP][202] ([Intel XE#6703])
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
    - shard-bmg:          [SKIP][203] ([Intel XE#7283]) -> [SKIP][204] ([Intel XE#6703])
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-bmg:          [SKIP][205] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) -> [SKIP][206] ([Intel XE#6703])
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
    - shard-bmg:          [SKIP][207] ([Intel XE#1489]) -> [SKIP][208] ([Intel XE#6703]) +1 other test skip
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-bmg:          [SKIP][209] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][210] ([Intel XE#6703]) +1 other test skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-2/igt@kms_psr@fbc-psr2-primary-render.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-bmg:          [SKIP][211] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][212] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +2 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-bmg:          [SKIP][213] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][214] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-6/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][215] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][216] ([Intel XE#2426] / [Intel XE#5848])
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@cmrr:
    - shard-bmg:          [SKIP][217] ([Intel XE#2168] / [Intel XE#7444]) -> [SKIP][218] ([Intel XE#6703])
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-2/igt@kms_vrr@cmrr.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@kms_vrr@cmrr.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-bmg:          [SKIP][219] ([Intel XE#6599]) -> [SKIP][220] ([Intel XE#6703])
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-7/igt@xe_compute@ccs-mode-basic.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_eudebug@basic-vm-access-userptr-faultable:
    - shard-bmg:          [SKIP][221] ([Intel XE#4837]) -> [SKIP][222] ([Intel XE#6703])
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-3/igt@xe_eudebug@basic-vm-access-userptr-faultable.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_eudebug@basic-vm-access-userptr-faultable.html

  * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram:
    - shard-bmg:          [SKIP][223] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][224] ([Intel XE#6703])
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-7/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
    - shard-bmg:          [SKIP][225] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][226] ([Intel XE#6703]) +2 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch:
    - shard-bmg:          [SKIP][227] ([Intel XE#7136]) -> [SKIP][228] ([Intel XE#6703]) +4 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-9/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html

  * igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem:
    - shard-bmg:          [SKIP][229] ([Intel XE#6874]) -> [SKIP][230] ([Intel XE#6703]) +5 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-6/igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem.html

  * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr:
    - shard-bmg:          [SKIP][231] ([Intel XE#7138]) -> [SKIP][232] ([Intel XE#6703]) +1 other test skip
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr.html

  * igt@xe_pat@pat-index-xelp:
    - shard-bmg:          [SKIP][233] ([Intel XE#2245]) -> [SKIP][234] ([Intel XE#6703])
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-8/igt@xe_pat@pat-index-xelp.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_pat@pat-index-xelp.html

  * igt@xe_prefetch_fault@prefetch-fault:
    - shard-bmg:          [SKIP][235] ([Intel XE#7599]) -> [SKIP][236] ([Intel XE#6703])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-9/igt@xe_prefetch_fault@prefetch-fault.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_prefetch_fault@prefetch-fault.html

  * igt@xe_query@multigpu-query-invalid-size:
    - shard-bmg:          [SKIP][237] ([Intel XE#944]) -> [SKIP][238] ([Intel XE#6703])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a/shard-bmg-10/igt@xe_query@multigpu-query-invalid-size.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163572v1/shard-bmg-2/igt@xe_query@multigpu-query-invalid-size.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [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#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [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#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#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#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
  [Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
  [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
  [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
  [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
  [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
  [Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
  [Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
  [Intel XE#7586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7586
  [Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
  [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
  [Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * IGT: IGT_8811 -> IGT_8814
  * Linux: xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a -> xe-pw-163572v1

  IGT_8811: cc3169e72592a56b806ce54a87060519151ad5fe @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8814: 8814
  xe-4749-4ae9f18564e78a5447be68aa1e9232a4f2c37b5a: 4ae9f18564e78a5447be68aa1e9232a4f2c37b5a
  xe-pw-163572v1: 163572v1

== Logs ==

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

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

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

end of thread, other threads:[~2026-03-21  7:09 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-20  9:29 [PATCH] drm/i915/dp_tunnel: Fix error handling when clearing stream BW in atomic state Imre Deak
2026-03-20  9:46 ` ✓ CI.KUnit: success for " Patchwork
2026-03-20 10:20 ` [PATCH] " Michał Grzelak
2026-03-20 10:38   ` Imre Deak
2026-03-20 11:19   ` Jani Nikula
2026-03-20 10:33 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-03-20 11:42 ` [PATCH] " Shankar, Uma
2026-03-20 14:55   ` Imre Deak
2026-03-20 22:17     ` Shankar, Uma
2026-03-21  7:09 ` ✗ Xe.CI.FULL: failure for " Patchwork

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