Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/3] Add AS_SDP to fastset
@ 2024-10-21 10:50 Mitul Golani
  2024-10-21 10:50 ` [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start, end} computation Mitul Golani
                   ` (7 more replies)
  0 siblings, 8 replies; 16+ messages in thread
From: Mitul Golani @ 2024-10-21 10:50 UTC (permalink / raw)
  To: intel-gfx; +Cc: ankit.k.nautiyal, ville.syrjala

vrr enable disable should happen with fastset, where
adptive sync SDP should not block it to full modeset.

Mitul Golani (3):
  drm/i915/vrr: Update vrr.vsync_{start,end} computation
  drm/i915/dp: Set FAVT mode in DP SDP with fixed refresh rate
  drm/i915/dp: Compute as_sdp based on if vrr possible

 .../drm/i915/display/intel_crtc_state_dump.c  |  4 +++-
 drivers/gpu/drm/i915/display/intel_dp.c       |  6 ++---
 drivers/gpu/drm/i915/display/intel_vrr.c      | 24 +++++++------------
 3 files changed, 15 insertions(+), 19 deletions(-)

-- 
2.46.0


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

* [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start, end} computation
  2024-10-21 10:50 [PATCH v3 0/3] Add AS_SDP to fastset Mitul Golani
@ 2024-10-21 10:50 ` Mitul Golani
  2024-10-29  2:58   ` Golani, Mitulkumar Ajitkumar
  2024-11-18  7:55   ` [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start,end} computation Nautiyal, Ankit K
  2024-10-21 10:50 ` [PATCH v3 2/3] drm/i915/dp: Set FAVT mode in DP SDP with fixed refresh rate Mitul Golani
                   ` (6 subsequent siblings)
  7 siblings, 2 replies; 16+ messages in thread
From: Mitul Golani @ 2024-10-21 10:50 UTC (permalink / raw)
  To: intel-gfx; +Cc: ankit.k.nautiyal, ville.syrjala

vrr.vsync_{start,end} computation should not depend on
crtc_state->vrr.enable. Also add them to state dump.

--v1:
 - Explain commit message more clearly [Jani]
 - Instead of tweaking to fastset use vrr.flipline while computing AS_SDP.
--v2:
 - Correct computation of vrr.vsync_start/end should not depend on
   vrr.enable.[ville]
 - vrr enable disable requirement should not obstruct by SDP enable
   disable requirements. [Ville]

Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
 .../drm/i915/display/intel_crtc_state_dump.c  |  4 +++-
 drivers/gpu/drm/i915/display/intel_vrr.c      | 24 +++++++------------
 2 files changed, 12 insertions(+), 16 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
index 705ec5ad385c..296a6c9de1f7 100644
--- a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
+++ b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
@@ -303,7 +303,9 @@ void intel_crtc_state_dump(const struct intel_crtc_state *pipe_config,
 		   pipe_config->vrr.flipline,
 		   intel_vrr_vmin_vblank_start(pipe_config),
 		   intel_vrr_vmax_vblank_start(pipe_config));
-
+	drm_printf(&p, "vrr_vsync_start: %d, vrr_vsync_end: %d\n",
+		   pipe_config->vrr.vsync_start,
+		   pipe_config->vrr.vsync_end);
 	drm_printf(&p, "requested mode: " DRM_MODE_FMT "\n",
 		   DRM_MODE_ARG(&pipe_config->hw.mode));
 	drm_printf(&p, "adjusted mode: " DRM_MODE_FMT "\n",
diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
index 19a5d0076bb8..89696243f320 100644
--- a/drivers/gpu/drm/i915/display/intel_vrr.c
+++ b/drivers/gpu/drm/i915/display/intel_vrr.c
@@ -236,7 +236,7 @@ intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
 		crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
 	}
 
-	if (intel_dp->as_sdp_supported && crtc_state->vrr.enable) {
+	if (HAS_AS_SDP(display)) {
 		crtc_state->vrr.vsync_start =
 			(crtc_state->hw.adjusted_mode.crtc_vtotal -
 			 crtc_state->hw.adjusted_mode.vsync_start);
@@ -316,6 +316,11 @@ void intel_vrr_set_transcoder_timings(const struct intel_crtc_state *crtc_state)
 		       trans_vrr_ctl(crtc_state));
 	intel_de_write(display, TRANS_VRR_FLIPLINE(display, cpu_transcoder),
 		       crtc_state->vrr.flipline - 1);
+	if (HAS_AS_SDP(display))
+		intel_de_write(display,
+			       TRANS_VRR_VSYNC(display, cpu_transcoder),
+			       VRR_VSYNC_END(crtc_state->vrr.vsync_end) |
+			       VRR_VSYNC_START(crtc_state->vrr.vsync_start));
 }
 
 void intel_vrr_send_push(const struct intel_crtc_state *crtc_state)
@@ -352,12 +357,6 @@ void intel_vrr_enable(const struct intel_crtc_state *crtc_state)
 	intel_de_write(display, TRANS_PUSH(display, cpu_transcoder),
 		       TRANS_PUSH_EN);
 
-	if (HAS_AS_SDP(display))
-		intel_de_write(display,
-			       TRANS_VRR_VSYNC(display, cpu_transcoder),
-			       VRR_VSYNC_END(crtc_state->vrr.vsync_end) |
-			       VRR_VSYNC_START(crtc_state->vrr.vsync_start));
-
 	if (crtc_state->cmrr.enable) {
 		intel_de_write(display, TRANS_VRR_CTL(display, cpu_transcoder),
 			       VRR_CTL_VRR_ENABLE | VRR_CTL_CMRR_ENABLE |
@@ -382,10 +381,6 @@ void intel_vrr_disable(const struct intel_crtc_state *old_crtc_state)
 				TRANS_VRR_STATUS(display, cpu_transcoder),
 				VRR_STATUS_VRR_EN_LIVE, 1000);
 	intel_de_write(display, TRANS_PUSH(display, cpu_transcoder), 0);
-
-	if (HAS_AS_SDP(display))
-		intel_de_write(display,
-			       TRANS_VRR_VSYNC(display, cpu_transcoder), 0);
 }
 
 void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
@@ -425,10 +420,6 @@ void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
 						     TRANS_VRR_VMAX(display, cpu_transcoder)) + 1;
 		crtc_state->vrr.vmin = intel_de_read(display,
 						     TRANS_VRR_VMIN(display, cpu_transcoder)) + 1;
-	}
-
-	if (crtc_state->vrr.enable) {
-		crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
 
 		if (HAS_AS_SDP(display)) {
 			trans_vrr_vsync =
@@ -440,4 +431,7 @@ void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
 				REG_FIELD_GET(VRR_VSYNC_END_MASK, trans_vrr_vsync);
 		}
 	}
+
+	if (crtc_state->vrr.enable)
+		crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
 }
-- 
2.46.0


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

* [PATCH v3 2/3] drm/i915/dp: Set FAVT mode in DP SDP with fixed refresh rate
  2024-10-21 10:50 [PATCH v3 0/3] Add AS_SDP to fastset Mitul Golani
  2024-10-21 10:50 ` [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start, end} computation Mitul Golani
@ 2024-10-21 10:50 ` Mitul Golani
  2024-11-18  8:00   ` Nautiyal, Ankit K
  2024-10-21 10:51 ` [PATCH v3 3/3] drm/i915/dp: Compute as_sdp based on if vrr possible Mitul Golani
                   ` (5 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Mitul Golani @ 2024-10-21 10:50 UTC (permalink / raw)
  To: intel-gfx; +Cc: ankit.k.nautiyal, ville.syrjala

While running with fixed refresh rate and VRR timing generator set FAVT
mode (Fixed Vtotal) in DP Adaptive Sync SDP to intimate the panel
about Fixed refresh rate.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 7e04913bc2ff..b1f68fff524d 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -2785,7 +2785,7 @@ static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
 		as_sdp->target_rr = drm_mode_vrefresh(adjusted_mode);
 		as_sdp->target_rr_divider = true;
 	} else {
-		as_sdp->mode = DP_AS_SDP_AVT_FIXED_VTOTAL;
+		as_sdp->mode = DP_AS_SDP_AVT_DYNAMIC_VTOTAL;
 		as_sdp->vtotal = adjusted_mode->vtotal;
 		as_sdp->target_rr = 0;
 	}
-- 
2.46.0


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

* [PATCH v3 3/3] drm/i915/dp: Compute as_sdp based on if vrr possible
  2024-10-21 10:50 [PATCH v3 0/3] Add AS_SDP to fastset Mitul Golani
  2024-10-21 10:50 ` [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start, end} computation Mitul Golani
  2024-10-21 10:50 ` [PATCH v3 2/3] drm/i915/dp: Set FAVT mode in DP SDP with fixed refresh rate Mitul Golani
@ 2024-10-21 10:51 ` Mitul Golani
  2024-11-18  8:07   ` Nautiyal, Ankit K
  2024-10-21 11:26 ` ✗ Fi.CI.SPARSE: warning for Add AS_SDP to fastset (rev2) Patchwork
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Mitul Golani @ 2024-10-21 10:51 UTC (permalink / raw)
  To: intel-gfx; +Cc: ankit.k.nautiyal, ville.syrjala

Adaptive sync sdp param computation, specifically minimum vtotal is
blocking vrr enable and disable fastset requirements in certain scenario
i.e. during null modeset, this minimum vtotal we can configure during
full modeset as well when sink is having vrr support, where it doesn't
need dependency on vrr.enable status and can also match vrr
enable/disable fastset requirement.

Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index b1f68fff524d..0fefe6f16257 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -2769,7 +2769,7 @@ static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
 	const struct drm_display_mode *adjusted_mode =
 		&crtc_state->hw.adjusted_mode;
 
-	if (!crtc_state->vrr.enable || !intel_dp->as_sdp_supported)
+	if (!intel_vrr_possible(crtc_state) || !intel_dp->as_sdp_supported)
 		return;
 
 	crtc_state->infoframes.enable |= intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC);
@@ -2786,7 +2786,7 @@ static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
 		as_sdp->target_rr_divider = true;
 	} else {
 		as_sdp->mode = DP_AS_SDP_AVT_DYNAMIC_VTOTAL;
-		as_sdp->vtotal = adjusted_mode->vtotal;
+		as_sdp->vtotal = crtc_state->vrr.vmin + 1;
 		as_sdp->target_rr = 0;
 	}
 }
-- 
2.46.0


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

* ✗ Fi.CI.SPARSE: warning for Add AS_SDP to fastset (rev2)
  2024-10-21 10:50 [PATCH v3 0/3] Add AS_SDP to fastset Mitul Golani
                   ` (2 preceding siblings ...)
  2024-10-21 10:51 ` [PATCH v3 3/3] drm/i915/dp: Compute as_sdp based on if vrr possible Mitul Golani
@ 2024-10-21 11:26 ` Patchwork
  2024-10-21 11:37 ` ✗ Fi.CI.BAT: failure " Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-10-21 11:26 UTC (permalink / raw)
  To: Mitul Golani; +Cc: intel-gfx

== Series Details ==

Series: Add AS_SDP to fastset (rev2)
URL   : https://patchwork.freedesktop.org/series/137035/
State : warning

== Summary ==

Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings
+./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings
+./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings
+./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings
+./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'

/home/kbuild/linux/maintainer-tools/dim: line 2106: echo: write error: Broken pipe



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

* ✗ Fi.CI.BAT: failure for Add AS_SDP to fastset (rev2)
  2024-10-21 10:50 [PATCH v3 0/3] Add AS_SDP to fastset Mitul Golani
                   ` (3 preceding siblings ...)
  2024-10-21 11:26 ` ✗ Fi.CI.SPARSE: warning for Add AS_SDP to fastset (rev2) Patchwork
@ 2024-10-21 11:37 ` Patchwork
  2024-10-22  8:18 ` ✓ Fi.CI.BAT: success " Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-10-21 11:37 UTC (permalink / raw)
  To: Mitul Golani; +Cc: intel-gfx

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

== Series Details ==

Series: Add AS_SDP to fastset (rev2)
URL   : https://patchwork.freedesktop.org/series/137035/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_15571 -> Patchwork_137035v2
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_137035v2 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_137035v2, 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.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/index.html

Participating hosts (45 -> 44)
------------------------------

  Missing    (1): fi-snb-2520m 

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in Patchwork_137035v2:

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@gt_lrc:
    - bat-arlh-2:         [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-arlh-2/igt@i915_selftest@live@gt_lrc.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-arlh-2/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@guc_multi_lrc:
    - bat-dg2-9:          [PASS][3] -> [ABORT][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-9/igt@i915_selftest@live@guc_multi_lrc.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-9/igt@i915_selftest@live@guc_multi_lrc.html

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

  Here are the changes found in Patchwork_137035v2 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live:
    - bat-arlh-2:         [PASS][5] -> [INCOMPLETE][6] ([i915#10341] / [i915#12133])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-arlh-2/igt@i915_selftest@live.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-arlh-2/igt@i915_selftest@live.html
    - bat-dg2-9:          [PASS][7] -> [ABORT][8] ([i915#12133])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-9/igt@i915_selftest@live.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-9/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - bat-mtlp-6:         [PASS][9] -> [ABORT][10] ([i915#12216]) +1 other test abort
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-mtlp-6/igt@i915_selftest@live@workarounds.html

  
#### Possible fixes ####

  * igt@i915_selftest@live:
    - bat-dg2-11:         [ABORT][11] ([i915#12133]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-11/igt@i915_selftest@live.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-11/igt@i915_selftest@live.html

  * igt@i915_selftest@live@uncore:
    - bat-dg2-11:         [ABORT][13] ([i915#12305]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-11/igt@i915_selftest@live@uncore.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-11/igt@i915_selftest@live@uncore.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-dg2-9:          [SKIP][15] ([i915#5190]) -> [SKIP][16] ([i915#4212] / [i915#5190])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-mtlp-6:         [SKIP][17] ([i915#5190] / [i915#9792]) -> [SKIP][18] ([i915#4212] / [i915#5190] / [i915#9792])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-dg2-11:         [SKIP][19] ([i915#5190]) -> [SKIP][20] ([i915#4212] / [i915#5190])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-dg2-14:         [SKIP][21] ([i915#5190]) -> [SKIP][22] ([i915#4212] / [i915#5190])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-mtlp-8:         [SKIP][23] ([i915#5190]) -> [SKIP][24] ([i915#4212] / [i915#5190])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-dg2-8:          [SKIP][25] ([i915#5190]) -> [SKIP][26] ([i915#4212] / [i915#5190])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - bat-dg2-8:          [SKIP][27] ([i915#4215] / [i915#5190]) -> [SKIP][28] ([i915#4212] / [i915#4215] / [i915#5190])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - bat-dg1-7:          [SKIP][29] ([i915#4215]) -> [SKIP][30] ([i915#4212] / [i915#4215])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - bat-dg2-9:          [SKIP][31] ([i915#4215] / [i915#5190]) -> [SKIP][32] ([i915#4212] / [i915#4215] / [i915#5190])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - bat-dg2-11:         [SKIP][33] ([i915#4215] / [i915#5190]) -> [SKIP][34] ([i915#4212] / [i915#4215] / [i915#5190])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - bat-dg2-14:         [SKIP][35] ([i915#4215] / [i915#5190]) -> [SKIP][36] ([i915#4212] / [i915#4215] / [i915#5190])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  
  [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
  [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
  [i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
  [i915#12305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12305
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792


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

  * Linux: CI_DRM_15571 -> Patchwork_137035v2

  CI-20190529: 20190529
  CI_DRM_15571: 784111a40e40a37100e61736dd137c72cedbdb39 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_137035v2: 784111a40e40a37100e61736dd137c72cedbdb39 @ git://anongit.freedesktop.org/gfx-ci/linux

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/index.html

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

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

* ✓ Fi.CI.BAT: success for Add AS_SDP to fastset (rev2)
  2024-10-21 10:50 [PATCH v3 0/3] Add AS_SDP to fastset Mitul Golani
                   ` (4 preceding siblings ...)
  2024-10-21 11:37 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-10-22  8:18 ` Patchwork
  2024-10-22  9:16 ` ✗ Fi.CI.IGT: failure " Patchwork
  2024-10-22 17:41 ` ✓ Fi.CI.IGT: success " Patchwork
  7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-10-22  8:18 UTC (permalink / raw)
  To: Golani, Mitulkumar Ajitkumar; +Cc: intel-gfx

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

== Series Details ==

Series: Add AS_SDP to fastset (rev2)
URL   : https://patchwork.freedesktop.org/series/137035/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_15571 -> Patchwork_137035v2
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/index.html

Participating hosts (45 -> 44)
------------------------------

  Missing    (1): fi-snb-2520m 

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

  Here are the changes found in Patchwork_137035v2 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live:
    - bat-arlh-2:         [PASS][1] -> [INCOMPLETE][2] ([i915#10341] / [i915#12133])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-arlh-2/igt@i915_selftest@live.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-arlh-2/igt@i915_selftest@live.html
    - bat-dg2-9:          [PASS][3] -> [ABORT][4] ([i915#12133])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-9/igt@i915_selftest@live.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-9/igt@i915_selftest@live.html

  * igt@i915_selftest@live@gt_lrc:
    - bat-arlh-2:         [PASS][5] -> [INCOMPLETE][6] ([i915#12473])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-arlh-2/igt@i915_selftest@live@gt_lrc.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-arlh-2/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@guc_multi_lrc:
    - bat-dg2-9:          [PASS][7] -> [ABORT][8] ([i915#12305])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-9/igt@i915_selftest@live@guc_multi_lrc.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-9/igt@i915_selftest@live@guc_multi_lrc.html

  * igt@i915_selftest@live@workarounds:
    - bat-mtlp-6:         [PASS][9] -> [ABORT][10] ([i915#12216]) +1 other test abort
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-mtlp-6/igt@i915_selftest@live@workarounds.html

  
#### Possible fixes ####

  * igt@i915_selftest@live:
    - bat-dg2-11:         [ABORT][11] ([i915#12133]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-11/igt@i915_selftest@live.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-11/igt@i915_selftest@live.html

  * igt@i915_selftest@live@uncore:
    - bat-dg2-11:         [ABORT][13] ([i915#12305]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-11/igt@i915_selftest@live@uncore.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-11/igt@i915_selftest@live@uncore.html

  
#### Warnings ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-dg2-9:          [SKIP][15] ([i915#5190]) -> [SKIP][16] ([i915#4212] / [i915#5190])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-mtlp-6:         [SKIP][17] ([i915#5190] / [i915#9792]) -> [SKIP][18] ([i915#4212] / [i915#5190] / [i915#9792])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-dg2-11:         [SKIP][19] ([i915#5190]) -> [SKIP][20] ([i915#4212] / [i915#5190])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-dg2-14:         [SKIP][21] ([i915#5190]) -> [SKIP][22] ([i915#4212] / [i915#5190])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-mtlp-8:         [SKIP][23] ([i915#5190]) -> [SKIP][24] ([i915#4212] / [i915#5190])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
    - bat-dg2-8:          [SKIP][25] ([i915#5190]) -> [SKIP][26] ([i915#4212] / [i915#5190])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - bat-dg2-8:          [SKIP][27] ([i915#4215] / [i915#5190]) -> [SKIP][28] ([i915#4212] / [i915#4215] / [i915#5190])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - bat-dg1-7:          [SKIP][29] ([i915#4215]) -> [SKIP][30] ([i915#4212] / [i915#4215])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - bat-dg2-9:          [SKIP][31] ([i915#4215] / [i915#5190]) -> [SKIP][32] ([i915#4212] / [i915#4215] / [i915#5190])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - bat-dg2-11:         [SKIP][33] ([i915#4215] / [i915#5190]) -> [SKIP][34] ([i915#4212] / [i915#4215] / [i915#5190])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
    - bat-dg2-14:         [SKIP][35] ([i915#4215] / [i915#5190]) -> [SKIP][36] ([i915#4212] / [i915#4215] / [i915#5190])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  
  [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
  [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
  [i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
  [i915#12305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12305
  [i915#12473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12473
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792


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

  * Linux: CI_DRM_15571 -> Patchwork_137035v2

  CI-20190529: 20190529
  CI_DRM_15571: 784111a40e40a37100e61736dd137c72cedbdb39 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_137035v2: 784111a40e40a37100e61736dd137c72cedbdb39 @ git://anongit.freedesktop.org/gfx-ci/linux

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/index.html

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

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

* ✗ Fi.CI.IGT: failure for Add AS_SDP to fastset (rev2)
  2024-10-21 10:50 [PATCH v3 0/3] Add AS_SDP to fastset Mitul Golani
                   ` (5 preceding siblings ...)
  2024-10-22  8:18 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-10-22  9:16 ` Patchwork
  2024-10-22 17:41 ` ✓ Fi.CI.IGT: success " Patchwork
  7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-10-22  9:16 UTC (permalink / raw)
  To: Golani, Mitulkumar Ajitkumar; +Cc: intel-gfx

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

== Series Details ==

Series: Add AS_SDP to fastset (rev2)
URL   : https://patchwork.freedesktop.org/series/137035/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_15571_full -> Patchwork_137035v2_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_137035v2_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_137035v2_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 (7 -> 7)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in Patchwork_137035v2_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@plain-flip-ts-check-interruptible:
    - shard-mtlp:         NOTRUN -> [INCOMPLETE][1] +1 other test incomplete
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
    - shard-glk:          NOTRUN -> [INCOMPLETE][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html

  * igt@runner@aborted:
    - shard-tglu:         NOTRUN -> [FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-tglu-4/igt@runner@aborted.html

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

  Here are the changes found in Patchwork_137035v2_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@unaligned-write:
    - shard-dg2:          [PASS][4] -> [SKIP][5] ([i915#2582])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@fbdev@unaligned-write.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@fbdev@unaligned-write.html

  * igt@gem_eio@hibernate:
    - shard-dg1:          [PASS][6] -> [ABORT][7] ([i915#7975] / [i915#8213])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-19/igt@gem_eio@hibernate.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-14/igt@gem_eio@hibernate.html

  * igt@gem_eio@wait-wedge-1us:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][8] ([i915#2295])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_eio@wait-wedge-1us.html

  * igt@gem_exec_balancer@bonded-false-hang:
    - shard-dg2:          NOTRUN -> [SKIP][9] ([i915#4812])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-rkl:          [PASS][10] -> [FAIL][11] ([i915#2846])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglu:         [PASS][12] -> [FAIL][13] ([i915#2842]) +1 other test fail
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_reloc@basic-gtt-cpu-active:
    - shard-dg2:          NOTRUN -> [SKIP][14] ([i915#3281]) +2 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-cpu-active.html

  * igt@gem_fenced_exec_thrash@no-spare-fences:
    - shard-dg2:          NOTRUN -> [SKIP][15] ([i915#4860])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-glk:          NOTRUN -> [SKIP][16] ([i915#4613])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk8/igt@gem_lmem_swapping@heavy-verify-random.html

  * igt@gem_madvise@dontneed-before-exec:
    - shard-dg2:          NOTRUN -> [SKIP][17] ([i915#3282])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@gem_madvise@dontneed-before-exec.html

  * igt@gem_mmap_gtt@bad-object:
    - shard-dg2:          NOTRUN -> [SKIP][18] ([i915#4077]) +4 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_mmap_gtt@bad-object.html

  * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
    - shard-dg2:          NOTRUN -> [SKIP][19] ([i915#4270])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][20] ([i915#5190] / [i915#8428]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@create-destroy-unsync:
    - shard-dg2:          NOTRUN -> [SKIP][21] ([i915#3297])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html

  * igt@gen9_exec_parse@bb-large:
    - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#2856])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@gen9_exec_parse@bb-large.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-glk:          [PASS][23] -> [ABORT][24] ([i915#9820])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk6/igt@i915_module_load@reload-with-fault-injection.html
    - shard-rkl:          [PASS][25] -> [ABORT][26] ([i915#9820])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
    - shard-tglu:         [PASS][27] -> [ABORT][28] ([i915#9820])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
    - shard-mtlp:         [PASS][29] -> [ABORT][30] ([i915#10131] / [i915#10887] / [i915#9697])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
    - shard-dg1:          [PASS][31] -> [FAIL][32] ([i915#3591])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-rkl:          [PASS][33] -> [INCOMPLETE][34] ([i915#4817])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2:
    - shard-rkl:          [PASS][35] -> [FAIL][36] ([i915#10991]) +1 other test fail
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-glk:          [PASS][37] -> [FAIL][38] ([i915#12238])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs:
    - shard-glk:          [PASS][39] -> [FAIL][40] ([i915#11859])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][41] +2 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-dg1:          NOTRUN -> [SKIP][42] ([i915#4538] / [i915#5286])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2:          NOTRUN -> [SKIP][43] ([i915#5190])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#4538] / [i915#5190]) +3 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2:
    - shard-dg2:          NOTRUN -> [SKIP][45] ([i915#10307] / [i915#6095]) +126 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][46] ([i915#6095]) +91 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html

  * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][47] ([i915#10307] / [i915#10434] / [i915#6095])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][48] ([i915#6095]) +41 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [SKIP][49] +53 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition:
    - shard-dg2:          NOTRUN -> [SKIP][50] ([i915#11616] / [i915#7213])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
    - shard-dg2:          NOTRUN -> [SKIP][51] ([i915#7213]) +3 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-dg2:          NOTRUN -> [SKIP][52] ([i915#7828]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_hpd@hdmi-hpd-fast:
    - shard-dg1:          NOTRUN -> [SKIP][53] ([i915#7828])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd-fast.html

  * igt@kms_cursor_crc@cursor-offscreen-32x10:
    - shard-mtlp:         NOTRUN -> [SKIP][54] ([i915#3555] / [i915#8814])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-dg1:          NOTRUN -> [SKIP][55] ([i915#11453] / [i915#3359])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [PASS][56] -> [FAIL][57] ([i915#2346])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2:          NOTRUN -> [SKIP][58] ([i915#4103] / [i915#4213])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-dg2:          NOTRUN -> [SKIP][59] ([i915#12402])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][60] -> [FAIL][61] ([i915#2122]) +2 other tests fail
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@blocking-wf_vblank@a-hdmi-a2:
    - shard-rkl:          NOTRUN -> [FAIL][62] ([i915#11961])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html

  * igt@kms_flip@blocking-wf_vblank@b-hdmi-a2:
    - shard-rkl:          NOTRUN -> [FAIL][63] ([i915#12457])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@b-hdmi-a2.html

  * igt@kms_flip@modeset-vs-vblank-race:
    - shard-dg2:          [PASS][64] -> [SKIP][65] ([i915#5354]) +11 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_flip@modeset-vs-vblank-race.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_flip@modeset-vs-vblank-race.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1:
    - shard-mtlp:         NOTRUN -> [FAIL][66] ([i915#2122])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1:
    - shard-tglu:         NOTRUN -> [FAIL][67] ([i915#2122])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-tglu-8/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#2672]) +2 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][69] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
    - shard-dg2:          [PASS][70] -> [SKIP][71] ([i915#3555]) +2 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][72] ([i915#8708]) +7 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
    - shard-snb:          [PASS][73] -> [SKIP][74] +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][75] ([i915#8708])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-dg1:          NOTRUN -> [SKIP][76]
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][77] ([i915#3458]) +3 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][78] ([i915#5354]) +12 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-dg1:          NOTRUN -> [SKIP][79] ([i915#3458])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_hdr@static-swap:
    - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#3555] / [i915#8228])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_hdr@static-swap.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-dg2:          [PASS][81] -> [SKIP][82] ([i915#3555] / [i915#8228])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][83] ([i915#10656])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1:
    - shard-snb:          NOTRUN -> [SKIP][84]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-snb5/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1.html

  * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant:
    - shard-dg2:          [PASS][85] -> [SKIP][86] ([i915#7294]) +1 other test skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-dg1:          [PASS][87] -> [DMESG-WARN][88] ([i915#4423])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-18/igt@kms_plane_lowres@tiling-y.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-17/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
    - shard-dg2:          NOTRUN -> [SKIP][89] ([i915#12247] / [i915#9423])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
    - shard-dg2:          NOTRUN -> [SKIP][90] ([i915#12247]) +3 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
    - shard-dg2:          [PASS][91] -> [SKIP][92] ([i915#12247]) +11 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
    - shard-dg2:          [PASS][93] -> [SKIP][94] ([i915#12247] / [i915#8152]) +2 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
    - shard-dg2:          [PASS][95] -> [SKIP][96] ([i915#8152] / [i915#9423])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d:
    - shard-dg2:          [PASS][97] -> [SKIP][98] ([i915#8152])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
    - shard-dg2:          [PASS][99] -> [SKIP][100] ([i915#12247] / [i915#8152] / [i915#9423]) +1 other test skip
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
    - shard-dg2:          [PASS][101] -> [SKIP][102] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2:          NOTRUN -> [SKIP][103] ([i915#9685])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-6/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@cursor-dpms:
    - shard-dg2:          [PASS][104] -> [SKIP][105] ([i915#1849]) +1 other test skip
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_pm_rpm@cursor-dpms.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-rkl:          [PASS][106] -> [SKIP][107] ([i915#9519]) +1 other test skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-dg2:          [PASS][108] -> [SKIP][109] ([i915#9519]) +1 other test skip
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-dg2:          NOTRUN -> [SKIP][110] ([i915#11520]) +2 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][111] ([i915#11520])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][112] ([i915#9683]) +1 other test skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@psr2-primary-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][113] ([i915#1072] / [i915#9732]) +6 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_psr@psr2-primary-mmap-gtt.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-dg2:          NOTRUN -> [SKIP][114] ([i915#11131] / [i915#4235])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-dg2:          [PASS][115] -> [SKIP][116] ([i915#9197]) +33 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_vblank@ts-continuation-dpms-suspend.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@kms_vrr@flip-basic:
    - shard-dg2:          NOTRUN -> [SKIP][117] ([i915#3555]) +1 other test skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@negative-basic:
    - shard-mtlp:         [PASS][118] -> [FAIL][119] ([i915#10393]) +1 other test fail
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-mtlp-8/igt@kms_vrr@negative-basic.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-7/igt@kms_vrr@negative-basic.html

  * igt@prime_vgem@basic-fence-read:
    - shard-dg2:          NOTRUN -> [SKIP][120] ([i915#3291] / [i915#3708])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@prime_vgem@basic-fence-read.html

  * igt@syncobj_wait@invalid-wait-zero-handles:
    - shard-glk:          NOTRUN -> [FAIL][121] ([i915#9781])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk5/igt@syncobj_wait@invalid-wait-zero-handles.html

  
#### Possible fixes ####

  * igt@gem_barrier_race@remote-request:
    - shard-glk:          [ABORT][122] -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk1/igt@gem_barrier_race@remote-request.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk5/igt@gem_barrier_race@remote-request.html

  * igt@gem_barrier_race@remote-request@rcs0:
    - shard-glk:          [ABORT][124] ([i915#8190]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk1/igt@gem_barrier_race@remote-request@rcs0.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk5/igt@gem_barrier_race@remote-request@rcs0.html

  * igt@gem_ccs@suspend-resume:
    - shard-dg2:          [INCOMPLETE][126] ([i915#7297]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-7/igt@gem_ccs@suspend-resume.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_ccs@suspend-resume.html

  * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
    - shard-dg2:          [INCOMPLETE][128] ([i915#12392] / [i915#7297]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-rkl:          [FAIL][130] ([i915#2842]) -> [PASS][131] +1 other test pass
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
    - shard-dg1:          [FAIL][132] ([i915#3591]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html

  * igt@i915_pm_rps@engine-order:
    - shard-glk:          [FAIL][134] ([i915#12308]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk5/igt@i915_pm_rps@engine-order.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk4/igt@i915_pm_rps@engine-order.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking:
    - shard-glk:          [FAIL][136] ([i915#12177]) -> [PASS][137]
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk1/igt@kms_atomic_transition@modeset-transition-nonblocking.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs:
    - shard-glk:          [FAIL][138] ([i915#11859]) -> [PASS][139]
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk1/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4:
    - shard-dg1:          [FAIL][140] ([i915#5956]) -> [PASS][141] +1 other test pass
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-180:
    - shard-dg2:          [SKIP][142] ([i915#9197]) -> [PASS][143] +23 other tests pass
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-mtlp:         [INCOMPLETE][144] ([i915#12358]) -> [PASS][145] +1 other test pass
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-mtlp-4/igt@kms_cursor_crc@cursor-suspend.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-1/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][146] ([i915#2122]) -> [PASS][147] +1 other test pass
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk3/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk6/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
    - shard-snb:          [FAIL][148] ([i915#2122]) -> [PASS][149] +3 other tests pass
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-snb5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html

  * igt@kms_flip@blocking-wf_vblank:
    - shard-mtlp:         [FAIL][150] ([i915#2122]) -> [PASS][151] +1 other test pass
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-mtlp-2/igt@kms_flip@blocking-wf_vblank.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-7/igt@kms_flip@blocking-wf_vblank.html

  * igt@kms_flip@blocking-wf_vblank@c-hdmi-a1:
    - shard-tglu:         [FAIL][152] ([i915#2122]) -> [PASS][153] +4 other tests pass
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-tglu-2/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-tglu-7/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-dg1:          [DMESG-WARN][154] ([i915#4423]) -> [PASS][155] +3 other tests pass
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-15/igt@kms_flip@flip-vs-suspend.html
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-16/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
    - shard-dg2:          [SKIP][156] ([i915#3555]) -> [PASS][157] +1 other test pass
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
    - shard-dg2:          [SKIP][158] ([i915#5354]) -> [PASS][159] +8 other tests pass
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_plane_scaling@invalid-parameters:
    - shard-dg2:          [SKIP][160] ([i915#8152] / [i915#9423]) -> [PASS][161]
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_scaling@invalid-parameters.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_plane_scaling@invalid-parameters.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
    - shard-dg2:          [SKIP][162] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][163]
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
    - shard-dg2:          [SKIP][164] ([i915#12247]) -> [PASS][165] +2 other tests pass
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
    - shard-dg2:          [SKIP][166] ([i915#12247] / [i915#8152]) -> [PASS][167]
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-tglu:         [SKIP][168] ([i915#4281]) -> [PASS][169]
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg2:          [SKIP][170] ([i915#9340]) -> [PASS][171]
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-rkl:          [SKIP][172] ([i915#9519]) -> [PASS][173]
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_universal_plane@cursor-fb-leak:
    - shard-mtlp:         [FAIL][174] ([i915#9196]) -> [PASS][175] +1 other test pass
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak.html

  
#### Warnings ####

  * igt@gem_ctx_engines@invalid-engines:
    - shard-rkl:          [FAIL][176] ([i915#12027] / [i915#12031]) -> [FAIL][177] ([i915#12031])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-2/igt@gem_ctx_engines@invalid-engines.html

  * igt@gem_eio@kms:
    - shard-dg2:          [SKIP][178] ([i915#9197]) -> [FAIL][179] ([i915#5784])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@gem_eio@kms.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@gem_eio@kms.html

  * igt@i915_selftest@mock:
    - shard-glk:          [DMESG-WARN][180] ([i915#9311]) -> [DMESG-WARN][181] ([i915#1982] / [i915#9311])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk5/igt@i915_selftest@mock.html
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk6/igt@i915_selftest@mock.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg2:          [SKIP][182] ([i915#9197]) -> [SKIP][183] ([i915#9531])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-dg2:          [SKIP][184] -> [SKIP][185] ([i915#9197]) +2 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg2:          [SKIP][186] ([i915#9197]) -> [SKIP][187] +1 other test skip
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_big_fb@linear-16bpp-rotate-90.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-dg2:          [SKIP][188] ([i915#4538] / [i915#5190]) -> [SKIP][189] ([i915#5190] / [i915#9197]) +7 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2:          [SKIP][190] ([i915#5190] / [i915#9197]) -> [SKIP][191] ([i915#4538] / [i915#5190]) +6 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-dg2:          [SKIP][192] ([i915#12313]) -> [SKIP][193] ([i915#9197])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2:          [SKIP][194] ([i915#10307] / [i915#6095]) -> [SKIP][195] ([i915#9197]) +9 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs:
    - shard-dg2:          [SKIP][196] ([i915#9197]) -> [SKIP][197] ([i915#10307] / [i915#6095]) +4 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-dg2:          [SKIP][198] ([i915#4087]) -> [SKIP][199] ([i915#9197])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_cdclk@plane-scaling.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_cdclk@plane-scaling.html

  * igt@kms_content_protection@atomic:
    - shard-dg2:          [SKIP][200] ([i915#9197]) -> [SKIP][201] ([i915#7118] / [i915#9424])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_content_protection@atomic.html
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@content-type-change:
    - shard-dg2:          [SKIP][202] ([i915#9424]) -> [SKIP][203] ([i915#9197]) +2 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_content_protection@content-type-change.html
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_content_protection@content-type-change.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2:          [SKIP][204] ([i915#9197]) -> [SKIP][205] ([i915#11453] / [i915#3359])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-dg2:          [SKIP][206] ([i915#9197]) -> [SKIP][207] ([i915#3555]) +1 other test skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-dg2:          [SKIP][208] ([i915#9197]) -> [SKIP][209] ([i915#5354]) +1 other test skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-dg2:          [SKIP][210] ([i915#5354]) -> [SKIP][211] ([i915#9197]) +1 other test skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
    - shard-dg2:          [SKIP][212] ([i915#9197]) -> [SKIP][213] ([i915#9067])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2:          [SKIP][214] ([i915#9197]) -> [SKIP][215] ([i915#4103] / [i915#4213])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-dg2:          [SKIP][216] ([i915#9833]) -> [SKIP][217] ([i915#9197])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dither@fb-8bpc-vs-panel-8bpc:
    - shard-dg2:          [SKIP][218] ([i915#3555]) -> [SKIP][219] ([i915#9197]) +5 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-dg2:          [SKIP][220] ([i915#3840]) -> [SKIP][221] ([i915#9197])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-dg2:          [SKIP][222] ([i915#9197]) -> [SKIP][223] ([i915#3555] / [i915#3840])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-dg2:          [SKIP][224] ([i915#3840] / [i915#9053]) -> [SKIP][225] ([i915#9197])
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-dg2:          [SKIP][226] ([i915#3555]) -> [SKIP][227] ([i915#2672] / [i915#3555])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-dg2:          [SKIP][228] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][229] ([i915#3555] / [i915#5190]) +2 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
    - shard-dg2:          [SKIP][230] ([i915#8708]) -> [SKIP][231] ([i915#5354]) +9 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
    - shard-dg2:          [SKIP][232] ([i915#10433] / [i915#3458]) -> [SKIP][233] ([i915#3458]) +1 other test skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
    - shard-dg1:          [SKIP][234] ([i915#4423]) -> [SKIP][235]
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
    - shard-dg2:          [SKIP][236] ([i915#5354]) -> [SKIP][237] ([i915#8708]) +6 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2:          [SKIP][238] ([i915#10055]) -> [SKIP][239] ([i915#5354])
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
    - shard-dg2:          [SKIP][240] ([i915#3458]) -> [SKIP][241] ([i915#10433] / [i915#3458]) +1 other test skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2:          [SKIP][242] ([i915#5354]) -> [SKIP][243] ([i915#3458]) +8 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-dg1:          [SKIP][244] ([i915#4423] / [i915#8708]) -> [SKIP][245] ([i915#8708])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
    - shard-dg2:          [SKIP][246] ([i915#3458]) -> [SKIP][247] ([i915#5354]) +9 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-dg2:          [SKIP][248] ([i915#9197]) -> [SKIP][249] ([i915#3555] / [i915#8228])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_hdr@bpc-switch-dpms.html
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg2:          [SKIP][250] ([i915#3555] / [i915#8228]) -> [SKIP][251] ([i915#9197])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-rkl:          [SKIP][252] ([i915#4070] / [i915#4816]) -> [SKIP][253] ([i915#4816])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-dg2:          [SKIP][254] ([i915#9197]) -> [SKIP][255] ([i915#6301])
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-dg2:          [SKIP][256] ([i915#9197]) -> [SKIP][257] ([i915#3555] / [i915#8821])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_lowres@tiling-yf.html
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
    - shard-dg2:          [SKIP][258] ([i915#12247] / [i915#9423]) -> [SKIP][259] ([i915#12247] / [i915#8152] / [i915#9423])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
    - shard-dg2:          [SKIP][260] ([i915#12247]) -> [SKIP][261] ([i915#12247] / [i915#8152]) +1 other test skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25:
    - shard-dg2:          [SKIP][262] ([i915#12247] / [i915#6953] / [i915#9423]) -> [SKIP][263] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423])
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
    - shard-dg2:          [SKIP][264] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [SKIP][265] ([i915#12247] / [i915#6953] / [i915#9423])
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
    - shard-dg2:          [SKIP][266] ([i915#12247] / [i915#8152]) -> [SKIP][267] ([i915#12247])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-dg2:          [SKIP][268] ([i915#9197]) -> [SKIP][269] ([i915#11131] / [i915#4235])
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_rotation_crc@bad-pixel-format.html
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          [SKIP][270] ([i915#11131] / [i915#4235]) -> [SKIP][271] ([i915#9197]) +2 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_rotation_crc@primary-rotation-270.html
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-dg2:          [SKIP][272] ([i915#5190] / [i915#9197]) -> [SKIP][273] ([i915#11131] / [i915#4235] / [i915#5190])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-dg2:          [SKIP][274] ([i915#11131] / [i915#4235] / [i915#5190]) -> [SKIP][275] ([i915#5190] / [i915#9197])
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  
  [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
  [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
  [i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991
  [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
  [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
  [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
  [i915#11961]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11961
  [i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027
  [i915#12031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12031
  [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
  [i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238
  [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
  [i915#12308]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12308
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
  [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402
  [i915#12457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12457
  [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
  [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
  [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
  [i915#2295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2295
  [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
  [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
  [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
  [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
  [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
  [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
  [i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
  [i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
  [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
  [i915#8190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8190
  [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
  [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
  [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
  [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
  [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
  [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
  [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
  [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
  [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
  [i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
  [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
  [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833


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

  * Linux: CI_DRM_15571 -> Patchwork_137035v2

  CI-20190529: 20190529
  CI_DRM_15571: 784111a40e40a37100e61736dd137c72cedbdb39 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_137035v2: 784111a40e40a37100e61736dd137c72cedbdb39 @ git://anongit.freedesktop.org/gfx-ci/linux
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/index.html

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

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

* ✓ Fi.CI.IGT: success for Add AS_SDP to fastset (rev2)
  2024-10-21 10:50 [PATCH v3 0/3] Add AS_SDP to fastset Mitul Golani
                   ` (6 preceding siblings ...)
  2024-10-22  9:16 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-10-22 17:41 ` Patchwork
  7 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2024-10-22 17:41 UTC (permalink / raw)
  To: Golani, Mitulkumar Ajitkumar; +Cc: intel-gfx

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

== Series Details ==

Series: Add AS_SDP to fastset (rev2)
URL   : https://patchwork.freedesktop.org/series/137035/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_15571_full -> Patchwork_137035v2_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts

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

  Here are the changes found in Patchwork_137035v2_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@unaligned-write:
    - shard-dg2:          [PASS][1] -> [SKIP][2] ([i915#2582])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@fbdev@unaligned-write.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@fbdev@unaligned-write.html

  * igt@gem_eio@hibernate:
    - shard-dg1:          [PASS][3] -> [ABORT][4] ([i915#7975] / [i915#8213])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-19/igt@gem_eio@hibernate.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-14/igt@gem_eio@hibernate.html

  * igt@gem_eio@wait-wedge-1us:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][5] ([i915#2295])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_eio@wait-wedge-1us.html

  * igt@gem_exec_balancer@bonded-false-hang:
    - shard-dg2:          NOTRUN -> [SKIP][6] ([i915#4812])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-rkl:          [PASS][7] -> [FAIL][8] ([i915#2846])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglu:         [PASS][9] -> [FAIL][10] ([i915#2842]) +1 other test fail
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_reloc@basic-gtt-cpu-active:
    - shard-dg2:          NOTRUN -> [SKIP][11] ([i915#3281]) +2 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-cpu-active.html

  * igt@gem_fenced_exec_thrash@no-spare-fences:
    - shard-dg2:          NOTRUN -> [SKIP][12] ([i915#4860])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences.html

  * igt@gem_lmem_swapping@heavy-verify-random:
    - shard-glk:          NOTRUN -> [SKIP][13] ([i915#4613])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk8/igt@gem_lmem_swapping@heavy-verify-random.html

  * igt@gem_madvise@dontneed-before-exec:
    - shard-dg2:          NOTRUN -> [SKIP][14] ([i915#3282])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@gem_madvise@dontneed-before-exec.html

  * igt@gem_mmap_gtt@bad-object:
    - shard-dg2:          NOTRUN -> [SKIP][15] ([i915#4077]) +4 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_mmap_gtt@bad-object.html

  * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
    - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#4270])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][17] ([i915#5190] / [i915#8428]) +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_userptr_blits@create-destroy-unsync:
    - shard-dg2:          NOTRUN -> [SKIP][18] ([i915#3297])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html

  * igt@gen9_exec_parse@bb-large:
    - shard-dg2:          NOTRUN -> [SKIP][19] ([i915#2856])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@gen9_exec_parse@bb-large.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-glk:          [PASS][20] -> [ABORT][21] ([i915#9820])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk6/igt@i915_module_load@reload-with-fault-injection.html
    - shard-rkl:          [PASS][22] -> [ABORT][23] ([i915#9820])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
    - shard-tglu:         [PASS][24] -> [ABORT][25] ([i915#9820])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
    - shard-mtlp:         [PASS][26] -> [ABORT][27] ([i915#10131] / [i915#10887] / [i915#9697])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
    - shard-dg1:          [PASS][28] -> [FAIL][29] ([i915#3591])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-rkl:          [PASS][30] -> [INCOMPLETE][31] ([i915#4817])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2:
    - shard-rkl:          [PASS][32] -> [FAIL][33] ([i915#10991]) +1 other test fail
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
    - shard-glk:          [PASS][34] -> [FAIL][35] ([i915#12238])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs:
    - shard-glk:          [PASS][36] -> [FAIL][37] ([i915#11859])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][38] +2 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-dg1:          NOTRUN -> [SKIP][39] ([i915#4538] / [i915#5286])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2:          NOTRUN -> [SKIP][40] ([i915#5190])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-dg2:          NOTRUN -> [SKIP][41] ([i915#4538] / [i915#5190]) +3 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2:
    - shard-dg2:          NOTRUN -> [SKIP][42] ([i915#10307] / [i915#6095]) +126 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][43] ([i915#6095]) +91 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html

  * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#10307] / [i915#10434] / [i915#6095])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][45] ([i915#6095]) +41 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [SKIP][46] +53 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition:
    - shard-dg2:          NOTRUN -> [SKIP][47] ([i915#11616] / [i915#7213])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
    - shard-dg2:          NOTRUN -> [SKIP][48] ([i915#7213]) +3 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#7828]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_chamelium_hpd@hdmi-hpd-fast:
    - shard-dg1:          NOTRUN -> [SKIP][50] ([i915#7828])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd-fast.html

  * igt@kms_cursor_crc@cursor-offscreen-32x10:
    - shard-mtlp:         NOTRUN -> [SKIP][51] ([i915#3555] / [i915#8814])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x170:
    - shard-dg1:          NOTRUN -> [SKIP][52] ([i915#11453] / [i915#3359])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [PASS][53] -> [FAIL][54] ([i915#2346])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2:          NOTRUN -> [SKIP][55] ([i915#4103] / [i915#4213])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#12402])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][57] -> [FAIL][58] ([i915#2122]) +2 other tests fail
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@blocking-wf_vblank@a-hdmi-a2:
    - shard-rkl:          NOTRUN -> [FAIL][59] ([i915#11961])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html

  * igt@kms_flip@blocking-wf_vblank@b-hdmi-a2:
    - shard-rkl:          NOTRUN -> [FAIL][60] ([i915#12457])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@b-hdmi-a2.html

  * igt@kms_flip@modeset-vs-vblank-race:
    - shard-dg2:          [PASS][61] -> [SKIP][62] ([i915#5354]) +11 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_flip@modeset-vs-vblank-race.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_flip@modeset-vs-vblank-race.html

  * igt@kms_flip@plain-flip-ts-check-interruptible:
    - shard-mtlp:         NOTRUN -> [INCOMPLETE][63] ([i915#12481]) +1 other test incomplete
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check-interruptible.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1:
    - shard-mtlp:         NOTRUN -> [FAIL][64] ([i915#2122])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check-interruptible@a-edp1.html

  * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1:
    - shard-tglu:         NOTRUN -> [FAIL][65] ([i915#2122])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-tglu-8/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][66] ([i915#2672]) +2 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
    - shard-dg2:          [PASS][68] -> [SKIP][69] ([i915#3555]) +2 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][70] ([i915#8708]) +7 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
    - shard-snb:          [PASS][71] -> [SKIP][72] +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][73] ([i915#8708])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
    - shard-glk:          NOTRUN -> [INCOMPLETE][74] ([i915#12483])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-dg1:          NOTRUN -> [SKIP][75]
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][76] ([i915#3458]) +3 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][77] ([i915#5354]) +12 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-dg1:          NOTRUN -> [SKIP][78] ([i915#3458])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_hdr@static-swap:
    - shard-dg2:          NOTRUN -> [SKIP][79] ([i915#3555] / [i915#8228])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_hdr@static-swap.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-dg2:          [PASS][80] -> [SKIP][81] ([i915#3555] / [i915#8228])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][82] ([i915#10656])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1:
    - shard-snb:          NOTRUN -> [SKIP][83]
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-snb5/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1.html

  * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant:
    - shard-dg2:          [PASS][84] -> [SKIP][85] ([i915#7294]) +1 other test skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-dg1:          [PASS][86] -> [DMESG-WARN][87] ([i915#4423])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-18/igt@kms_plane_lowres@tiling-y.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-17/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
    - shard-dg2:          NOTRUN -> [SKIP][88] ([i915#12247] / [i915#9423])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
    - shard-dg2:          NOTRUN -> [SKIP][89] ([i915#12247]) +3 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
    - shard-dg2:          [PASS][90] -> [SKIP][91] ([i915#12247]) +11 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
    - shard-dg2:          [PASS][92] -> [SKIP][93] ([i915#12247] / [i915#8152]) +2 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
    - shard-dg2:          [PASS][94] -> [SKIP][95] ([i915#8152] / [i915#9423])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d:
    - shard-dg2:          [PASS][96] -> [SKIP][97] ([i915#8152])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
    - shard-dg2:          [PASS][98] -> [SKIP][99] ([i915#12247] / [i915#8152] / [i915#9423]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
    - shard-dg2:          [PASS][100] -> [SKIP][101] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2:          NOTRUN -> [SKIP][102] ([i915#9685])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-6/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@cursor-dpms:
    - shard-dg2:          [PASS][103] -> [SKIP][104] ([i915#1849]) +1 other test skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_pm_rpm@cursor-dpms.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-rkl:          [PASS][105] -> [SKIP][106] ([i915#9519]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-dg2:          [PASS][107] -> [SKIP][108] ([i915#9519]) +1 other test skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-dg2:          NOTRUN -> [SKIP][109] ([i915#11520]) +2 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][110] ([i915#11520])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][111] ([i915#9683]) +1 other test skip
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@psr2-primary-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][112] ([i915#1072] / [i915#9732]) +6 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@kms_psr@psr2-primary-mmap-gtt.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-dg2:          NOTRUN -> [SKIP][113] ([i915#11131] / [i915#4235])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-dg2:          [PASS][114] -> [SKIP][115] ([i915#9197]) +33 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_vblank@ts-continuation-dpms-suspend.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@kms_vrr@flip-basic:
    - shard-dg2:          NOTRUN -> [SKIP][116] ([i915#3555]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@negative-basic:
    - shard-mtlp:         [PASS][117] -> [FAIL][118] ([i915#10393]) +1 other test fail
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-mtlp-8/igt@kms_vrr@negative-basic.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-7/igt@kms_vrr@negative-basic.html

  * igt@prime_vgem@basic-fence-read:
    - shard-dg2:          NOTRUN -> [SKIP][119] ([i915#3291] / [i915#3708])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-1/igt@prime_vgem@basic-fence-read.html

  * igt@runner@aborted:
    - shard-tglu:         NOTRUN -> [FAIL][120] ([i915#12415])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-tglu-4/igt@runner@aborted.html

  * igt@syncobj_wait@invalid-wait-zero-handles:
    - shard-glk:          NOTRUN -> [FAIL][121] ([i915#9781])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk5/igt@syncobj_wait@invalid-wait-zero-handles.html

  
#### Possible fixes ####

  * igt@gem_barrier_race@remote-request:
    - shard-glk:          [ABORT][122] -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk1/igt@gem_barrier_race@remote-request.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk5/igt@gem_barrier_race@remote-request.html

  * igt@gem_barrier_race@remote-request@rcs0:
    - shard-glk:          [ABORT][124] ([i915#8190]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk1/igt@gem_barrier_race@remote-request@rcs0.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk5/igt@gem_barrier_race@remote-request@rcs0.html

  * igt@gem_ccs@suspend-resume:
    - shard-dg2:          [INCOMPLETE][126] ([i915#7297]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-7/igt@gem_ccs@suspend-resume.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_ccs@suspend-resume.html

  * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
    - shard-dg2:          [INCOMPLETE][128] ([i915#12392] / [i915#7297]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-11/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-rkl:          [FAIL][130] ([i915#2842]) -> [PASS][131] +1 other test pass
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
    - shard-dg1:          [FAIL][132] ([i915#3591]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html

  * igt@i915_pm_rps@engine-order:
    - shard-glk:          [FAIL][134] ([i915#12308]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk5/igt@i915_pm_rps@engine-order.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk4/igt@i915_pm_rps@engine-order.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking:
    - shard-glk:          [FAIL][136] ([i915#12177]) -> [PASS][137]
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk1/igt@kms_atomic_transition@modeset-transition-nonblocking.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs:
    - shard-glk:          [FAIL][138] ([i915#11859]) -> [PASS][139]
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk1/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4:
    - shard-dg1:          [FAIL][140] ([i915#5956]) -> [PASS][141] +1 other test pass
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-180:
    - shard-dg2:          [SKIP][142] ([i915#9197]) -> [PASS][143] +23 other tests pass
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-mtlp:         [INCOMPLETE][144] ([i915#12358]) -> [PASS][145] +1 other test pass
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-mtlp-4/igt@kms_cursor_crc@cursor-suspend.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-1/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][146] ([i915#2122]) -> [PASS][147] +1 other test pass
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk3/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk6/igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
    - shard-snb:          [FAIL][148] ([i915#2122]) -> [PASS][149] +3 other tests pass
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-snb5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html

  * igt@kms_flip@blocking-wf_vblank:
    - shard-mtlp:         [FAIL][150] ([i915#2122]) -> [PASS][151] +1 other test pass
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-mtlp-2/igt@kms_flip@blocking-wf_vblank.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-7/igt@kms_flip@blocking-wf_vblank.html

  * igt@kms_flip@blocking-wf_vblank@c-hdmi-a1:
    - shard-tglu:         [FAIL][152] ([i915#2122]) -> [PASS][153] +4 other tests pass
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-tglu-2/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-tglu-7/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-dg1:          [DMESG-WARN][154] ([i915#4423]) -> [PASS][155] +3 other tests pass
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-15/igt@kms_flip@flip-vs-suspend.html
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-16/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
    - shard-dg2:          [SKIP][156] ([i915#3555]) -> [PASS][157] +1 other test pass
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
    - shard-dg2:          [SKIP][158] ([i915#5354]) -> [PASS][159] +8 other tests pass
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_plane_scaling@invalid-parameters:
    - shard-dg2:          [SKIP][160] ([i915#8152] / [i915#9423]) -> [PASS][161]
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_scaling@invalid-parameters.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_plane_scaling@invalid-parameters.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
    - shard-dg2:          [SKIP][162] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][163]
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a:
    - shard-dg2:          [SKIP][164] ([i915#12247]) -> [PASS][165] +2 other tests pass
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
    - shard-dg2:          [SKIP][166] ([i915#12247] / [i915#8152]) -> [PASS][167]
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-tglu:         [SKIP][168] ([i915#4281]) -> [PASS][169]
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg2:          [SKIP][170] ([i915#9340]) -> [PASS][171]
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-rkl:          [SKIP][172] ([i915#9519]) -> [PASS][173]
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_universal_plane@cursor-fb-leak:
    - shard-mtlp:         [FAIL][174] ([i915#9196]) -> [PASS][175] +1 other test pass
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak.html

  
#### Warnings ####

  * igt@gem_ctx_engines@invalid-engines:
    - shard-rkl:          [FAIL][176] ([i915#12027] / [i915#12031]) -> [FAIL][177] ([i915#12031])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-2/igt@gem_ctx_engines@invalid-engines.html

  * igt@gem_eio@kms:
    - shard-dg2:          [SKIP][178] ([i915#9197]) -> [FAIL][179] ([i915#5784])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@gem_eio@kms.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@gem_eio@kms.html

  * igt@i915_selftest@mock:
    - shard-glk:          [DMESG-WARN][180] ([i915#9311]) -> [DMESG-WARN][181] ([i915#1982] / [i915#9311])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-glk5/igt@i915_selftest@mock.html
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-glk6/igt@i915_selftest@mock.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg2:          [SKIP][182] ([i915#9197]) -> [SKIP][183] ([i915#9531])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-dg2:          [SKIP][184] -> [SKIP][185] ([i915#9197]) +2 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-dg2:          [SKIP][186] ([i915#9197]) -> [SKIP][187] +1 other test skip
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_big_fb@linear-16bpp-rotate-90.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-dg2:          [SKIP][188] ([i915#4538] / [i915#5190]) -> [SKIP][189] ([i915#5190] / [i915#9197]) +7 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2:          [SKIP][190] ([i915#5190] / [i915#9197]) -> [SKIP][191] ([i915#4538] / [i915#5190]) +6 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-dg2:          [SKIP][192] ([i915#12313]) -> [SKIP][193] ([i915#9197])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2:          [SKIP][194] ([i915#10307] / [i915#6095]) -> [SKIP][195] ([i915#9197]) +9 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs:
    - shard-dg2:          [SKIP][196] ([i915#9197]) -> [SKIP][197] ([i915#10307] / [i915#6095]) +4 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-dg2:          [SKIP][198] ([i915#4087]) -> [SKIP][199] ([i915#9197])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_cdclk@plane-scaling.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_cdclk@plane-scaling.html

  * igt@kms_content_protection@atomic:
    - shard-dg2:          [SKIP][200] ([i915#9197]) -> [SKIP][201] ([i915#7118] / [i915#9424])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_content_protection@atomic.html
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@content-type-change:
    - shard-dg2:          [SKIP][202] ([i915#9424]) -> [SKIP][203] ([i915#9197]) +2 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_content_protection@content-type-change.html
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_content_protection@content-type-change.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2:          [SKIP][204] ([i915#9197]) -> [SKIP][205] ([i915#11453] / [i915#3359])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-dg2:          [SKIP][206] ([i915#9197]) -> [SKIP][207] ([i915#3555]) +1 other test skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-dg2:          [SKIP][208] ([i915#9197]) -> [SKIP][209] ([i915#5354]) +1 other test skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-dg2:          [SKIP][210] ([i915#5354]) -> [SKIP][211] ([i915#9197]) +1 other test skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
    - shard-dg2:          [SKIP][212] ([i915#9197]) -> [SKIP][213] ([i915#9067])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2:          [SKIP][214] ([i915#9197]) -> [SKIP][215] ([i915#4103] / [i915#4213])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-dg2:          [SKIP][216] ([i915#9833]) -> [SKIP][217] ([i915#9197])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dither@fb-8bpc-vs-panel-8bpc:
    - shard-dg2:          [SKIP][218] ([i915#3555]) -> [SKIP][219] ([i915#9197]) +5 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-dg2:          [SKIP][220] ([i915#3840]) -> [SKIP][221] ([i915#9197])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-dg2:          [SKIP][222] ([i915#9197]) -> [SKIP][223] ([i915#3555] / [i915#3840])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-dg2:          [SKIP][224] ([i915#3840] / [i915#9053]) -> [SKIP][225] ([i915#9197])
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-dg2:          [SKIP][226] ([i915#3555]) -> [SKIP][227] ([i915#2672] / [i915#3555])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-dg2:          [SKIP][228] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][229] ([i915#3555] / [i915#5190]) +2 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
    - shard-dg2:          [SKIP][230] ([i915#8708]) -> [SKIP][231] ([i915#5354]) +9 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
    - shard-dg2:          [SKIP][232] ([i915#10433] / [i915#3458]) -> [SKIP][233] ([i915#3458]) +1 other test skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
    - shard-dg1:          [SKIP][234] ([i915#4423]) -> [SKIP][235]
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
    - shard-dg2:          [SKIP][236] ([i915#5354]) -> [SKIP][237] ([i915#8708]) +6 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2:          [SKIP][238] ([i915#10055]) -> [SKIP][239] ([i915#5354])
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
    - shard-dg2:          [SKIP][240] ([i915#3458]) -> [SKIP][241] ([i915#10433] / [i915#3458]) +1 other test skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2:          [SKIP][242] ([i915#5354]) -> [SKIP][243] ([i915#3458]) +8 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-dg1:          [SKIP][244] ([i915#4423] / [i915#8708]) -> [SKIP][245] ([i915#8708])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
    - shard-dg2:          [SKIP][246] ([i915#3458]) -> [SKIP][247] ([i915#5354]) +9 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-dg2:          [SKIP][248] ([i915#9197]) -> [SKIP][249] ([i915#3555] / [i915#8228])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_hdr@bpc-switch-dpms.html
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg2:          [SKIP][250] ([i915#3555] / [i915#8228]) -> [SKIP][251] ([i915#9197])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-rkl:          [SKIP][252] ([i915#4070] / [i915#4816]) -> [SKIP][253] ([i915#4816])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-dg2:          [SKIP][254] ([i915#9197]) -> [SKIP][255] ([i915#6301])
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-dg2:          [SKIP][256] ([i915#9197]) -> [SKIP][257] ([i915#3555] / [i915#8821])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_lowres@tiling-yf.html
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
    - shard-dg2:          [SKIP][258] ([i915#12247] / [i915#9423]) -> [SKIP][259] ([i915#12247] / [i915#8152] / [i915#9423])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
    - shard-dg2:          [SKIP][260] ([i915#12247]) -> [SKIP][261] ([i915#12247] / [i915#8152]) +1 other test skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25:
    - shard-dg2:          [SKIP][262] ([i915#12247] / [i915#6953] / [i915#9423]) -> [SKIP][263] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423])
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
    - shard-dg2:          [SKIP][264] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [SKIP][265] ([i915#12247] / [i915#6953] / [i915#9423])
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
    - shard-dg2:          [SKIP][266] ([i915#12247] / [i915#8152]) -> [SKIP][267] ([i915#12247])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-dg2:          [SKIP][268] ([i915#9197]) -> [SKIP][269] ([i915#11131] / [i915#4235])
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_rotation_crc@bad-pixel-format.html
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-7/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          [SKIP][270] ([i915#11131] / [i915#4235]) -> [SKIP][271] ([i915#9197]) +2 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_rotation_crc@primary-rotation-270.html
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-dg2:          [SKIP][272] ([i915#5190] / [i915#9197]) -> [SKIP][273] ([i915#11131] / [i915#4235] / [i915#5190])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-dg2:          [SKIP][274] ([i915#11131] / [i915#4235] / [i915#5190]) -> [SKIP][275] ([i915#5190] / [i915#9197])
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15571/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  
  [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
  [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
  [i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991
  [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
  [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
  [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
  [i915#11961]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11961
  [i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027
  [i915#12031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12031
  [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
  [i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238
  [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
  [i915#12308]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12308
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
  [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402
  [i915#12415]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12415
  [i915#12457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12457
  [i915#12481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12481
  [i915#12483]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12483
  [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
  [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
  [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
  [i915#2295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2295
  [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
  [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
  [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
  [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
  [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
  [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
  [i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
  [i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
  [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
  [i915#8190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8190
  [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
  [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
  [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
  [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
  [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
  [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
  [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
  [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
  [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
  [i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
  [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
  [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833


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

  * Linux: CI_DRM_15571 -> Patchwork_137035v2

  CI-20190529: 20190529
  CI_DRM_15571: 784111a40e40a37100e61736dd137c72cedbdb39 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_137035v2: 784111a40e40a37100e61736dd137c72cedbdb39 @ git://anongit.freedesktop.org/gfx-ci/linux
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137035v2/index.html

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

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

* RE: [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start, end} computation
  2024-10-21 10:50 ` [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start, end} computation Mitul Golani
@ 2024-10-29  2:58   ` Golani, Mitulkumar Ajitkumar
  2024-11-18  7:55   ` [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start,end} computation Nautiyal, Ankit K
  1 sibling, 0 replies; 16+ messages in thread
From: Golani, Mitulkumar Ajitkumar @ 2024-10-29  2:58 UTC (permalink / raw)
  To: Ville Syrjala, Syrjala, Ville
  Cc: Nautiyal, Ankit K, Golani, Mitulkumar Ajitkumar,
	intel-gfx@lists.freedesktop.org

Hello Ville,

As suggested on Revision 1,

Added,
1. State checker and dump for vrr.vsync_{start,end},
2. Removed dependency from vrr.enable

Any further inputs on this ? 

> -----Original Message-----
> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of
> Mitul Golani
> Sent: 21 October 2024 16:21
> To: intel-gfx@lists.freedesktop.org
> Cc: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>;
> ville.syrjala@linux.intel.com
> Subject: [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start, end}
> computation
> 
> vrr.vsync_{start,end} computation should not depend on crtc_state-
> >vrr.enable. Also add them to state dump.
> 
> --v1:
>  - Explain commit message more clearly [Jani]
>  - Instead of tweaking to fastset use vrr.flipline while computing AS_SDP.
> --v2:
>  - Correct computation of vrr.vsync_start/end should not depend on
>    vrr.enable.[ville]
>  - vrr enable disable requirement should not obstruct by SDP enable
>    disable requirements. [Ville]
> 
> Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
> ---
>  .../drm/i915/display/intel_crtc_state_dump.c  |  4 +++-
>  drivers/gpu/drm/i915/display/intel_vrr.c      | 24 +++++++------------
>  2 files changed, 12 insertions(+), 16 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> index 705ec5ad385c..296a6c9de1f7 100644
> --- a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> +++ b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> @@ -303,7 +303,9 @@ void intel_crtc_state_dump(const struct
> intel_crtc_state *pipe_config,
>  		   pipe_config->vrr.flipline,
>  		   intel_vrr_vmin_vblank_start(pipe_config),
>  		   intel_vrr_vmax_vblank_start(pipe_config));
> -
> +	drm_printf(&p, "vrr_vsync_start: %d, vrr_vsync_end: %d\n",
> +		   pipe_config->vrr.vsync_start,
> +		   pipe_config->vrr.vsync_end);
>  	drm_printf(&p, "requested mode: " DRM_MODE_FMT "\n",
>  		   DRM_MODE_ARG(&pipe_config->hw.mode));
>  	drm_printf(&p, "adjusted mode: " DRM_MODE_FMT "\n", diff --git
> a/drivers/gpu/drm/i915/display/intel_vrr.c
> b/drivers/gpu/drm/i915/display/intel_vrr.c
> index 19a5d0076bb8..89696243f320 100644
> --- a/drivers/gpu/drm/i915/display/intel_vrr.c
> +++ b/drivers/gpu/drm/i915/display/intel_vrr.c
> @@ -236,7 +236,7 @@ intel_vrr_compute_config(struct intel_crtc_state
> *crtc_state,
>  		crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
>  	}
> 
> -	if (intel_dp->as_sdp_supported && crtc_state->vrr.enable) {
> +	if (HAS_AS_SDP(display)) {
>  		crtc_state->vrr.vsync_start =
>  			(crtc_state->hw.adjusted_mode.crtc_vtotal -
>  			 crtc_state->hw.adjusted_mode.vsync_start);
> @@ -316,6 +316,11 @@ void intel_vrr_set_transcoder_timings(const struct
> intel_crtc_state *crtc_state)
>  		       trans_vrr_ctl(crtc_state));
>  	intel_de_write(display, TRANS_VRR_FLIPLINE(display,
> cpu_transcoder),
>  		       crtc_state->vrr.flipline - 1);
> +	if (HAS_AS_SDP(display))
> +		intel_de_write(display,
> +			       TRANS_VRR_VSYNC(display, cpu_transcoder),
> +			       VRR_VSYNC_END(crtc_state->vrr.vsync_end) |
> +			       VRR_VSYNC_START(crtc_state->vrr.vsync_start));
>  }
> 
>  void intel_vrr_send_push(const struct intel_crtc_state *crtc_state) @@ -
> 352,12 +357,6 @@ void intel_vrr_enable(const struct intel_crtc_state
> *crtc_state)
>  	intel_de_write(display, TRANS_PUSH(display, cpu_transcoder),
>  		       TRANS_PUSH_EN);
> 
> -	if (HAS_AS_SDP(display))
> -		intel_de_write(display,
> -			       TRANS_VRR_VSYNC(display, cpu_transcoder),
> -			       VRR_VSYNC_END(crtc_state->vrr.vsync_end) |
> -			       VRR_VSYNC_START(crtc_state->vrr.vsync_start));
> -
>  	if (crtc_state->cmrr.enable) {
>  		intel_de_write(display, TRANS_VRR_CTL(display,
> cpu_transcoder),
>  			       VRR_CTL_VRR_ENABLE |
> VRR_CTL_CMRR_ENABLE | @@ -382,10 +381,6 @@ void
> intel_vrr_disable(const struct intel_crtc_state *old_crtc_state)
>  				TRANS_VRR_STATUS(display,
> cpu_transcoder),
>  				VRR_STATUS_VRR_EN_LIVE, 1000);
>  	intel_de_write(display, TRANS_PUSH(display, cpu_transcoder), 0);
> -
> -	if (HAS_AS_SDP(display))
> -		intel_de_write(display,
> -			       TRANS_VRR_VSYNC(display, cpu_transcoder), 0);
>  }
> 
>  void intel_vrr_get_config(struct intel_crtc_state *crtc_state) @@ -425,10
> +420,6 @@ void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
> 
> TRANS_VRR_VMAX(display, cpu_transcoder)) + 1;
>  		crtc_state->vrr.vmin = intel_de_read(display,
> 
> TRANS_VRR_VMIN(display, cpu_transcoder)) + 1;
> -	}
> -
> -	if (crtc_state->vrr.enable) {
> -		crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
> 
>  		if (HAS_AS_SDP(display)) {
>  			trans_vrr_vsync =
> @@ -440,4 +431,7 @@ void intel_vrr_get_config(struct intel_crtc_state
> *crtc_state)
>  				REG_FIELD_GET(VRR_VSYNC_END_MASK,
> trans_vrr_vsync);
>  		}
>  	}
> +
> +	if (crtc_state->vrr.enable)
> +		crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
>  }
> --
> 2.46.0


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

* Re: [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start,end} computation
  2024-10-21 10:50 ` [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start, end} computation Mitul Golani
  2024-10-29  2:58   ` Golani, Mitulkumar Ajitkumar
@ 2024-11-18  7:55   ` Nautiyal, Ankit K
  2024-11-20  5:57     ` Golani, Mitulkumar Ajitkumar
  1 sibling, 1 reply; 16+ messages in thread
From: Nautiyal, Ankit K @ 2024-11-18  7:55 UTC (permalink / raw)
  To: Mitul Golani, intel-gfx; +Cc: ville.syrjala


On 10/21/2024 4:20 PM, Mitul Golani wrote:
> vrr.vsync_{start,end} computation should not depend on
> crtc_state->vrr.enable. Also add them to state dump.
>
> --v1:
>   - Explain commit message more clearly [Jani]
>   - Instead of tweaking to fastset use vrr.flipline while computing AS_SDP.
> --v2:
>   - Correct computation of vrr.vsync_start/end should not depend on
>     vrr.enable.[ville]
>   - vrr enable disable requirement should not obstruct by SDP enable
>     disable requirements. [Ville]
>
> Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
> ---
>   .../drm/i915/display/intel_crtc_state_dump.c  |  4 +++-
>   drivers/gpu/drm/i915/display/intel_vrr.c      | 24 +++++++------------
>   2 files changed, 12 insertions(+), 16 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> index 705ec5ad385c..296a6c9de1f7 100644
> --- a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> +++ b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> @@ -303,7 +303,9 @@ void intel_crtc_state_dump(const struct intel_crtc_state *pipe_config,
>   		   pipe_config->vrr.flipline,
>   		   intel_vrr_vmin_vblank_start(pipe_config),
>   		   intel_vrr_vmax_vblank_start(pipe_config));
> -
> +	drm_printf(&p, "vrr_vsync_start: %d, vrr_vsync_end: %d\n",
> +		   pipe_config->vrr.vsync_start,
> +		   pipe_config->vrr.vsync_end);

I think it would be good to have this in same line as other vrr parameters.

Also lets have this in a separate patch.

>   	drm_printf(&p, "requested mode: " DRM_MODE_FMT "\n",
>   		   DRM_MODE_ARG(&pipe_config->hw.mode));
>   	drm_printf(&p, "adjusted mode: " DRM_MODE_FMT "\n",
> diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
> index 19a5d0076bb8..89696243f320 100644
> --- a/drivers/gpu/drm/i915/display/intel_vrr.c
> +++ b/drivers/gpu/drm/i915/display/intel_vrr.c
> @@ -236,7 +236,7 @@ intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
>   		crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
>   	}
>   
> -	if (intel_dp->as_sdp_supported && crtc_state->vrr.enable) {
> +	if (HAS_AS_SDP(display)) {
>   		crtc_state->vrr.vsync_start =
>   			(crtc_state->hw.adjusted_mode.crtc_vtotal -
>   			 crtc_state->hw.adjusted_mode.vsync_start);

This again should be separate patch where we are just using HAS_AS_SDP() 
in compute_config and get_config.


> @@ -316,6 +316,11 @@ void intel_vrr_set_transcoder_timings(const struct intel_crtc_state *crtc_state)
>   		       trans_vrr_ctl(crtc_state));
>   	intel_de_write(display, TRANS_VRR_FLIPLINE(display, cpu_transcoder),
>   		       crtc_state->vrr.flipline - 1);
> +	if (HAS_AS_SDP(display))
> +		intel_de_write(display,
> +			       TRANS_VRR_VSYNC(display, cpu_transcoder),
> +			       VRR_VSYNC_END(crtc_state->vrr.vsync_end) |
> +			       VRR_VSYNC_START(crtc_state->vrr.vsync_start));

This should be yet another patch where we are setting VRR_VSYNC along 
with other vrr transcoder timings.

Along with removal from existing places in vrr_enable/disable.

Apart from splitting into separate patches, changes look good to me.


Regards,

Ankit


>   }
>   
>   void intel_vrr_send_push(const struct intel_crtc_state *crtc_state)
> @@ -352,12 +357,6 @@ void intel_vrr_enable(const struct intel_crtc_state *crtc_state)
>   	intel_de_write(display, TRANS_PUSH(display, cpu_transcoder),
>   		       TRANS_PUSH_EN);
>   
> -	if (HAS_AS_SDP(display))
> -		intel_de_write(display,
> -			       TRANS_VRR_VSYNC(display, cpu_transcoder),
> -			       VRR_VSYNC_END(crtc_state->vrr.vsync_end) |
> -			       VRR_VSYNC_START(crtc_state->vrr.vsync_start));
> -
>   	if (crtc_state->cmrr.enable) {
>   		intel_de_write(display, TRANS_VRR_CTL(display, cpu_transcoder),
>   			       VRR_CTL_VRR_ENABLE | VRR_CTL_CMRR_ENABLE |
> @@ -382,10 +381,6 @@ void intel_vrr_disable(const struct intel_crtc_state *old_crtc_state)
>   				TRANS_VRR_STATUS(display, cpu_transcoder),
>   				VRR_STATUS_VRR_EN_LIVE, 1000);
>   	intel_de_write(display, TRANS_PUSH(display, cpu_transcoder), 0);
> -
> -	if (HAS_AS_SDP(display))
> -		intel_de_write(display,
> -			       TRANS_VRR_VSYNC(display, cpu_transcoder), 0);
>   }
>   
>   void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
> @@ -425,10 +420,6 @@ void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
>   						     TRANS_VRR_VMAX(display, cpu_transcoder)) + 1;
>   		crtc_state->vrr.vmin = intel_de_read(display,
>   						     TRANS_VRR_VMIN(display, cpu_transcoder)) + 1;
> -	}
> -
> -	if (crtc_state->vrr.enable) {
> -		crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
>   
>   		if (HAS_AS_SDP(display)) {
>   			trans_vrr_vsync =
> @@ -440,4 +431,7 @@ void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
>   				REG_FIELD_GET(VRR_VSYNC_END_MASK, trans_vrr_vsync);
>   		}
>   	}
> +
> +	if (crtc_state->vrr.enable)
> +		crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
>   }

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

* Re: [PATCH v3 2/3] drm/i915/dp: Set FAVT mode in DP SDP with fixed refresh rate
  2024-10-21 10:50 ` [PATCH v3 2/3] drm/i915/dp: Set FAVT mode in DP SDP with fixed refresh rate Mitul Golani
@ 2024-11-18  8:00   ` Nautiyal, Ankit K
  2024-11-20  6:22     ` Golani, Mitulkumar Ajitkumar
  0 siblings, 1 reply; 16+ messages in thread
From: Nautiyal, Ankit K @ 2024-11-18  8:00 UTC (permalink / raw)
  To: Mitul Golani, intel-gfx; +Cc: ville.syrjala


On 10/21/2024 4:20 PM, Mitul Golani wrote:
> While running with fixed refresh rate and VRR timing generator set FAVT
> mode (Fixed Vtotal) in DP Adaptive Sync SDP to intimate the panel
> about Fixed refresh rate.

This is not matching with change below.

>
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
> ---
>   drivers/gpu/drm/i915/display/intel_dp.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index 7e04913bc2ff..b1f68fff524d 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -2785,7 +2785,7 @@ static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
>   		as_sdp->target_rr = drm_mode_vrefresh(adjusted_mode);
>   		as_sdp->target_rr_divider = true;
>   	} else {
> -		as_sdp->mode = DP_AS_SDP_AVT_FIXED_VTOTAL;
> +		as_sdp->mode = DP_AS_SDP_AVT_DYNAMIC_VTOTAL;

This is done in patch : 
https://patchwork.freedesktop.org/patch/623895/?series=134383&rev=6

Perhaps we can include this as part of this series?

Regards,

Ankit

>   		as_sdp->vtotal = adjusted_mode->vtotal;
>   		as_sdp->target_rr = 0;
>   	}

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

* Re: [PATCH v3 3/3] drm/i915/dp: Compute as_sdp based on if vrr possible
  2024-10-21 10:51 ` [PATCH v3 3/3] drm/i915/dp: Compute as_sdp based on if vrr possible Mitul Golani
@ 2024-11-18  8:07   ` Nautiyal, Ankit K
  2024-11-20  6:23     ` Golani, Mitulkumar Ajitkumar
  0 siblings, 1 reply; 16+ messages in thread
From: Nautiyal, Ankit K @ 2024-11-18  8:07 UTC (permalink / raw)
  To: Mitul Golani, intel-gfx; +Cc: ville.syrjala


On 10/21/2024 4:21 PM, Mitul Golani wrote:
> Adaptive sync sdp param computation, specifically minimum vtotal is
> blocking vrr enable and disable fastset requirements in certain scenario
> i.e. during null modeset, this minimum vtotal we can configure during
> full modeset as well when sink is having vrr support, where it doesn't
> need dependency on vrr.enable status and can also match vrr
> enable/disable fastset requirement.
>
> Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
> ---
>   drivers/gpu/drm/i915/display/intel_dp.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index b1f68fff524d..0fefe6f16257 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -2769,7 +2769,7 @@ static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
>   	const struct drm_display_mode *adjusted_mode =
>   		&crtc_state->hw.adjusted_mode;
>   
> -	if (!crtc_state->vrr.enable || !intel_dp->as_sdp_supported)
> +	if (!intel_vrr_possible(crtc_state) || !intel_dp->as_sdp_supported)
>   		return;
>   
>   	crtc_state->infoframes.enable |= intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC);
> @@ -2786,7 +2786,7 @@ static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
>   		as_sdp->target_rr_divider = true;
>   	} else {
>   		as_sdp->mode = DP_AS_SDP_AVT_DYNAMIC_VTOTAL;
> -		as_sdp->vtotal = adjusted_mode->vtotal;
> +		as_sdp->vtotal = crtc_state->vrr.vmin + 1;

Yes vrr vmin should be correct thing here for DB1 and DB2, but we do not 
need to add 1 here.

Also, this should be a separate patch.

Regards,

Ankit

>   		as_sdp->target_rr = 0;
>   	}
>   }

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

* RE: [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start,end} computation
  2024-11-18  7:55   ` [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start,end} computation Nautiyal, Ankit K
@ 2024-11-20  5:57     ` Golani, Mitulkumar Ajitkumar
  0 siblings, 0 replies; 16+ messages in thread
From: Golani, Mitulkumar Ajitkumar @ 2024-11-20  5:57 UTC (permalink / raw)
  To: Nautiyal, Ankit K, intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

Thanks Ankit for the review,

> -----Original Message-----
> From: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>
> Sent: 18 November 2024 13:26
> To: Golani, Mitulkumar Ajitkumar <mitulkumar.ajitkumar.golani@intel.com>;
> intel-gfx@lists.freedesktop.org
> Cc: ville.syrjala@linux.intel.com
> Subject: Re: [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start,end}
> computation
> 
> 
> On 10/21/2024 4:20 PM, Mitul Golani wrote:
> > vrr.vsync_{start,end} computation should not depend on
> > crtc_state->vrr.enable. Also add them to state dump.
> >
> > --v1:
> >   - Explain commit message more clearly [Jani]
> >   - Instead of tweaking to fastset use vrr.flipline while computing AS_SDP.
> > --v2:
> >   - Correct computation of vrr.vsync_start/end should not depend on
> >     vrr.enable.[ville]
> >   - vrr enable disable requirement should not obstruct by SDP enable
> >     disable requirements. [Ville]
> >
> > Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
> > ---
> >   .../drm/i915/display/intel_crtc_state_dump.c  |  4 +++-
> >   drivers/gpu/drm/i915/display/intel_vrr.c      | 24 +++++++------------
> >   2 files changed, 12 insertions(+), 16 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> > b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> > index 705ec5ad385c..296a6c9de1f7 100644
> > --- a/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> > +++ b/drivers/gpu/drm/i915/display/intel_crtc_state_dump.c
> > @@ -303,7 +303,9 @@ void intel_crtc_state_dump(const struct
> intel_crtc_state *pipe_config,
> >   		   pipe_config->vrr.flipline,
> >   		   intel_vrr_vmin_vblank_start(pipe_config),
> >   		   intel_vrr_vmax_vblank_start(pipe_config));
> > -
> > +	drm_printf(&p, "vrr_vsync_start: %d, vrr_vsync_end: %d\n",
> > +		   pipe_config->vrr.vsync_start,
> > +		   pipe_config->vrr.vsync_end);
> 
> I think it would be good to have this in same line as other vrr parameters.
> 
> Also lets have this in a separate patch.

Agreed, I will add to separate patch in single line. 

> 
> >   	drm_printf(&p, "requested mode: " DRM_MODE_FMT "\n",
> >   		   DRM_MODE_ARG(&pipe_config->hw.mode));
> >   	drm_printf(&p, "adjusted mode: " DRM_MODE_FMT "\n", diff --git
> > a/drivers/gpu/drm/i915/display/intel_vrr.c
> > b/drivers/gpu/drm/i915/display/intel_vrr.c
> > index 19a5d0076bb8..89696243f320 100644
> > --- a/drivers/gpu/drm/i915/display/intel_vrr.c
> > +++ b/drivers/gpu/drm/i915/display/intel_vrr.c
> > @@ -236,7 +236,7 @@ intel_vrr_compute_config(struct intel_crtc_state
> *crtc_state,
> >   		crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
> >   	}
> >
> > -	if (intel_dp->as_sdp_supported && crtc_state->vrr.enable) {
> > +	if (HAS_AS_SDP(display)) {
> >   		crtc_state->vrr.vsync_start =
> >   			(crtc_state->hw.adjusted_mode.crtc_vtotal -
> >   			 crtc_state->hw.adjusted_mode.vsync_start);
> 
> This again should be separate patch where we are just using HAS_AS_SDP()
> in compute_config and get_config.
> 
> 
> > @@ -316,6 +316,11 @@ void intel_vrr_set_transcoder_timings(const struct
> intel_crtc_state *crtc_state)
> >   		       trans_vrr_ctl(crtc_state));
> >   	intel_de_write(display, TRANS_VRR_FLIPLINE(display,
> cpu_transcoder),
> >   		       crtc_state->vrr.flipline - 1);
> > +	if (HAS_AS_SDP(display))
> > +		intel_de_write(display,
> > +			       TRANS_VRR_VSYNC(display, cpu_transcoder),
> > +			       VRR_VSYNC_END(crtc_state->vrr.vsync_end) |
> > +			       VRR_VSYNC_START(crtc_state->vrr.vsync_start));
> 
> This should be yet another patch where we are setting VRR_VSYNC along
> with other vrr transcoder timings.
> 
> Along with removal from existing places in vrr_enable/disable.
> 
> Apart from splitting into separate patches, changes look good to me.
> 

Splitting this from transcoder timing update, in either way it can create state mismatch when source/sink supports AS SDP but vrr is not enabled from uapi. 

Is it ok to keep this as a single patch ?

> 
> Regards,
> 
> Ankit
> 
> 
> >   }
> >
> >   void intel_vrr_send_push(const struct intel_crtc_state *crtc_state)
> > @@ -352,12 +357,6 @@ void intel_vrr_enable(const struct intel_crtc_state
> *crtc_state)
> >   	intel_de_write(display, TRANS_PUSH(display, cpu_transcoder),
> >   		       TRANS_PUSH_EN);
> >
> > -	if (HAS_AS_SDP(display))
> > -		intel_de_write(display,
> > -			       TRANS_VRR_VSYNC(display, cpu_transcoder),
> > -			       VRR_VSYNC_END(crtc_state->vrr.vsync_end) |
> > -			       VRR_VSYNC_START(crtc_state->vrr.vsync_start));
> > -
> >   	if (crtc_state->cmrr.enable) {
> >   		intel_de_write(display, TRANS_VRR_CTL(display,
> cpu_transcoder),
> >   			       VRR_CTL_VRR_ENABLE |
> VRR_CTL_CMRR_ENABLE |
> > @@ -382,10 +381,6 @@ void intel_vrr_disable(const struct intel_crtc_state
> *old_crtc_state)
> >   				TRANS_VRR_STATUS(display,
> cpu_transcoder),
> >   				VRR_STATUS_VRR_EN_LIVE, 1000);
> >   	intel_de_write(display, TRANS_PUSH(display, cpu_transcoder), 0);
> > -
> > -	if (HAS_AS_SDP(display))
> > -		intel_de_write(display,
> > -			       TRANS_VRR_VSYNC(display, cpu_transcoder), 0);
> >   }
> >
> >   void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
> > @@ -425,10 +420,6 @@ void intel_vrr_get_config(struct intel_crtc_state
> *crtc_state)
> >
> TRANS_VRR_VMAX(display, cpu_transcoder)) + 1;
> >   		crtc_state->vrr.vmin = intel_de_read(display,
> >   						     TRANS_VRR_VMIN(display,
> cpu_transcoder)) + 1;
> > -	}
> > -
> > -	if (crtc_state->vrr.enable) {
> > -		crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
> >
> >   		if (HAS_AS_SDP(display)) {
> >   			trans_vrr_vsync =
> > @@ -440,4 +431,7 @@ void intel_vrr_get_config(struct intel_crtc_state
> *crtc_state)
> >   				REG_FIELD_GET(VRR_VSYNC_END_MASK,
> trans_vrr_vsync);
> >   		}
> >   	}
> > +
> > +	if (crtc_state->vrr.enable)
> > +		crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
> >   }

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

* RE: [PATCH v3 2/3] drm/i915/dp: Set FAVT mode in DP SDP with fixed refresh rate
  2024-11-18  8:00   ` Nautiyal, Ankit K
@ 2024-11-20  6:22     ` Golani, Mitulkumar Ajitkumar
  0 siblings, 0 replies; 16+ messages in thread
From: Golani, Mitulkumar Ajitkumar @ 2024-11-20  6:22 UTC (permalink / raw)
  To: Nautiyal, Ankit K, intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com



> -----Original Message-----
> From: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>
> Sent: 18 November 2024 13:30
> To: Golani, Mitulkumar Ajitkumar <mitulkumar.ajitkumar.golani@intel.com>;
> intel-gfx@lists.freedesktop.org
> Cc: ville.syrjala@linux.intel.com
> Subject: Re: [PATCH v3 2/3] drm/i915/dp: Set FAVT mode in DP SDP with
> fixed refresh rate
> 
> 
> On 10/21/2024 4:20 PM, Mitul Golani wrote:
> > While running with fixed refresh rate and VRR timing generator set
> > FAVT mode (Fixed Vtotal) in DP Adaptive Sync SDP to intimate the panel
> > about Fixed refresh rate.
> 
> This is not matching with change below.
> 
> >
> > Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> > Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
> > ---
> >   drivers/gpu/drm/i915/display/intel_dp.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c
> > b/drivers/gpu/drm/i915/display/intel_dp.c
> > index 7e04913bc2ff..b1f68fff524d 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> > @@ -2785,7 +2785,7 @@ static void intel_dp_compute_as_sdp(struct
> intel_dp *intel_dp,
> >   		as_sdp->target_rr = drm_mode_vrefresh(adjusted_mode);
> >   		as_sdp->target_rr_divider = true;
> >   	} else {
> > -		as_sdp->mode = DP_AS_SDP_AVT_FIXED_VTOTAL;
> > +		as_sdp->mode = DP_AS_SDP_AVT_DYNAMIC_VTOTAL;
> 
> This is done in patch :
> https://patchwork.freedesktop.org/patch/623895/?series=134383&rev=6
> 
> Perhaps we can include this as part of this series?
> 

Thanks for checking. I will pick https://patchwork.freedesktop.org/patch/623895/?series=134383&rev=6.

Thanks

> Regards,
> 
> Ankit
> 
> >   		as_sdp->vtotal = adjusted_mode->vtotal;
> >   		as_sdp->target_rr = 0;
> >   	}

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

* RE: [PATCH v3 3/3] drm/i915/dp: Compute as_sdp based on if vrr possible
  2024-11-18  8:07   ` Nautiyal, Ankit K
@ 2024-11-20  6:23     ` Golani, Mitulkumar Ajitkumar
  0 siblings, 0 replies; 16+ messages in thread
From: Golani, Mitulkumar Ajitkumar @ 2024-11-20  6:23 UTC (permalink / raw)
  To: Nautiyal, Ankit K, intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com



> -----Original Message-----
> From: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>
> Sent: 18 November 2024 13:38
> To: Golani, Mitulkumar Ajitkumar <mitulkumar.ajitkumar.golani@intel.com>;
> intel-gfx@lists.freedesktop.org
> Cc: ville.syrjala@linux.intel.com
> Subject: Re: [PATCH v3 3/3] drm/i915/dp: Compute as_sdp based on if vrr
> possible
> 
> 
> On 10/21/2024 4:21 PM, Mitul Golani wrote:
> > Adaptive sync sdp param computation, specifically minimum vtotal is
> > blocking vrr enable and disable fastset requirements in certain
> > scenario i.e. during null modeset, this minimum vtotal we can
> > configure during full modeset as well when sink is having vrr support,
> > where it doesn't need dependency on vrr.enable status and can also
> > match vrr enable/disable fastset requirement.
> >
> > Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
> > ---
> >   drivers/gpu/drm/i915/display/intel_dp.c | 4 ++--
> >   1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c
> > b/drivers/gpu/drm/i915/display/intel_dp.c
> > index b1f68fff524d..0fefe6f16257 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> > @@ -2769,7 +2769,7 @@ static void intel_dp_compute_as_sdp(struct
> intel_dp *intel_dp,
> >   	const struct drm_display_mode *adjusted_mode =
> >   		&crtc_state->hw.adjusted_mode;
> >
> > -	if (!crtc_state->vrr.enable || !intel_dp->as_sdp_supported)
> > +	if (!intel_vrr_possible(crtc_state) || !intel_dp->as_sdp_supported)
> >   		return;
> >
> >   	crtc_state->infoframes.enable |=
> > intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC);
> > @@ -2786,7 +2786,7 @@ static void intel_dp_compute_as_sdp(struct
> intel_dp *intel_dp,
> >   		as_sdp->target_rr_divider = true;
> >   	} else {
> >   		as_sdp->mode = DP_AS_SDP_AVT_DYNAMIC_VTOTAL;
> > -		as_sdp->vtotal = adjusted_mode->vtotal;
> > +		as_sdp->vtotal = crtc_state->vrr.vmin + 1;
> 
> Yes vrr vmin should be correct thing here for DB1 and DB2, but we do not
> need to add 1 here.
> 
> Also, this should be a separate patch.

Agreed,

I will separate these patches. Thanks for review Ankit.

Regards,
Mitul

> 
> Regards,
> 
> Ankit
> 
> >   		as_sdp->target_rr = 0;
> >   	}
> >   }

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

end of thread, other threads:[~2024-11-20  6:23 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-21 10:50 [PATCH v3 0/3] Add AS_SDP to fastset Mitul Golani
2024-10-21 10:50 ` [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start, end} computation Mitul Golani
2024-10-29  2:58   ` Golani, Mitulkumar Ajitkumar
2024-11-18  7:55   ` [PATCH v3 1/3] drm/i915/vrr: Update vrr.vsync_{start,end} computation Nautiyal, Ankit K
2024-11-20  5:57     ` Golani, Mitulkumar Ajitkumar
2024-10-21 10:50 ` [PATCH v3 2/3] drm/i915/dp: Set FAVT mode in DP SDP with fixed refresh rate Mitul Golani
2024-11-18  8:00   ` Nautiyal, Ankit K
2024-11-20  6:22     ` Golani, Mitulkumar Ajitkumar
2024-10-21 10:51 ` [PATCH v3 3/3] drm/i915/dp: Compute as_sdp based on if vrr possible Mitul Golani
2024-11-18  8:07   ` Nautiyal, Ankit K
2024-11-20  6:23     ` Golani, Mitulkumar Ajitkumar
2024-10-21 11:26 ` ✗ Fi.CI.SPARSE: warning for Add AS_SDP to fastset (rev2) Patchwork
2024-10-21 11:37 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-10-22  8:18 ` ✓ Fi.CI.BAT: success " Patchwork
2024-10-22  9:16 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-22 17:41 ` ✓ Fi.CI.IGT: success " Patchwork

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