intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/3] Enable_psr kernel parameter changes
@ 2025-07-15 10:55 Jouni Högander
  2025-07-15 10:55 ` [PATCH v4 1/3] drm/i915/psr: Do not disable Early Transport when enable_psr is set Jouni Högander
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Jouni Högander @ 2025-07-15 10:55 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Jouni Högander

Currently disabling PSR2 via enable_psr module parameter causes Panel
Replay and Early Transport being disabled as well. This patch set
makes Panel Replay and Early Transport to ignore enable_psr module
parameter. Also new enable_panel_replay module parameter is added
which recognizes following values:

-1 = Chip default
 0 = Disable Panel Replay
 1 = Enable Panel Replay

v4:
  - Ignore enable_psr completely on Panel Replay
  - Add new enable_panel_replay parameter
v3:
  - add definitions for disable bits
v2:
  - make it more clear that enable_psr is bitmask for disabling different
    PSR modes

Jouni Högander (3):
  drm/i915/psr: Do not disable Early Transport when enable_psr is set
  drm/i915/psr: Ignore enable_psr parameter on Panel Replay
  drm/i915/psr: Add enable_panel_replay module parameter

 .../drm/i915/display/intel_display_params.c   |  3 ++
 .../drm/i915/display/intel_display_params.h   |  1 +
 drivers/gpu/drm/i915/display/intel_psr.c      | 39 +++++--------------
 3 files changed, 13 insertions(+), 30 deletions(-)

-- 
2.43.0


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

* [PATCH v4 1/3] drm/i915/psr: Do not disable Early Transport when enable_psr is set
  2025-07-15 10:55 [PATCH v4 0/3] Enable_psr kernel parameter changes Jouni Högander
@ 2025-07-15 10:55 ` Jouni Högander
  2025-07-15 19:09   ` Rodrigo Vivi
  2025-07-15 10:55 ` [PATCH v4 2/3] drm/i915/psr: Ignore enable_psr parameter on Panel Replay Jouni Högander
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Jouni Högander @ 2025-07-15 10:55 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Jouni Högander

Current approach is that Early Transport is disabled in case enable_psr
module parameter is set. Let's ignore enable_psr parameter when choosing if
Early Transport can be used.

Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
 drivers/gpu/drm/i915/display/intel_psr.c | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index ae9053919211..a2b5688f0c82 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -265,16 +265,6 @@ static bool psr2_global_enabled(struct intel_dp *intel_dp)
 	}
 }
 
-static bool psr2_su_region_et_global_enabled(struct intel_dp *intel_dp)
-{
-	struct intel_display *display = to_intel_display(intel_dp);
-
-	if (display->params.enable_psr != -1)
-		return false;
-
-	return true;
-}
-
 static bool panel_replay_global_enabled(struct intel_dp *intel_dp)
 {
 	struct intel_display *display = to_intel_display(intel_dp);
@@ -742,8 +732,7 @@ static bool psr2_su_region_et_valid(struct intel_dp *intel_dp, bool panel_replay
 	return panel_replay ?
 		intel_dp->pr_dpcd[INTEL_PR_DPCD_INDEX(DP_PANEL_REPLAY_CAP_SUPPORT)] &
 		DP_PANEL_REPLAY_EARLY_TRANSPORT_SUPPORT :
-		intel_dp->psr_dpcd[0] == DP_PSR2_WITH_Y_COORD_ET_SUPPORTED &&
-		psr2_su_region_et_global_enabled(intel_dp);
+		intel_dp->psr_dpcd[0] == DP_PSR2_WITH_Y_COORD_ET_SUPPORTED;
 }
 
 static void _panel_replay_enable_sink(struct intel_dp *intel_dp,
-- 
2.43.0


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

* [PATCH v4 2/3] drm/i915/psr: Ignore enable_psr parameter on Panel Replay
  2025-07-15 10:55 [PATCH v4 0/3] Enable_psr kernel parameter changes Jouni Högander
  2025-07-15 10:55 ` [PATCH v4 1/3] drm/i915/psr: Do not disable Early Transport when enable_psr is set Jouni Högander
@ 2025-07-15 10:55 ` Jouni Högander
  2025-07-15 19:09   ` Rodrigo Vivi
  2025-07-15 10:55 ` [PATCH v4 3/3] drm/i915/psr: Add enable_panel_replay module parameter Jouni Högander
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Jouni Högander @ 2025-07-15 10:55 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Jouni Högander

Currently we are disabling Panel Replay if enable_psr != -1. Lets ignore
enable_psr completely on Panel Replay.

Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
 drivers/gpu/drm/i915/display/intel_psr.c | 27 ++++++------------------
 1 file changed, 7 insertions(+), 20 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index a2b5688f0c82..ee1f9a240283 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -233,16 +233,12 @@ bool intel_psr_needs_aux_io_power(struct intel_encoder *encoder,
 
 static bool psr_global_enabled(struct intel_dp *intel_dp)
 {
-	struct intel_display *display = to_intel_display(intel_dp);
 	struct intel_connector *connector = intel_dp->attached_connector;
 
 	switch (intel_dp->psr.debug & I915_PSR_DEBUG_MODE_MASK) {
 	case I915_PSR_DEBUG_DEFAULT:
-		if (display->params.enable_psr == -1)
-			return intel_dp_is_edp(intel_dp) ?
-				connector->panel.vbt.psr.enable :
-				true;
-		return display->params.enable_psr;
+		return intel_dp_is_edp(intel_dp) ?
+			connector->panel.vbt.psr.enable : true;
 	case I915_PSR_DEBUG_DISABLE:
 		return false;
 	default:
@@ -250,29 +246,20 @@ static bool psr_global_enabled(struct intel_dp *intel_dp)
 	}
 }
 
-static bool psr2_global_enabled(struct intel_dp *intel_dp)
+static bool sel_update_global_enabled(struct intel_dp *intel_dp)
 {
-	struct intel_display *display = to_intel_display(intel_dp);
-
 	switch (intel_dp->psr.debug & I915_PSR_DEBUG_MODE_MASK) {
 	case I915_PSR_DEBUG_DISABLE:
 	case I915_PSR_DEBUG_FORCE_PSR1:
 		return false;
 	default:
-		if (display->params.enable_psr == 1)
-			return false;
 		return true;
 	}
 }
 
 static bool panel_replay_global_enabled(struct intel_dp *intel_dp)
 {
-	struct intel_display *display = to_intel_display(intel_dp);
-
-	if ((display->params.enable_psr != -1) ||
-	    (intel_dp->psr.debug & I915_PSR_DEBUG_PANEL_REPLAY_DISABLE))
-		return false;
-	return true;
+	return !(intel_dp->psr.debug & I915_PSR_DEBUG_PANEL_REPLAY_DISABLE);
 }
 
 static u32 psr_irq_psr_error_bit_get(struct intel_dp *intel_dp)
@@ -1412,7 +1399,7 @@ static bool intel_psr2_config_valid(struct intel_dp *intel_dp,
 	int crtc_vdisplay = crtc_state->hw.adjusted_mode.crtc_vdisplay;
 	int psr_max_h = 0, psr_max_v = 0, max_bpp = 0;
 
-	if (!intel_dp->psr.sink_psr2_support)
+	if (!intel_dp->psr.sink_psr2_support || display->params.enable_psr == 1)
 		return false;
 
 	/* JSL and EHL only supports eDP 1.3 */
@@ -1517,7 +1504,7 @@ static bool intel_sel_update_config_valid(struct intel_dp *intel_dp,
 		goto unsupported;
 	}
 
-	if (!psr2_global_enabled(intel_dp)) {
+	if (!sel_update_global_enabled(intel_dp)) {
 		drm_dbg_kms(display->drm,
 			    "Selective update disabled by flag\n");
 		goto unsupported;
@@ -1565,7 +1552,7 @@ static bool _psr_compute_config(struct intel_dp *intel_dp,
 	const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
 	int entry_setup_frames;
 
-	if (!CAN_PSR(intel_dp))
+	if (!CAN_PSR(intel_dp) || !display->params.enable_psr)
 		return false;
 
 	/*
-- 
2.43.0


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

* [PATCH v4 3/3] drm/i915/psr: Add enable_panel_replay module parameter
  2025-07-15 10:55 [PATCH v4 0/3] Enable_psr kernel parameter changes Jouni Högander
  2025-07-15 10:55 ` [PATCH v4 1/3] drm/i915/psr: Do not disable Early Transport when enable_psr is set Jouni Högander
  2025-07-15 10:55 ` [PATCH v4 2/3] drm/i915/psr: Ignore enable_psr parameter on Panel Replay Jouni Högander
@ 2025-07-15 10:55 ` Jouni Högander
  2025-07-15 19:10   ` Rodrigo Vivi
  2025-07-15 20:43 ` ✓ i915.CI.BAT: success for Enable_psr kernel parameter changes (rev4) Patchwork
  2025-07-16  4:24 ` ✗ i915.CI.Full: failure " Patchwork
  4 siblings, 1 reply; 11+ messages in thread
From: Jouni Högander @ 2025-07-15 10:55 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Jouni Högander

Add new module parameter enable_panel_replay. This can be used to
enable/disable Panel Replay. 0=disabled, 1=enabled. -1=use per-chip default
(default).

Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
 drivers/gpu/drm/i915/display/intel_display_params.c | 3 +++
 drivers/gpu/drm/i915/display/intel_display_params.h | 1 +
 drivers/gpu/drm/i915/display/intel_psr.c            | 5 ++++-
 3 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display_params.c b/drivers/gpu/drm/i915/display/intel_display_params.c
index 75316247ee8a..2aed110c5b09 100644
--- a/drivers/gpu/drm/i915/display/intel_display_params.c
+++ b/drivers/gpu/drm/i915/display/intel_display_params.c
@@ -120,6 +120,9 @@ intel_display_param_named_unsafe(enable_psr, int, 0400,
 	"(0=disabled, 1=enable up to PSR1, 2=enable up to PSR2) "
 	"Default: -1 (use per-chip default)");
 
+intel_display_param_named_unsafe(enable_panel_replay, int, 0400,
+	"Enable Panel Replay (0=disabled, 1=enabled). Default: -1 (use per-chip default)");
+
 intel_display_param_named(psr_safest_params, bool, 0400,
 	"Replace PSR VBT parameters by the safest and not optimal ones. This "
 	"is helpful to detect if PSR issues are related to bad values set in "
diff --git a/drivers/gpu/drm/i915/display/intel_display_params.h b/drivers/gpu/drm/i915/display/intel_display_params.h
index 784e6bae8615..b01bc5700c52 100644
--- a/drivers/gpu/drm/i915/display/intel_display_params.h
+++ b/drivers/gpu/drm/i915/display/intel_display_params.h
@@ -46,6 +46,7 @@ struct drm_printer;
 	param(bool, enable_dp_mst, true, 0600) \
 	param(int, enable_fbc, -1, 0600) \
 	param(int, enable_psr, -1, 0600) \
+	param(int, enable_panel_replay, -1, 0600) \
 	param(bool, psr_safest_params, false, 0400) \
 	param(bool, enable_psr2_sel_fetch, true, 0400) \
 	param(int, enable_dmc_wl, -1, 0400) \
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index ee1f9a240283..6bd3454bb00e 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -259,7 +259,10 @@ static bool sel_update_global_enabled(struct intel_dp *intel_dp)
 
 static bool panel_replay_global_enabled(struct intel_dp *intel_dp)
 {
-	return !(intel_dp->psr.debug & I915_PSR_DEBUG_PANEL_REPLAY_DISABLE);
+	struct intel_display *display = to_intel_display(intel_dp);
+
+	return !(intel_dp->psr.debug & I915_PSR_DEBUG_PANEL_REPLAY_DISABLE) &&
+		display->params.enable_panel_replay;
 }
 
 static u32 psr_irq_psr_error_bit_get(struct intel_dp *intel_dp)
-- 
2.43.0


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

* Re: [PATCH v4 1/3] drm/i915/psr: Do not disable Early Transport when enable_psr is set
  2025-07-15 10:55 ` [PATCH v4 1/3] drm/i915/psr: Do not disable Early Transport when enable_psr is set Jouni Högander
@ 2025-07-15 19:09   ` Rodrigo Vivi
  2025-07-21  8:02     ` Hogander, Jouni
  0 siblings, 1 reply; 11+ messages in thread
From: Rodrigo Vivi @ 2025-07-15 19:09 UTC (permalink / raw)
  To: Jouni Högander; +Cc: intel-gfx, intel-xe

On Tue, Jul 15, 2025 at 01:55:07PM +0300, Jouni Högander wrote:
> Current approach is that Early Transport is disabled in case enable_psr
> module parameter is set. Let's ignore enable_psr parameter when choosing if
> Early Transport can be used.
> 
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>

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

> ---
>  drivers/gpu/drm/i915/display/intel_psr.c | 13 +------------
>  1 file changed, 1 insertion(+), 12 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
> index ae9053919211..a2b5688f0c82 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.c
> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> @@ -265,16 +265,6 @@ static bool psr2_global_enabled(struct intel_dp *intel_dp)
>  	}
>  }
>  
> -static bool psr2_su_region_et_global_enabled(struct intel_dp *intel_dp)
> -{
> -	struct intel_display *display = to_intel_display(intel_dp);
> -
> -	if (display->params.enable_psr != -1)
> -		return false;
> -
> -	return true;
> -}
> -
>  static bool panel_replay_global_enabled(struct intel_dp *intel_dp)
>  {
>  	struct intel_display *display = to_intel_display(intel_dp);
> @@ -742,8 +732,7 @@ static bool psr2_su_region_et_valid(struct intel_dp *intel_dp, bool panel_replay
>  	return panel_replay ?
>  		intel_dp->pr_dpcd[INTEL_PR_DPCD_INDEX(DP_PANEL_REPLAY_CAP_SUPPORT)] &
>  		DP_PANEL_REPLAY_EARLY_TRANSPORT_SUPPORT :
> -		intel_dp->psr_dpcd[0] == DP_PSR2_WITH_Y_COORD_ET_SUPPORTED &&
> -		psr2_su_region_et_global_enabled(intel_dp);
> +		intel_dp->psr_dpcd[0] == DP_PSR2_WITH_Y_COORD_ET_SUPPORTED;
>  }
>  
>  static void _panel_replay_enable_sink(struct intel_dp *intel_dp,
> -- 
> 2.43.0
> 

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

* Re: [PATCH v4 2/3] drm/i915/psr: Ignore enable_psr parameter on Panel Replay
  2025-07-15 10:55 ` [PATCH v4 2/3] drm/i915/psr: Ignore enable_psr parameter on Panel Replay Jouni Högander
@ 2025-07-15 19:09   ` Rodrigo Vivi
  0 siblings, 0 replies; 11+ messages in thread
From: Rodrigo Vivi @ 2025-07-15 19:09 UTC (permalink / raw)
  To: Jouni Högander; +Cc: intel-gfx, intel-xe

On Tue, Jul 15, 2025 at 01:55:08PM +0300, Jouni Högander wrote:
> Currently we are disabling Panel Replay if enable_psr != -1. Lets ignore
> enable_psr completely on Panel Replay.
> 
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>

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

> ---
>  drivers/gpu/drm/i915/display/intel_psr.c | 27 ++++++------------------
>  1 file changed, 7 insertions(+), 20 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
> index a2b5688f0c82..ee1f9a240283 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.c
> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> @@ -233,16 +233,12 @@ bool intel_psr_needs_aux_io_power(struct intel_encoder *encoder,
>  
>  static bool psr_global_enabled(struct intel_dp *intel_dp)
>  {
> -	struct intel_display *display = to_intel_display(intel_dp);
>  	struct intel_connector *connector = intel_dp->attached_connector;
>  
>  	switch (intel_dp->psr.debug & I915_PSR_DEBUG_MODE_MASK) {
>  	case I915_PSR_DEBUG_DEFAULT:
> -		if (display->params.enable_psr == -1)
> -			return intel_dp_is_edp(intel_dp) ?
> -				connector->panel.vbt.psr.enable :
> -				true;
> -		return display->params.enable_psr;
> +		return intel_dp_is_edp(intel_dp) ?
> +			connector->panel.vbt.psr.enable : true;
>  	case I915_PSR_DEBUG_DISABLE:
>  		return false;
>  	default:
> @@ -250,29 +246,20 @@ static bool psr_global_enabled(struct intel_dp *intel_dp)
>  	}
>  }
>  
> -static bool psr2_global_enabled(struct intel_dp *intel_dp)
> +static bool sel_update_global_enabled(struct intel_dp *intel_dp)
>  {
> -	struct intel_display *display = to_intel_display(intel_dp);
> -
>  	switch (intel_dp->psr.debug & I915_PSR_DEBUG_MODE_MASK) {
>  	case I915_PSR_DEBUG_DISABLE:
>  	case I915_PSR_DEBUG_FORCE_PSR1:
>  		return false;
>  	default:
> -		if (display->params.enable_psr == 1)
> -			return false;
>  		return true;
>  	}
>  }
>  
>  static bool panel_replay_global_enabled(struct intel_dp *intel_dp)
>  {
> -	struct intel_display *display = to_intel_display(intel_dp);
> -
> -	if ((display->params.enable_psr != -1) ||
> -	    (intel_dp->psr.debug & I915_PSR_DEBUG_PANEL_REPLAY_DISABLE))
> -		return false;
> -	return true;
> +	return !(intel_dp->psr.debug & I915_PSR_DEBUG_PANEL_REPLAY_DISABLE);
>  }
>  
>  static u32 psr_irq_psr_error_bit_get(struct intel_dp *intel_dp)
> @@ -1412,7 +1399,7 @@ static bool intel_psr2_config_valid(struct intel_dp *intel_dp,
>  	int crtc_vdisplay = crtc_state->hw.adjusted_mode.crtc_vdisplay;
>  	int psr_max_h = 0, psr_max_v = 0, max_bpp = 0;
>  
> -	if (!intel_dp->psr.sink_psr2_support)
> +	if (!intel_dp->psr.sink_psr2_support || display->params.enable_psr == 1)
>  		return false;
>  
>  	/* JSL and EHL only supports eDP 1.3 */
> @@ -1517,7 +1504,7 @@ static bool intel_sel_update_config_valid(struct intel_dp *intel_dp,
>  		goto unsupported;
>  	}
>  
> -	if (!psr2_global_enabled(intel_dp)) {
> +	if (!sel_update_global_enabled(intel_dp)) {
>  		drm_dbg_kms(display->drm,
>  			    "Selective update disabled by flag\n");
>  		goto unsupported;
> @@ -1565,7 +1552,7 @@ static bool _psr_compute_config(struct intel_dp *intel_dp,
>  	const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
>  	int entry_setup_frames;
>  
> -	if (!CAN_PSR(intel_dp))
> +	if (!CAN_PSR(intel_dp) || !display->params.enable_psr)
>  		return false;
>  
>  	/*
> -- 
> 2.43.0
> 

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

* Re: [PATCH v4 3/3] drm/i915/psr: Add enable_panel_replay module parameter
  2025-07-15 10:55 ` [PATCH v4 3/3] drm/i915/psr: Add enable_panel_replay module parameter Jouni Högander
@ 2025-07-15 19:10   ` Rodrigo Vivi
  0 siblings, 0 replies; 11+ messages in thread
From: Rodrigo Vivi @ 2025-07-15 19:10 UTC (permalink / raw)
  To: Jouni Högander; +Cc: intel-gfx, intel-xe

On Tue, Jul 15, 2025 at 01:55:09PM +0300, Jouni Högander wrote:
> Add new module parameter enable_panel_replay. This can be used to
> enable/disable Panel Replay. 0=disabled, 1=enabled. -1=use per-chip default
> (default).
> 
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>

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

> ---
>  drivers/gpu/drm/i915/display/intel_display_params.c | 3 +++
>  drivers/gpu/drm/i915/display/intel_display_params.h | 1 +
>  drivers/gpu/drm/i915/display/intel_psr.c            | 5 ++++-
>  3 files changed, 8 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display_params.c b/drivers/gpu/drm/i915/display/intel_display_params.c
> index 75316247ee8a..2aed110c5b09 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_params.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_params.c
> @@ -120,6 +120,9 @@ intel_display_param_named_unsafe(enable_psr, int, 0400,
>  	"(0=disabled, 1=enable up to PSR1, 2=enable up to PSR2) "
>  	"Default: -1 (use per-chip default)");
>  
> +intel_display_param_named_unsafe(enable_panel_replay, int, 0400,
> +	"Enable Panel Replay (0=disabled, 1=enabled). Default: -1 (use per-chip default)");
> +
>  intel_display_param_named(psr_safest_params, bool, 0400,
>  	"Replace PSR VBT parameters by the safest and not optimal ones. This "
>  	"is helpful to detect if PSR issues are related to bad values set in "
> diff --git a/drivers/gpu/drm/i915/display/intel_display_params.h b/drivers/gpu/drm/i915/display/intel_display_params.h
> index 784e6bae8615..b01bc5700c52 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_params.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_params.h
> @@ -46,6 +46,7 @@ struct drm_printer;
>  	param(bool, enable_dp_mst, true, 0600) \
>  	param(int, enable_fbc, -1, 0600) \
>  	param(int, enable_psr, -1, 0600) \
> +	param(int, enable_panel_replay, -1, 0600) \
>  	param(bool, psr_safest_params, false, 0400) \
>  	param(bool, enable_psr2_sel_fetch, true, 0400) \
>  	param(int, enable_dmc_wl, -1, 0400) \
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
> index ee1f9a240283..6bd3454bb00e 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.c
> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> @@ -259,7 +259,10 @@ static bool sel_update_global_enabled(struct intel_dp *intel_dp)
>  
>  static bool panel_replay_global_enabled(struct intel_dp *intel_dp)
>  {
> -	return !(intel_dp->psr.debug & I915_PSR_DEBUG_PANEL_REPLAY_DISABLE);
> +	struct intel_display *display = to_intel_display(intel_dp);
> +
> +	return !(intel_dp->psr.debug & I915_PSR_DEBUG_PANEL_REPLAY_DISABLE) &&
> +		display->params.enable_panel_replay;
>  }
>  
>  static u32 psr_irq_psr_error_bit_get(struct intel_dp *intel_dp)
> -- 
> 2.43.0
> 

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

* ✓ i915.CI.BAT: success for Enable_psr kernel parameter changes (rev4)
  2025-07-15 10:55 [PATCH v4 0/3] Enable_psr kernel parameter changes Jouni Högander
                   ` (2 preceding siblings ...)
  2025-07-15 10:55 ` [PATCH v4 3/3] drm/i915/psr: Add enable_panel_replay module parameter Jouni Högander
@ 2025-07-15 20:43 ` Patchwork
  2025-07-16  4:24 ` ✗ i915.CI.Full: failure " Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-07-15 20:43 UTC (permalink / raw)
  To: Jouni Högander; +Cc: intel-gfx

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

== Series Details ==

Series: Enable_psr kernel parameter changes (rev4)
URL   : https://patchwork.freedesktop.org/series/151260/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_16867 -> Patchwork_151260v4
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live:
    - bat-mtlp-8:         [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/bat-mtlp-8/igt@i915_selftest@live.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/bat-mtlp-8/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - bat-dg2-14:         [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/bat-dg2-14/igt@i915_selftest@live@workarounds.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/bat-dg2-14/igt@i915_selftest@live@workarounds.html

  * igt@kms_pm_rpm@basic-rte:
    - bat-rpls-4:         [PASS][5] -> [DMESG-WARN][6] ([i915#13400])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html

  
#### Possible fixes ####

  * igt@gem_exec_fence@basic-await@vecs0:
    - bat-rpls-4:         [DMESG-WARN][7] ([i915#13400]) -> [PASS][8] +1 other test pass
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/bat-rpls-4/igt@gem_exec_fence@basic-await@vecs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/bat-rpls-4/igt@gem_exec_fence@basic-await@vecs0.html

  * igt@i915_module_load@load:
    - bat-mtlp-9:         [DMESG-WARN][9] ([i915#13494]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/bat-mtlp-9/igt@i915_module_load@load.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/bat-mtlp-9/igt@i915_module_load@load.html

  
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
  [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494


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

  * Linux: CI_DRM_16867 -> Patchwork_151260v4

  CI-20190529: 20190529
  CI_DRM_16867: 64f56ca0926a30d50bcc0c215b262f5149c7e5cd @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8459: 8459
  Patchwork_151260v4: 64f56ca0926a30d50bcc0c215b262f5149c7e5cd @ git://anongit.freedesktop.org/gfx-ci/linux

== Logs ==

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

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

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

* ✗ i915.CI.Full: failure for Enable_psr kernel parameter changes (rev4)
  2025-07-15 10:55 [PATCH v4 0/3] Enable_psr kernel parameter changes Jouni Högander
                   ` (3 preceding siblings ...)
  2025-07-15 20:43 ` ✓ i915.CI.BAT: success for Enable_psr kernel parameter changes (rev4) Patchwork
@ 2025-07-16  4:24 ` Patchwork
  2025-07-21  7:53   ` Hogander, Jouni
  4 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2025-07-16  4:24 UTC (permalink / raw)
  To: Jouni Högander; +Cc: intel-gfx

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

== Series Details ==

Series: Enable_psr kernel parameter changes (rev4)
URL   : https://patchwork.freedesktop.org/series/151260/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_16867_full -> Patchwork_151260v4_full
====================================================

Summary
-------

  **FAILURE**

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

  Missing    (1): shard-snb-0 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@2x-dpms-vs-vblank-race@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          NOTRUN -> [FAIL][1] +3 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk9/igt@kms_flip@2x-dpms-vs-vblank-race@ac-hdmi-a1-hdmi-a2.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@crc32:
    - shard-tglu:         NOTRUN -> [SKIP][2] ([i915#6230])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@api_intel_bb@crc32.html

  * igt@api_intel_bb@object-reloc-purge-cache:
    - shard-rkl:          NOTRUN -> [SKIP][3] ([i915#14544] / [i915#8411])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-tglu:         NOTRUN -> [SKIP][4] ([i915#11078])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@device_reset@unbind-cold-reset-rebind.html

  * igt@gem_busy@semaphore:
    - shard-dg2:          NOTRUN -> [SKIP][5] ([i915#3936])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@gem_busy@semaphore.html

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-tglu-1:       NOTRUN -> [SKIP][6] ([i915#9323])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html

  * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0:
    - shard-dg2:          NOTRUN -> [INCOMPLETE][7] ([i915#12392] / [i915#13356])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-tglu:         NOTRUN -> [SKIP][8] ([i915#7697])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_close_race@multigpu-basic-threads:
    - shard-rkl:          NOTRUN -> [SKIP][9] ([i915#7697])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_close_race@multigpu-basic-threads.html
    - shard-tglu-1:       NOTRUN -> [SKIP][10] ([i915#7697])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html

  * igt@gem_create@create-ext-cpu-access-big:
    - shard-dg2:          NOTRUN -> [ABORT][11] ([i915#13427])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html

  * igt@gem_ctx_isolation@preservation-s3:
    - shard-rkl:          [PASS][12] -> [INCOMPLETE][13] ([i915#12353]) +1 other test incomplete
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - shard-glk:          NOTRUN -> [INCOMPLETE][14] ([i915#12353]) +1 other test incomplete
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk9/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_ctx_persistence@hang:
    - shard-dg2-9:        NOTRUN -> [SKIP][15] ([i915#8555])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_ctx_persistence@hang.html

  * igt@gem_ctx_persistence@heartbeat-stop:
    - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#8555]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-stop.html

  * igt@gem_ctx_persistence@processes:
    - shard-snb:          NOTRUN -> [SKIP][17] ([i915#1099]) +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-snb7/igt@gem_ctx_persistence@processes.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-dg2:          NOTRUN -> [SKIP][18] ([i915#280])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_eio@kms:
    - shard-dg2:          [PASS][19] -> [FAIL][20] ([i915#5784])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-11/igt@gem_eio@kms.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@gem_eio@kms.html

  * igt@gem_eio@unwedge-stress:
    - shard-dg1:          [PASS][21] -> [FAIL][22] ([i915#5784]) +1 other test fail
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-17/igt@gem_eio@unwedge-stress.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-17/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
    - shard-tglu-1:       NOTRUN -> [SKIP][23] ([i915#4525])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html

  * igt@gem_exec_balancer@sliced:
    - shard-dg2:          NOTRUN -> [SKIP][24] ([i915#4812])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@gem_exec_balancer@sliced.html

  * igt@gem_exec_capture@capture-invisible@smem0:
    - shard-tglu-1:       NOTRUN -> [SKIP][25] ([i915#6334]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html

  * igt@gem_exec_fence@submit67:
    - shard-dg2-9:        NOTRUN -> [SKIP][26] ([i915#4812]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_exec_fence@submit67.html

  * igt@gem_exec_flush@basic-uc-pro-default:
    - shard-dg2:          NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@gem_exec_flush@basic-uc-pro-default.html

  * igt@gem_exec_flush@basic-wb-set-default:
    - shard-dg2-9:        NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_exec_flush@basic-wb-set-default.html

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

  * igt@gem_exec_reloc@basic-wc-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][30] ([i915#3281]) +4 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_exec_reloc@basic-wc-gtt.html

  * igt@gem_exec_reloc@basic-wc-gtt-noreloc:
    - shard-rkl:          NOTRUN -> [SKIP][31] ([i915#14544] / [i915#3281])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html

  * igt@gem_exec_reloc@basic-write-read:
    - shard-dg2-9:        NOTRUN -> [SKIP][32] ([i915#3281]) +4 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_exec_reloc@basic-write-read.html

  * igt@gem_exec_schedule@preempt-queue-chain:
    - shard-dg2-9:        NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-chain.html

  * igt@gem_exec_schedule@semaphore-power:
    - shard-dg2:          NOTRUN -> [SKIP][34] ([i915#4537] / [i915#4812]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_exec_whisper@basic-queues-priority-all:
    - shard-rkl:          NOTRUN -> [DMESG-WARN][35] ([i915#12964]) +8 other tests dmesg-warn
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_exec_whisper@basic-queues-priority-all.html

  * igt@gem_fence_thrash@bo-write-verify-x:
    - shard-dg2-9:        NOTRUN -> [SKIP][36] ([i915#4860])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-x.html

  * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][37] ([i915#4860]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html

  * igt@gem_lmem_swapping@parallel-random:
    - shard-rkl:          NOTRUN -> [SKIP][38] ([i915#4613])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_lmem_swapping@parallel-random.html
    - shard-tglu-1:       NOTRUN -> [SKIP][39] ([i915#4613]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gem_lmem_swapping@parallel-random.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-glk:          NOTRUN -> [SKIP][40] ([i915#4613]) +3 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk9/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@verify-random-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][41] ([i915#4613])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@gem_lmem_swapping@verify-random-ccs.html

  * igt@gem_media_fill@media-fill:
    - shard-dg2:          NOTRUN -> [SKIP][42] ([i915#8289])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@gem_media_fill@media-fill.html

  * igt@gem_mmap_gtt@fault-concurrent-x:
    - shard-dg2-9:        NOTRUN -> [SKIP][43] ([i915#4077]) +9 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_mmap_gtt@fault-concurrent-x.html

  * igt@gem_mmap_gtt@fault-concurrent-y:
    - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#4077]) +8 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@gem_mmap_gtt@fault-concurrent-y.html

  * igt@gem_mmap_gtt@medium-copy-odd:
    - shard-rkl:          [PASS][45] -> [DMESG-WARN][46] ([i915#12917] / [i915#12964])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_mmap_gtt@medium-copy-odd.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_mmap_gtt@medium-copy-odd.html

  * igt@gem_mmap_wc@bad-object:
    - shard-dg2-9:        NOTRUN -> [SKIP][47] ([i915#4083]) +2 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_mmap_wc@bad-object.html

  * igt@gem_mmap_wc@close:
    - shard-dg2:          NOTRUN -> [SKIP][48] ([i915#4083]) +4 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_mmap_wc@close.html

  * igt@gem_partial_pwrite_pread@write-snoop:
    - shard-rkl:          NOTRUN -> [SKIP][49] ([i915#14544] / [i915#3282])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-display:
    - shard-dg2:          NOTRUN -> [SKIP][50] ([i915#3282]) +5 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html

  * igt@gem_pread@snoop:
    - shard-dg2-9:        NOTRUN -> [SKIP][51] ([i915#3282]) +3 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_pread@snoop.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-rkl:          NOTRUN -> [SKIP][52] ([i915#3282])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_pwrite@basic-exhaustion.html
    - shard-tglu-1:       NOTRUN -> [WARN][53] ([i915#2658])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@create-regular-context-1:
    - shard-dg2-9:        NOTRUN -> [SKIP][54] ([i915#4270]) +2 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_pxp@create-regular-context-1.html

  * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
    - shard-dg2:          NOTRUN -> [SKIP][55] ([i915#4270]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html

  * igt@gem_pxp@protected-raw-src-copy-not-readible:
    - shard-rkl:          NOTRUN -> [TIMEOUT][56] ([i915#12917] / [i915#12964])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html

  * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
    - shard-rkl:          [PASS][57] -> [TIMEOUT][58] ([i915#12917] / [i915#12964]) +2 other tests timeout
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-7/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
    - shard-dg2-9:        NOTRUN -> [SKIP][59] ([i915#5190] / [i915#8428]) +4 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html

  * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#5190] / [i915#8428]) +3 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html

  * igt@gem_softpin@noreloc-s3:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][61] ([i915#13809])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_softpin@noreloc-s3.html

  * igt@gem_tiled_pread_pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][62] ([i915#4079]) +1 other test skip
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_tiled_pread_pwrite.html

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

  * igt@gem_userptr_blits@readonly-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][64] ([i915#3297])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@gem_userptr_blits@readonly-unsync.html

  * igt@gem_userptr_blits@relocations:
    - shard-rkl:          NOTRUN -> [SKIP][65] ([i915#3281] / [i915#3297])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_userptr_blits@relocations.html

  * igt@gem_userptr_blits@unsync-unmap:
    - shard-dg2:          NOTRUN -> [SKIP][66] ([i915#3297]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_userptr_blits@unsync-unmap.html

  * igt@gen3_render_linear_blits:
    - shard-rkl:          NOTRUN -> [SKIP][67]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gen3_render_linear_blits.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-tglu-1:       NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-rkl:          NOTRUN -> [SKIP][69] ([i915#2527])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@basic-rejected-ctx-param:
    - shard-dg2-9:        NOTRUN -> [SKIP][70] ([i915#2856]) +2 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gen9_exec_parse@basic-rejected-ctx-param.html

  * igt@gen9_exec_parse@cmd-crossing-page:
    - shard-dg2:          NOTRUN -> [SKIP][71] ([i915#2856]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@gen9_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@unaligned-jump:
    - shard-tglu:         NOTRUN -> [SKIP][72] ([i915#2527] / [i915#2856]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@gen9_exec_parse@unaligned-jump.html

  * igt@i915_drm_fdinfo@busy-idle-check-all@vcs0:
    - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#11527]) +7 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html

  * igt@i915_drm_fdinfo@most-busy-idle-check-all:
    - shard-dg2-9:        NOTRUN -> [SKIP][74] ([i915#14073]) +7 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@i915_drm_fdinfo@most-busy-idle-check-all.html

  * igt@i915_drm_fdinfo@virtual-busy:
    - shard-dg2-9:        NOTRUN -> [SKIP][75] ([i915#14118])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@i915_drm_fdinfo@virtual-busy.html

  * igt@i915_fb_tiling@basic-x-tiling:
    - shard-dg2-9:        NOTRUN -> [SKIP][76] ([i915#13786])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@i915_fb_tiling@basic-x-tiling.html

  * igt@i915_pm_freq_api@freq-reset-multiple:
    - shard-tglu:         NOTRUN -> [SKIP][77] ([i915#8399]) +1 other test skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@i915_pm_freq_api@freq-reset-multiple.html

  * igt@i915_pm_rpm@gem-execbuf-stress:
    - shard-rkl:          [PASS][78] -> [SKIP][79] ([i915#13328])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-7/igt@i915_pm_rpm@gem-execbuf-stress.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-7/igt@i915_pm_rpm@gem-execbuf-stress.html

  * igt@i915_pm_rps@min-max-config-idle:
    - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#11681] / [i915#6621])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@i915_pm_rps@min-max-config-idle.html

  * igt@i915_pm_rps@thresholds-park:
    - shard-dg2-9:        NOTRUN -> [SKIP][81] ([i915#11681]) +1 other test skip
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@i915_pm_rps@thresholds-park.html

  * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
    - shard-dg2-9:        NOTRUN -> [SKIP][82] ([i915#4212])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][83] ([i915#4212])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_async_flips@invalid-async-flip-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][84] ([i915#12967])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_async_flips@invalid-async-flip-atomic.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-dg2:          [PASS][85] -> [FAIL][86] ([i915#5956])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-glk:          NOTRUN -> [SKIP][87] ([i915#1769])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
    - shard-dg2:          NOTRUN -> [SKIP][88] ([i915#1769] / [i915#3555])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [FAIL][89] ([i915#5956])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-dg2-9:        NOTRUN -> [SKIP][90] ([i915#1769] / [i915#3555])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-180:
    - shard-tglu-1:       NOTRUN -> [SKIP][91] ([i915#5286]) +2 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-tglu:         NOTRUN -> [SKIP][93] ([i915#5286]) +2 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][94] ([i915#5286])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-0:
    - shard-glk11:        NOTRUN -> [SKIP][95] +294 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk11/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-0:
    - shard-dg2:          NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5190]) +9 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-0:
    - shard-dg2-9:        NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5190]) +7 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-rkl:          NOTRUN -> [SKIP][98] ([i915#14544]) +6 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

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

  * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][100] ([i915#6095]) +29 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][101] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
    - shard-dg2-9:        NOTRUN -> [SKIP][102] ([i915#12313]) +1 other test skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
    - shard-dg2-9:        NOTRUN -> [SKIP][103] ([i915#10307] / [i915#6095]) +34 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][104] ([i915#6095]) +29 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][105] ([i915#12313])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
    - shard-rkl:          [PASS][106] -> [SKIP][107] ([i915#14544]) +26 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
    - shard-dg1:          NOTRUN -> [SKIP][108] ([i915#6095]) +123 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-dg2-9:        NOTRUN -> [SKIP][109] ([i915#12805])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][110] ([i915#6095]) +21 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
    - shard-tglu-1:       NOTRUN -> [SKIP][111] ([i915#12313])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][112] ([i915#14098] / [i915#6095]) +25 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][113] ([i915#6095]) +30 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][114] ([i915#12313])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][115] ([i915#10307] / [i915#6095]) +134 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2:          NOTRUN -> [SKIP][116] ([i915#13784])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][117] ([i915#13781]) +3 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html

  * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:
    - shard-dg2-9:        NOTRUN -> [SKIP][118] ([i915#13783]) +4 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-dg2:          NOTRUN -> [SKIP][119] +4 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-tglu-1:       NOTRUN -> [SKIP][120] ([i915#11151] / [i915#7828]) +4 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_chamelium_frames@hdmi-crc-multiple:
    - shard-dg2:          NOTRUN -> [SKIP][121] ([i915#11151] / [i915#7828]) +5 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-multiple.html

  * igt@kms_chamelium_hpd@hdmi-hpd-fast:
    - shard-rkl:          NOTRUN -> [SKIP][122] ([i915#11151] / [i915#7828])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_chamelium_hpd@hdmi-hpd-fast.html

  * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
    - shard-tglu:         NOTRUN -> [SKIP][123] ([i915#11151] / [i915#7828]) +2 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@vga-hpd:
    - shard-dg2-9:        NOTRUN -> [SKIP][124] ([i915#11151] / [i915#7828]) +8 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd.html

  * igt@kms_color@ctm-green-to-red:
    - shard-rkl:          [PASS][125] -> [SKIP][126] ([i915#12655] / [i915#14544])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@kms_color@ctm-green-to-red.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_color@ctm-green-to-red.html

  * igt@kms_color@deep-color:
    - shard-dg2:          [PASS][127] -> [SKIP][128] ([i915#12655] / [i915#3555])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-11/igt@kms_color@deep-color.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@kms_color@deep-color.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][129] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-dg2:          NOTRUN -> [SKIP][130] ([i915#3299])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-dg2-9:        NOTRUN -> [SKIP][131] ([i915#3299])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@legacy:
    - shard-dg2-9:        NOTRUN -> [SKIP][132] ([i915#7118] / [i915#9424])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@mei-interface:
    - shard-tglu-1:       NOTRUN -> [SKIP][133] ([i915#6944] / [i915#9424])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@srm:
    - shard-dg2:          NOTRUN -> [FAIL][134] ([i915#7173]) +2 other tests fail
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@uevent@pipe-a-dp-3:
    - shard-dg2:          NOTRUN -> [FAIL][135] ([i915#1339] / [i915#7173])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-3.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-tglu:         NOTRUN -> [SKIP][136] ([i915#13049]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen-256x85:
    - shard-tglu:         [PASS][137] -> [FAIL][138] ([i915#13566]) +3 other tests fail
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html

  * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
    - shard-rkl:          [PASS][139] -> [FAIL][140] ([i915#13566]) +2 other tests fail
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [FAIL][141] ([i915#13566])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-3/igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][142] ([i915#13049])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-dg2-9:        NOTRUN -> [SKIP][143] ([i915#13046] / [i915#5354]) +4 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
    - shard-rkl:          [PASS][144] -> [SKIP][145] ([i915#11190] / [i915#14544]) +1 other test skip
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#13046] / [i915#5354]) +5 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
    - shard-rkl:          [PASS][147] -> [FAIL][148] ([i915#14001] / [i915#2346])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html

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

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2:          NOTRUN -> [SKIP][150] ([i915#4103] / [i915#4213]) +1 other test skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@torture-bo@pipe-a:
    - shard-rkl:          [PASS][151] -> [DMESG-WARN][152] ([i915#12964]) +23 other tests dmesg-warn
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_cursor_legacy@torture-bo@pipe-a.html
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_cursor_legacy@torture-bo@pipe-a.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-tglu-1:       NOTRUN -> [SKIP][153] ([i915#9723])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-dg2-9:        NOTRUN -> [SKIP][154] ([i915#13691])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_aux_dev:
    - shard-dg2:          NOTRUN -> [SKIP][155] ([i915#1257])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_dp_aux_dev.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-dg2:          NOTRUN -> [SKIP][156] ([i915#13749])
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-dg2-9:        NOTRUN -> [SKIP][157] ([i915#13707])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dsc@dsc-basic:
    - shard-tglu:         NOTRUN -> [SKIP][158] ([i915#3555] / [i915#3840])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-dg2:          NOTRUN -> [SKIP][159] ([i915#3840] / [i915#9688])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-rkl:          NOTRUN -> [SKIP][160] ([i915#3840])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
    - shard-tglu-1:       NOTRUN -> [SKIP][161] ([i915#3840])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][162] ([i915#3469])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@display-3x:
    - shard-tglu-1:       NOTRUN -> [SKIP][163] ([i915#1839])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-tglu:         NOTRUN -> [SKIP][164] ([i915#1839])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2:          NOTRUN -> [SKIP][165] ([i915#658])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_feature_discovery@psr1.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-9:        NOTRUN -> [SKIP][166] ([i915#658])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-dg2-9:        NOTRUN -> [SKIP][167] ([i915#9934]) +3 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][168] ([i915#12745] / [i915#4839])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk6/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][169] ([i915#4839])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk6/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][170] ([i915#9934]) +4 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-tglu:         NOTRUN -> [SKIP][171] ([i915#3637] / [i915#9934]) +3 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-tglu-1:       NOTRUN -> [SKIP][172] ([i915#3637] / [i915#9934]) +2 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@flip-vs-fences-interruptible:
    - shard-rkl:          NOTRUN -> [SKIP][173] ([i915#14544] / [i915#3637])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_flip@flip-vs-fences-interruptible.html

  * igt@kms_flip@flip-vs-panning-interruptible:
    - shard-rkl:          [PASS][174] -> [SKIP][175] ([i915#14544] / [i915#3637]) +3 other tests skip
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_flip@flip-vs-panning-interruptible.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_flip@flip-vs-panning-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][176] ([i915#6113])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
    - shard-rkl:          [PASS][177] -> [SKIP][178] ([i915#14544] / [i915#3555]) +1 other test skip
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
    - shard-tglu:         NOTRUN -> [SKIP][179] ([i915#2672] / [i915#3555])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][180] ([i915#2587] / [i915#2672])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][182] ([i915#2587] / [i915#2672] / [i915#3555])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
    - shard-tglu-1:       NOTRUN -> [SKIP][183] ([i915#2587] / [i915#2672]) +1 other test skip
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html

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

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
    - shard-dg2-9:        NOTRUN -> [SKIP][185] ([i915#2672]) +4 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/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-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][186] ([i915#14544] / [i915#3555])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][187] ([i915#2672]) +2 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
    - shard-rkl:          NOTRUN -> [SKIP][188] ([i915#2672]) +1 other test skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
    - shard-dg2-9:        NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555]) +2 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][191] ([i915#8708]) +7 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
    - shard-dg2:          NOTRUN -> [FAIL][192] ([i915#6880])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-dg1:          [PASS][193] -> [DMESG-WARN][194] ([i915#4423])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2-9:        NOTRUN -> [FAIL][195] ([i915#6880])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
    - shard-rkl:          [PASS][196] -> [SKIP][197] ([i915#14544] / [i915#1849] / [i915#5354]) +8 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
    - shard-tglu:         NOTRUN -> [SKIP][198] +37 other tests skip
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-snb:          NOTRUN -> [SKIP][200] +71 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

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

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][202] ([i915#14544] / [i915#1849] / [i915#5354]) +4 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move:
    - shard-dg2-9:        NOTRUN -> [SKIP][203] ([i915#5354]) +19 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
    - shard-rkl:          NOTRUN -> [SKIP][204] ([i915#1825]) +5 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][205] ([i915#3023]) +3 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
    - shard-tglu:         NOTRUN -> [SKIP][206] ([i915#9766])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2-9:        NOTRUN -> [SKIP][207] ([i915#8708]) +13 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][208] ([i915#5354]) +25 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite:
    - shard-tglu-1:       NOTRUN -> [SKIP][209] +41 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-dg2-9:        NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-dg2:          NOTRUN -> [SKIP][211] ([i915#12713])
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-dg2:          [PASS][212] -> [SKIP][213] ([i915#3555] / [i915#8228])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-7/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_hdr@static-toggle:
    - shard-tglu:         NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_hdr@static-toggle.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_invalid_mode@bad-hsync-start:
    - shard-rkl:          [PASS][216] -> [SKIP][217] ([i915#14544] / [i915#3555] / [i915#8826])
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_invalid_mode@bad-hsync-start.html
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_invalid_mode@bad-hsync-start.html

  * igt@kms_invalid_mode@clock-too-high:
    - shard-rkl:          NOTRUN -> [SKIP][218] ([i915#14544] / [i915#3555] / [i915#8826])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_invalid_mode@clock-too-high.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-tglu-1:       NOTRUN -> [SKIP][219] ([i915#12388])
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][220] ([i915#10656]) +1 other test skip
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][221] ([i915#12339])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-rkl:          NOTRUN -> [SKIP][222] ([i915#14544] / [i915#4070] / [i915#4816])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@legacy:
    - shard-dg2:          NOTRUN -> [SKIP][223] ([i915#6301])
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
    - shard-glk11:        NOTRUN -> [SKIP][224] ([i915#11190]) +2 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html

  * igt@kms_plane@plane-position-hole:
    - shard-rkl:          [PASS][225] -> [SKIP][226] ([i915#14544] / [i915#8825])
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane@plane-position-hole.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane@plane-position-hole.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-dg2-9:        NOTRUN -> [SKIP][227] ([i915#13958])
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-dg2:          NOTRUN -> [SKIP][228] ([i915#13046] / [i915#5354] / [i915#9423])
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-dg2-9:        NOTRUN -> [SKIP][229] ([i915#6953] / [i915#9423])
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a:
    - shard-rkl:          NOTRUN -> [SKIP][230] ([i915#12247] / [i915#14544])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
    - shard-rkl:          NOTRUN -> [SKIP][231] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
    - shard-rkl:          NOTRUN -> [SKIP][232] ([i915#12247]) +5 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
    - shard-tglu-1:       NOTRUN -> [SKIP][233] ([i915#12247]) +9 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
    - shard-rkl:          [PASS][234] -> [SKIP][235] ([i915#14544] / [i915#3555] / [i915#8152])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
    - shard-rkl:          [PASS][236] -> [SKIP][237] ([i915#12247] / [i915#14544] / [i915#8152]) +2 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
    - shard-tglu:         NOTRUN -> [SKIP][238] ([i915#12247] / [i915#3555])
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
    - shard-tglu:         NOTRUN -> [SKIP][239] ([i915#12247]) +8 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
    - shard-rkl:          [PASS][240] -> [SKIP][241] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152])
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
    - shard-dg2-9:        NOTRUN -> [SKIP][242] ([i915#12247] / [i915#6953] / [i915#9423])
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
    - shard-dg2-9:        NOTRUN -> [SKIP][243] ([i915#12247]) +3 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-rkl:          [PASS][244] -> [SKIP][245] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
    - shard-rkl:          [PASS][246] -> [SKIP][247] ([i915#12247] / [i915#14544]) +2 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html

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

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-dg2-9:        NOTRUN -> [SKIP][249] ([i915#3828])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-tglu:         NOTRUN -> [SKIP][250] ([i915#3828])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-dg2:          [PASS][251] -> [SKIP][252] ([i915#9519])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-tglu-1:       NOTRUN -> [SKIP][253] ([i915#9519])
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-tglu:         NOTRUN -> [SKIP][254] ([i915#9519]) +1 other test skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_prime@basic-crc-vgem:
    - shard-dg2:          NOTRUN -> [SKIP][255] ([i915#6524] / [i915#6805])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_prime@basic-crc-vgem.html

  * igt@kms_prime@d3hot:
    - shard-dg2-9:        NOTRUN -> [SKIP][256] ([i915#6524] / [i915#6805])
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
    - shard-rkl:          NOTRUN -> [SKIP][257] ([i915#11520] / [i915#14544]) +1 other test skip
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
    - shard-glk11:        NOTRUN -> [SKIP][258] ([i915#11520]) +5 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk11/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
    - shard-dg2-9:        NOTRUN -> [SKIP][259] ([i915#11520]) +7 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-glk:          NOTRUN -> [SKIP][260] ([i915#11520]) +6 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
    - shard-tglu-1:       NOTRUN -> [SKIP][261] ([i915#11520]) +4 other tests skip
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-tglu:         NOTRUN -> [SKIP][262] ([i915#11520]) +3 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
    - shard-dg2:          NOTRUN -> [SKIP][263] ([i915#11520]) +6 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
    - shard-rkl:          NOTRUN -> [SKIP][264] ([i915#11520])
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
    - shard-snb:          NOTRUN -> [SKIP][265] ([i915#11520]) +2 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-snb7/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-rkl:          NOTRUN -> [SKIP][266] ([i915#9683])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_psr2_su@page_flip-p010.html
    - shard-tglu-1:       NOTRUN -> [SKIP][267] ([i915#9683])
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-psr-primary-page-flip:
    - shard-dg2:          NOTRUN -> [SKIP][268] ([i915#1072] / [i915#9732]) +18 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_psr@fbc-psr-primary-page-flip.html

  * igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
    - shard-glk:          NOTRUN -> [SKIP][269] +191 other tests skip
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk9/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html

  * igt@kms_psr@pr-basic:
    - shard-rkl:          NOTRUN -> [SKIP][270] ([i915#1072] / [i915#9732]) +3 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_psr@pr-basic.html

  * igt@kms_psr@pr-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][271] ([i915#9732]) +9 other tests skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_psr@pr-dpms.html

  * igt@kms_psr@psr-primary-mmap-cpu:
    - shard-dg2-9:        NOTRUN -> [SKIP][272] ([i915#1072] / [i915#9732]) +14 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_psr@psr-primary-mmap-cpu.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - shard-rkl:          NOTRUN -> [SKIP][273] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@kms_psr@psr2-cursor-mmap-gtt:
    - shard-tglu-1:       NOTRUN -> [SKIP][274] ([i915#9732]) +7 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-dg2:          NOTRUN -> [SKIP][275] ([i915#9685])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-tglu:         NOTRUN -> [SKIP][276] ([i915#9685])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          NOTRUN -> [SKIP][277] ([i915#12755]) +1 other test skip
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-dg2-9:        NOTRUN -> [SKIP][278] ([i915#12755]) +2 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2:          NOTRUN -> [SKIP][279] ([i915#12755] / [i915#5190])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
    - shard-dg2-9:        NOTRUN -> [SKIP][280] ([i915#12755] / [i915#5190])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-dg2-9:        NOTRUN -> [SKIP][281] ([i915#3555]) +3 other tests skip
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_selftest@drm_framebuffer:
    - shard-glk11:        NOTRUN -> [ABORT][282] ([i915#13179]) +1 other test abort
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk11/igt@kms_selftest@drm_framebuffer.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-rkl:          NOTRUN -> [SKIP][283] ([i915#3555]) +3 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_setmode@basic-clone-single-crtc.html
    - shard-tglu-1:       NOTRUN -> [SKIP][284] ([i915#3555]) +4 other tests skip
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-dg2:          NOTRUN -> [SKIP][285] ([i915#3555]) +1 other test skip
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-glk:          [PASS][286] -> [SKIP][287] +9 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-glk6/igt@kms_setmode@invalid-clone-single-crtc.html
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk8/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][288] ([i915#12276]) +1 other test incomplete
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-tglu:         NOTRUN -> [SKIP][289] ([i915#9906])
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_vrr@flip-basic-fastset.html

  * igt@kms_vrr@negative-basic:
    - shard-dg2-9:        NOTRUN -> [SKIP][290] ([i915#3555] / [i915#9906])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_vrr@negative-basic.html

  * igt@kms_writeback@writeback-check-output:
    - shard-dg2:          NOTRUN -> [SKIP][291] ([i915#2437])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_writeback@writeback-check-output.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-tglu-1:       NOTRUN -> [SKIP][292] ([i915#2437])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_writeback@writeback-fb-id.html

  * igt@kms_writeback@writeback-fb-id-xrgb2101010:
    - shard-dg2-9:        NOTRUN -> [SKIP][293] ([i915#2437] / [i915#9412])
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-glk:          NOTRUN -> [SKIP][294] ([i915#2437])
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk9/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-tglu:         NOTRUN -> [SKIP][295] ([i915#2437] / [i915#9412])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_writeback@writeback-pixel-formats.html

  * igt@perf@non-zero-reason@0-rcs0:
    - shard-dg2:          NOTRUN -> [FAIL][296] ([i915#9100]) +1 other test fail
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@perf@non-zero-reason@0-rcs0.html

  * igt@perf_pmu@busy-double-start@vecs1:
    - shard-dg2:          [PASS][297] -> [FAIL][298] ([i915#4349]) +4 other tests fail
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html

  * igt@perf_pmu@module-unload:
    - shard-glk11:        NOTRUN -> [FAIL][299] ([i915#14433])
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk11/igt@perf_pmu@module-unload.html

  * igt@perf_pmu@rc6@other-idle-gt0:
    - shard-dg2-9:        NOTRUN -> [SKIP][300] ([i915#8516])
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@perf_pmu@rc6@other-idle-gt0.html

  * igt@sriov_basic@bind-unbind-vf:
    - shard-dg2:          NOTRUN -> [SKIP][301] ([i915#9917])
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@sriov_basic@bind-unbind-vf.html

  
#### Possible fixes ####

  * igt@fbdev@pan:
    - shard-rkl:          [SKIP][302] ([i915#14544] / [i915#2582]) -> [PASS][303]
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@fbdev@pan.html
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@fbdev@pan.html

  * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
    - shard-dg2:          [INCOMPLETE][304] ([i915#13356]) -> [PASS][305]
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html

  * igt@gem_exec_parallel@basic@bcs0:
    - shard-rkl:          [DMESG-WARN][306] ([i915#12964]) -> [PASS][307] +7 other tests pass
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_exec_parallel@basic@bcs0.html
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_exec_parallel@basic@bcs0.html

  * igt@gem_exec_suspend@basic-s0:
    - shard-dg2:          [INCOMPLETE][308] ([i915#11441] / [i915#13304]) -> [PASS][309] +1 other test pass
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_exec_suspend@basic-s4-devices:
    - shard-rkl:          [ABORT][310] ([i915#7975] / [i915#8213]) -> [PASS][311] +1 other test pass
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices.html
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - shard-dg2:          [DMESG-WARN][312] ([i915#5493]) -> [PASS][313] +1 other test pass
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gem_pxp@display-protected-crc:
    - shard-rkl:          [TIMEOUT][314] ([i915#12917] / [i915#12964]) -> [PASS][315] +1 other test pass
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-7/igt@gem_pxp@display-protected-crc.html
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_pxp@display-protected-crc.html

  * igt@i915_module_load@resize-bar:
    - shard-dg2:          [DMESG-WARN][316] ([i915#14545]) -> [PASS][317]
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-3/igt@i915_module_load@resize-bar.html
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@i915_module_load@resize-bar.html

  * igt@i915_selftest@live@workarounds:
    - shard-mtlp:         [DMESG-FAIL][318] ([i915#12061]) -> [PASS][319] +1 other test pass
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-mtlp-7/igt@i915_selftest@live@workarounds.html
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-mtlp-5/igt@i915_selftest@live@workarounds.html

  * igt@i915_selftest@mock:
    - shard-mtlp:         [DMESG-WARN][320] -> [PASS][321] +1 other test pass
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-mtlp-6/igt@i915_selftest@mock.html
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-mtlp-6/igt@i915_selftest@mock.html

  * igt@i915_suspend@debugfs-reader:
    - shard-rkl:          [INCOMPLETE][322] ([i915#4817]) -> [PASS][323]
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-3/igt@i915_suspend@debugfs-reader.html
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@i915_suspend@debugfs-reader.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
    - shard-tglu:         [FAIL][324] ([i915#11808]) -> [PASS][325] +3 other tests pass
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-mtlp:         [FAIL][326] ([i915#5138]) -> [PASS][327]
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_color@ctm-negative:
    - shard-rkl:          [SKIP][328] ([i915#12655] / [i915#14544]) -> [PASS][329]
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_color@ctm-negative.html
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_color@ctm-negative.html

  * igt@kms_feature_discovery@display-1x:
    - shard-rkl:          [SKIP][330] ([i915#14544] / [i915#9738]) -> [PASS][331]
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_feature_discovery@display-1x.html
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_feature_discovery@display-1x.html

  * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
    - shard-snb:          [TIMEOUT][332] ([i915#14033]) -> [PASS][333] +1 other test pass
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-snb4/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html

  * igt@kms_flip@bo-too-big-interruptible:
    - shard-rkl:          [SKIP][334] ([i915#14544] / [i915#3637]) -> [PASS][335] +2 other tests pass
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_flip@bo-too-big-interruptible.html
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_flip@bo-too-big-interruptible.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
    - shard-rkl:          [SKIP][336] ([i915#14544] / [i915#3555]) -> [PASS][337] +1 other test pass
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
    - shard-rkl:          [SKIP][338] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][339] +5 other tests pass
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-glk:          [SKIP][340] -> [PASS][341] +3 other tests pass
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu.html
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_hdr@static-toggle:
    - shard-dg2:          [SKIP][342] ([i915#3555] / [i915#8228]) -> [PASS][343]
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-7/igt@kms_hdr@static-toggle.html
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_hdr@static-toggle.html

  * igt@kms_plane@plane-panning-top-left:
    - shard-rkl:          [SKIP][344] ([i915#14544] / [i915#8825]) -> [PASS][345]
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_plane@plane-panning-top-left.html
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_plane@plane-panning-top-left.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
    - shard-rkl:          [SKIP][346] ([i915#14544] / [i915#8152]) -> [PASS][347] +2 other tests pass
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a:
    - shard-rkl:          [SKIP][348] ([i915#12247] / [i915#14544]) -> [PASS][349] +1 other test pass
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a.html
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
    - shard-rkl:          [SKIP][350] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][351] +1 other test pass
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-dg2:          [SKIP][352] ([i915#9519]) -> [PASS][353]
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-rkl:          [SKIP][354] ([i915#9519]) -> [PASS][355] +2 other tests pass
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_properties@plane-properties-atomic:
    - shard-rkl:          [SKIP][356] ([i915#11521] / [i915#14544]) -> [PASS][357] +1 other test pass
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_properties@plane-properties-atomic.html
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_properties@plane-properties-atomic.html

  * igt@kms_universal_plane@universal-plane-pageflip-windowed:
    - shard-dg1:          [DMESG-WARN][358] ([i915#4423]) -> [PASS][359] +4 other tests pass
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-12/igt@kms_universal_plane@universal-plane-pageflip-windowed.html
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-18/igt@kms_universal_plane@universal-plane-pageflip-windowed.html

  * igt@kms_vblank@wait-forked-busy-hang:
    - shard-rkl:          [SKIP][360] ([i915#14544]) -> [PASS][361] +27 other tests pass
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_vblank@wait-forked-busy-hang.html
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_vblank@wait-forked-busy-hang.html

  
#### Warnings ####

  * igt@gem_ccs@block-multicopy-inplace:
    - shard-rkl:          [SKIP][362] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][363] ([i915#3555] / [i915#9323])
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html

  * igt@gem_ccs@large-ctrl-surf-copy:
    - shard-rkl:          [SKIP][364] ([i915#13008]) -> [SKIP][365] ([i915#13008] / [i915#14544])
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_ccs@large-ctrl-surf-copy.html
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html

  * igt@gem_ccs@suspend-resume:
    - shard-rkl:          [SKIP][366] ([i915#9323]) -> [SKIP][367] ([i915#14544] / [i915#9323])
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_ccs@suspend-resume.html
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_ccs@suspend-resume.html

  * igt@gem_exec_balancer@parallel:
    - shard-rkl:          [SKIP][368] ([i915#4525]) -> [SKIP][369] ([i915#14544] / [i915#4525]) +1 other test skip
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_exec_balancer@parallel.html
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-rkl:          [SKIP][370] ([i915#14544] / [i915#6344]) -> [SKIP][371] ([i915#6344])
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
    - shard-rkl:          [SKIP][372] ([i915#14544] / [i915#3281]) -> [SKIP][373] ([i915#3281]) +7 other tests skip
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html

  * igt@gem_exec_reloc@basic-wc-cpu:
    - shard-rkl:          [SKIP][374] ([i915#3281]) -> [SKIP][375] ([i915#14544] / [i915#3281]) +6 other tests skip
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_exec_reloc@basic-wc-cpu.html
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html

  * igt@gem_exec_schedule@semaphore-power:
    - shard-rkl:          [SKIP][376] ([i915#14544] / [i915#7276]) -> [SKIP][377] ([i915#7276])
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-rkl:          [SKIP][378] ([i915#14544] / [i915#4613]) -> [SKIP][379] ([i915#4613]) +1 other test skip
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_lmem_swapping@random:
    - shard-rkl:          [SKIP][380] ([i915#4613]) -> [SKIP][381] ([i915#14544] / [i915#4613])
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@gem_lmem_swapping@random.html
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_lmem_swapping@random.html

  * igt@gem_media_vme:
    - shard-rkl:          [SKIP][382] ([i915#284]) -> [SKIP][383] ([i915#14544] / [i915#284])
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_media_vme.html
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_media_vme.html

  * igt@gem_partial_pwrite_pread@writes-after-reads:
    - shard-rkl:          [SKIP][384] ([i915#14544] / [i915#3282]) -> [SKIP][385] ([i915#3282]) +8 other tests skip
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html

  * igt@gem_pread@exhaustion:
    - shard-rkl:          [SKIP][386] ([i915#3282]) -> [SKIP][387] ([i915#14544] / [i915#3282])
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_pread@exhaustion.html
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_pread@exhaustion.html

  * igt@gem_set_tiling_vs_blt@tiled-to-untiled:
    - shard-rkl:          [SKIP][388] ([i915#14544] / [i915#8411]) -> [SKIP][389] ([i915#8411])
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html

  * igt@gem_userptr_blits@unsync-unmap:
    - shard-rkl:          [SKIP][390] ([i915#14544] / [i915#3297]) -> [SKIP][391] ([i915#3297])
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-rkl:          [SKIP][392] ([i915#2527]) -> [SKIP][393] ([i915#14544] / [i915#2527])
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gen9_exec_parse@batch-invalid-length.html
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@gen9_exec_parse@unaligned-access:
    - shard-rkl:          [SKIP][394] ([i915#14544] / [i915#2527]) -> [SKIP][395] ([i915#2527]) +1 other test skip
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gen9_exec_parse@unaligned-access.html

  * igt@i915_module_load@resize-bar:
    - shard-rkl:          [SKIP][396] ([i915#14544] / [i915#6412]) -> [SKIP][397] ([i915#6412])
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@i915_module_load@resize-bar.html
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@i915_module_load@resize-bar.html

  * igt@i915_query@test-query-geometry-subslices:
    - shard-rkl:          [SKIP][398] ([i915#5723]) -> [SKIP][399] ([i915#14544] / [i915#5723])
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@i915_query@test-query-geometry-subslices.html
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-0:
    - shard-rkl:          [SKIP][400] ([i915#14544]) -> [SKIP][401] ([i915#5286]) +2 other tests skip
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-rkl:          [SKIP][402] ([i915#5286]) -> [SKIP][403] ([i915#14544]) +2 other tests skip
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-rkl:          [SKIP][404] ([i915#14544]) -> [SKIP][405] ([i915#3638]) +1 other test skip
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-rkl:          [SKIP][406] ([i915#3638]) -> [SKIP][407] ([i915#14544]) +2 other tests skip
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
    - shard-rkl:          [SKIP][408] ([i915#14544]) -> [DMESG-WARN][409] ([i915#12964])
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
    - shard-rkl:          [SKIP][410] ([i915#14544]) -> [SKIP][411] +6 other tests skip
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          [SKIP][412] ([i915#14098] / [i915#6095]) -> [SKIP][413] ([i915#6095])
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-2.html
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][414] ([i915#12313]) -> [SKIP][415] ([i915#14544])
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-rkl:          [SKIP][416] ([i915#14544]) -> [SKIP][417] ([i915#12313])
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
    - shard-rkl:          [SKIP][418] ([i915#14544]) -> [SKIP][419] ([i915#14098] / [i915#6095]) +5 other tests skip
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
    - shard-rkl:          [SKIP][420] ([i915#14098] / [i915#6095]) -> [SKIP][421] ([i915#14544]) +9 other tests skip
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-dg1:          [SKIP][422] ([i915#12313] / [i915#4423]) -> [SKIP][423] ([i915#12313])
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-16/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
    - shard-dg1:          [SKIP][424] ([i915#4423] / [i915#6095]) -> [SKIP][425] ([i915#6095])
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-18/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html

  * igt@kms_chamelium_frames@vga-frame-dump:
    - shard-rkl:          [SKIP][426] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][427] ([i915#11151] / [i915#7828]) +1 other test skip
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_chamelium_frames@vga-frame-dump.html
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_chamelium_frames@vga-frame-dump.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-rkl:          [SKIP][428] ([i915#11151] / [i915#7828]) -> [SKIP][429] ([i915#11151] / [i915#14544] / [i915#7828]) +6 other tests skip
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-fast.html
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_content_protection@atomic:
    - shard-dg2:          [FAIL][430] ([i915#7173]) -> [SKIP][431] ([i915#7118] / [i915#9424])
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-10/igt@kms_content_protection@atomic.html
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-6/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@content-type-change:
    - shard-rkl:          [SKIP][432] ([i915#9424]) -> [SKIP][433] ([i915#14544])
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_content_protection@content-type-change.html
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-rkl:          [SKIP][434] ([i915#14544]) -> [SKIP][435] ([i915#3116])
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-rkl:          [SKIP][436] ([i915#3116]) -> [SKIP][437] ([i915#14544]) +1 other test skip
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1.html
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@lic-type-0:
    - shard-dg2:          [SKIP][438] ([i915#9424]) -> [FAIL][439] ([i915#7173])
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-5/igt@kms_content_protection@lic-type-0.html
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@srm:
    - shard-snb:          [SKIP][440] -> [INCOMPLETE][441] ([i915#8816])
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-snb5/igt@kms_content_protection@srm.html
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-snb2/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@type1:
    - shard-rkl:          [SKIP][442] ([i915#14544]) -> [SKIP][443] ([i915#7118] / [i915#9424])
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_content_protection@type1.html
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_content_protection@type1.html

  * igt@kms_content_protection@uevent:
    - shard-dg2:          [SKIP][444] ([i915#7118] / [i915#9424]) -> [FAIL][445] ([i915#1339] / [i915#7173])
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-7/igt@kms_content_protection@uevent.html
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-dg1:          [SKIP][446] ([i915#3555] / [i915#4423]) -> [SKIP][447] ([i915#3555])
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-32x32.html
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-rkl:          [SKIP][448] ([i915#14544]) -> [SKIP][449] ([i915#13049])
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-256x85:
    - shard-rkl:          [FAIL][450] ([i915#13566]) -> [SKIP][451] ([i915#14544])
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85.html
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_cursor_crc@cursor-random-256x85.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-rkl:          [SKIP][452] ([i915#3555]) -> [SKIP][453] ([i915#14544]) +2 other tests skip
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
    - shard-rkl:          [SKIP][454] ([i915#14544]) -> [SKIP][455] ([i915#3555])
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-rkl:          [SKIP][456] -> [SKIP][457] ([i915#14544]) +12 other tests skip
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-rkl:          [SKIP][458] ([i915#14544]) -> [SKIP][459] ([i915#4103])
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-rkl:          [SKIP][460] ([i915#4103]) -> [SKIP][461] ([i915#14544]) +1 other test skip
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-rkl:          [SKIP][462] ([i915#14544]) -> [SKIP][463] ([i915#9723])
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-rkl:          [SKIP][464] ([i915#13691]) -> [SKIP][465] ([i915#14544])
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-rkl:          [SKIP][466] ([i915#14544]) -> [SKIP][467] ([i915#13749])
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-rkl:          [SKIP][468] ([i915#14544] / [i915#3955]) -> [SKIP][469] ([i915#3955])
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-rkl:          [SKIP][470] ([i915#4854]) -> [SKIP][471] ([i915#14544] / [i915#4854])
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@kms_feature_discovery@chamelium.html
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_feature_discovery@chamelium.html
    - shard-dg1:          [SKIP][472] ([i915#4423] / [i915#4854]) -> [SKIP][473] ([i915#4854])
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-16/igt@kms_feature_discovery@chamelium.html
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-15/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@psr2:
    - shard-rkl:          [SKIP][474] ([i915#658]) -> [SKIP][475] ([i915#14544] / [i915#658])
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_feature_discovery@psr2.html
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-modeset-vs-vblank-race:
    - shard-rkl:          [SKIP][476] ([i915#9934]) -> [SKIP][477] ([i915#14544] / [i915#9934]) +5 other tests skip
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-rkl:          [SKIP][478] ([i915#14544] / [i915#9934]) -> [SKIP][479] ([i915#9934]) +1 other test skip
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
    - shard-rkl:          [SKIP][480] ([i915#14544] / [i915#3555]) -> [SKIP][481] ([i915#2672] / [i915#3555]) +1 other test skip
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-rkl:          [SKIP][482] ([i915#2672] / [i915#3555]) -> [SKIP][483] ([i915#14544] / [i915#3555]) +1 other test skip
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
    - shard-dg1:          [SKIP][484] -> [SKIP][485] ([i915#4423])
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
    - shard-dg2:          [SKIP][486] ([i915#10433] / [i915#3458]) -> [SKIP][487] ([i915#3458])
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
    - shard-rkl:          [SKIP][488] ([i915#3023]) -> [SKIP][489] ([i915#14544] / [i915#1849] / [i915#5354]) +10 other tests skip
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][490] ([i915#1825]) -> [SKIP][491] ([i915#14544] / [i915#1849] / [i915#5354]) +21 other tests skip
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
    - shard-rkl:          [SKIP][492] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][493] ([i915#1825]) +16 other tests skip
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
    - shard-dg1:          [SKIP][494] ([i915#4423] / [i915#8708]) -> [SKIP][495] ([i915#8708])
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
    - shard-dg2:          [SKIP][496] ([i915#3458]) -> [SKIP][497] ([i915#10433] / [i915#3458]) +3 other tests skip
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-rte:
    - shard-rkl:          [SKIP][498] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][499] ([i915#3023]) +10 other tests skip
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-rte.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-rkl:          [SKIP][500] ([i915#1187] / [i915#12713]) -> [SKIP][501] ([i915#12713])
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-rkl:          [SKIP][502] ([i915#14544]) -> [SKIP][503] ([i915#3555] / [i915#8228])
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
   [503]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-rkl:          [SKIP][504] ([i915#13688] / [i915#14544]) -> [SKIP][505] ([i915#13688])
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-rkl:          [SKIP][506] ([i915#10656]) -> [SKIP][507] ([i915#10656] / [i915#14544])
   [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_joiner@invalid-modeset-big-joiner.html
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-rkl:          [SKIP][508] ([i915#6301]) -> [SKIP][509] ([i915#14544])
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_panel_fitting@atomic-fastset.html
   [509]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-rkl:          [SKIP][510] ([i915#13958]) -> [SKIP][511] ([i915#14544])
   [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-y.html
   [511]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-rkl:          [SKIP][512] ([i915#6953]) -> [SKIP][513] ([i915#14544] / [i915#6953] / [i915#8152])
   [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html
   [513]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
    - shard-rkl:          [SKIP][514] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][515] ([i915#12247]) +1 other test skip
   [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
   [515]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
    - shard-rkl:          [SKIP][516] ([i915#12247] / [i915#14544]) -> [SKIP][517] ([i915#12247])
   [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html
   [517]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
    - shard-rkl:          [SKIP][518] ([i915#12247]) -> [SKIP][519] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip
   [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
   [519]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
    - shard-rkl:          [SKIP][520] ([i915#12247]) -> [SKIP][521] ([i915#12247] / [i915#14544])
   [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html
   [521]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html

  * igt@kms_pm_backlight@fade:
    - shard-rkl:          [SKIP][522] ([i915#14544] / [i915#5354]) -> [SKIP][523] ([i915#5354])
   [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_pm_backlight@fade.html
   [523]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-rkl:          [SKIP][524] ([i915#3828]) -> [SKIP][525] ([i915#14544] / [i915#3828])
   [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_pm_dc@dc5-retention-flops.html
   [525]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-rkl:          [SKIP][526] ([i915#3828]) -> [SKIP][527] ([i915#9340])
   [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
   [527]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-rkl:          [SKIP][528] ([i915#14544] / [i915#8430]) -> [SKIP][529] ([i915#8430])
   [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html
   [529]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-rkl:          [SKIP][530] ([i915#9519]) -> [SKIP][531] ([i915#14544] / [i915#9519])
   [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [531]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-rkl:          [DMESG-WARN][532] ([i915#12964]) -> [SKIP][533] ([i915#9519])
   [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
   [533]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_prime@d3hot:
    - shard-rkl:          [SKIP][534] ([i915#6524]) -> [SKIP][535] ([i915#14544] / [i915#6524])
   [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_prime@d3hot.html
   [535]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-rkl:          [SKIP][536] ([i915#11520]) -> [SKIP][537] ([i915#11520] / [i915#14544]) +3 other tests skip
   [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
   [537]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
    - shard-rkl:          [SKIP][538] ([i915#11520] / [i915#14544]) -> [SKIP][539] ([i915#11520]) +3 other tests skip
   [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
   [539]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
    - shard-dg1:          [SKIP][540] ([i915#11520] / [i915#4423]) -> [SKIP][541] ([i915#11520])
   [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
   [541]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-13/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr@fbc-pr-cursor-plane-move:
    - shard-dg1:          [SKIP][542] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][543] ([i915#1072] / [i915#9732])
   [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-16/igt@kms_psr@fbc-pr-cursor-plane-move.html
   [543]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-15/igt@kms_psr@fbc-pr-cursor-plane-move.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-rkl:          [SKIP][544] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][545] ([i915#1072] / [i915#9732]) +10 other tests skip
   [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html
   [545]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@psr2-cursor-blt:
    - shard-rkl:          [SKIP][546] ([i915#1072] / [i915#9732]) -> [SKIP][547] ([i915#1072] / [i915#14544] / [i915#9732]) +11 other tests skip
   [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_psr@psr2-cursor-blt.html
   [547]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_psr@psr2-cursor-blt.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
    - shard-rkl:          [SKIP][548] ([i915#14544]) -> [SKIP][549] ([i915#5289])
   [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
   [549]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-rkl:          [SKIP][550] ([i915#3555]) -> [SKIP][551] ([i915#14544] / [i915#3555])
   [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_setmode@invalid-clone-single-crtc.html
   [551]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-rkl:          [SKIP][552] ([i915#9906]) -> [SKIP][553] ([i915#14544]) +1 other test skip
   [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html
   [553]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@prime_vgem@basic-fence-read:
    - shard-rkl:          [SKIP][554] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][555] ([i915#3291] / [i915#3708])
   [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
   [555]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@prime_vgem@basic-fence-read.html

  * igt@sriov_basic@bind-unbind-vf:
    - shard-rkl:          [SKIP][556] ([i915#14544] / [i915#9917]) -> [SKIP][557] ([i915#9917])
   [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
   [557]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [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#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
  [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
  [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
  [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
  [i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353
  [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
  [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
  [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
  [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
  [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
  [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
  [i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967
  [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
  [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
  [i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304
  [i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339
  [i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
  [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
  [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
  [i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784
  [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
  [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14001]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14001
  [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
  [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
  [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
  [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
  [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
  [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [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#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
  [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
  [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [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#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
  [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
  [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#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
  [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
  [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
  [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
  [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
  [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
  [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [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#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
  [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
  [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
  [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
  [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
  [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#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9738]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9738
  [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


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

  * Linux: CI_DRM_16867 -> Patchwork_151260v4

  CI-20190529: 20190529
  CI_DRM_16867: 64f56ca0926a30d50bcc0c215b262f5149c7e5cd @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_8459: 8459
  Patchwork_151260v4: 64f56ca0926a30d50bcc0c215b262f5149c7e5cd @ 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_151260v4/index.html

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

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

* Re: ✗ i915.CI.Full: failure for Enable_psr kernel parameter changes (rev4)
  2025-07-16  4:24 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-07-21  7:53   ` Hogander, Jouni
  0 siblings, 0 replies; 11+ messages in thread
From: Hogander, Jouni @ 2025-07-21  7:53 UTC (permalink / raw)
  To: intel-gfx@lists.freedesktop.org

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

Hello All,

Possible regression reported by CI is not related to my patches. It is reported on setup which doesn't support PSR or Panel Replay.

BR,

Jouni Högander

On Wed, 2025-07-16 at 04:24 +0000, Patchwork wrote:
Patch Details
Series: Enable_psr kernel parameter changes (rev4)
URL:    https://patchwork.freedesktop.org/series/151260/
State:  failure
Details:        https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/index.html
CI Bug Log - changes from CI_DRM_16867_full -> Patchwork_151260v4_full
Summary

FAILURE

Serious unknown changes coming with Patchwork_151260v4_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in Patchwork_151260v4_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 (12 -> 11)

Missing (1): shard-snb-0

Possible new issues

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

IGT changes
Possible regressions

  *   igt@kms_flip@2x-dpms-vs-vblank-race@ac-hdmi-a1-hdmi-a2:
     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk9/igt@kms_flip@2x-dpms-vs-vblank-race@ac-hdmi-a1-hdmi-a2.html> +3 other tests fail

Known issues

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

IGT changes
Issues hit

  *   igt@api_intel_bb@crc32:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@api_intel_bb@crc32.html> (i915#6230<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>)
  *   igt@api_intel_bb@object-reloc-purge-cache:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
  *   igt@device_reset@unbind-cold-reset-rebind:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@device_reset@unbind-cold-reset-rebind.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>)
  *   igt@gem_busy@semaphore:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@gem_busy@semaphore.html> (i915#3936<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936>)
  *   igt@gem_ccs@block-multicopy-compressed:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
  *   igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0:

     *   shard-dg2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html> (i915#12392<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392> / i915#13356<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>)
  *   igt@gem_close_race@multigpu-basic-process:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@gem_close_race@multigpu-basic-process.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>)
  *   igt@gem_close_race@multigpu-basic-threads:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_close_race@multigpu-basic-threads.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>)
     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>)
  *   igt@gem_create@create-ext-cpu-access-big:

     *   shard-dg2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html> (i915#13427<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427>)
  *   igt@gem_ctx_isolation@preservation-s3:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html> (i915#12353<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353>) +1 other test incomplete
  *   igt@gem_ctx_isolation@preservation-s3@bcs0:

     *   shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk9/igt@gem_ctx_isolation@preservation-s3@bcs0.html> (i915#12353<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353>) +1 other test incomplete
  *   igt@gem_ctx_persistence@hang:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_ctx_persistence@hang.html> (i915#8555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>)
  *   igt@gem_ctx_persistence@heartbeat-stop:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-stop.html> (i915#8555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) +1 other test skip
  *   igt@gem_ctx_persistence@processes:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-snb7/igt@gem_ctx_persistence@processes.html> (i915#1099<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>) +1 other test skip
  *   igt@gem_ctx_sseu@mmap-args:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@gem_ctx_sseu@mmap-args.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
  *   igt@gem_eio@kms:

     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-11/igt@gem_eio@kms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@gem_eio@kms.html> (i915#5784<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>)
  *   igt@gem_eio@unwedge-stress:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-17/igt@gem_eio@unwedge-stress.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-17/igt@gem_eio@unwedge-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>) +1 other test fail
  *   igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
  *   igt@gem_exec_balancer@sliced:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@gem_exec_balancer@sliced.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
  *   igt@gem_exec_capture@capture-invisible@smem0:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html> (i915#6334<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) +1 other test skip
  *   igt@gem_exec_fence@submit67:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_exec_fence@submit67.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) +1 other test skip
  *   igt@gem_exec_flush@basic-uc-pro-default:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@gem_exec_flush@basic-uc-pro-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) +1 other test skip
  *   igt@gem_exec_flush@basic-wb-set-default:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_exec_flush@basic-wb-set-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) +1 other test skip
  *   igt@gem_exec_reloc@basic-cpu-gtt-noreloc:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +5 other tests skip
  *   igt@gem_exec_reloc@basic-wc-gtt:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_exec_reloc@basic-wc-gtt.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +4 other tests skip
  *   igt@gem_exec_reloc@basic-wc-gtt-noreloc:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
  *   igt@gem_exec_reloc@basic-write-read:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_exec_reloc@basic-write-read.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +4 other tests skip
  *   igt@gem_exec_schedule@preempt-queue-chain:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-chain.html> (i915#4537<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> / i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
  *   igt@gem_exec_schedule@semaphore-power:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_exec_schedule@semaphore-power.html> (i915#4537<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> / i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) +1 other test skip
  *   igt@gem_exec_whisper@basic-queues-priority-all:

     *   shard-rkl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_exec_whisper@basic-queues-priority-all.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +8 other tests dmesg-warn
  *   igt@gem_fence_thrash@bo-write-verify-x:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-x.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>)
  *   igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) +1 other test skip
  *   igt@gem_lmem_swapping@parallel-random:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_lmem_swapping@parallel-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gem_lmem_swapping@parallel-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip
  *   igt@gem_lmem_swapping@random-engines:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk9/igt@gem_lmem_swapping@random-engines.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip
  *   igt@gem_lmem_swapping@verify-random-ccs:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@gem_lmem_swapping@verify-random-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
  *   igt@gem_media_fill@media-fill:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@gem_media_fill@media-fill.html> (i915#8289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289>)
  *   igt@gem_mmap_gtt@fault-concurrent-x:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_mmap_gtt@fault-concurrent-x.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +9 other tests skip
  *   igt@gem_mmap_gtt@fault-concurrent-y:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@gem_mmap_gtt@fault-concurrent-y.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +8 other tests skip
  *   igt@gem_mmap_gtt@medium-copy-odd:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_mmap_gtt@medium-copy-odd.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_mmap_gtt@medium-copy-odd.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
  *   igt@gem_mmap_wc@bad-object:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_mmap_wc@bad-object.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +2 other tests skip
  *   igt@gem_mmap_wc@close:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_mmap_wc@close.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +4 other tests skip
  *   igt@gem_partial_pwrite_pread@write-snoop:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
  *   igt@gem_partial_pwrite_pread@writes-after-reads-display:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +5 other tests skip
  *   igt@gem_pread@snoop:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_pread@snoop.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +3 other tests skip
  *   igt@gem_pwrite@basic-exhaustion:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_pwrite@basic-exhaustion.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
     *   shard-tglu-1: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658>)
  *   igt@gem_pxp@create-regular-context-1:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_pxp@create-regular-context-1.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +2 other tests skip
  *   igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +1 other test skip
  *   igt@gem_pxp@protected-raw-src-copy-not-readible:

     *   shard-rkl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
  *   igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-7/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +2 other tests timeout
  *   igt@gem_render_copy@y-tiled-ccs-to-y-tiled:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +4 other tests skip
  *   igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +3 other tests skip
  *   igt@gem_softpin@noreloc-s3:

     *   shard-rkl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_softpin@noreloc-s3.html> (i915#13809<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809>)
  *   igt@gem_tiled_pread_pwrite:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_tiled_pread_pwrite.html> (i915#4079<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) +1 other test skip
  *   igt@gem_userptr_blits@create-destroy-unsync:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gem_userptr_blits@create-destroy-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
  *   igt@gem_userptr_blits@readonly-unsync:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@gem_userptr_blits@readonly-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
  *   igt@gem_userptr_blits@relocations:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_userptr_blits@relocations.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
  *   igt@gem_userptr_blits@unsync-unmap:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other test skip
  *   igt@gen3_render_linear_blits:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gen3_render_linear_blits.html>
  *   igt@gen9_exec_parse@allowed-all:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +1 other test skip
  *   igt@gen9_exec_parse@basic-rejected:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gen9_exec_parse@basic-rejected.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
  *   igt@gen9_exec_parse@basic-rejected-ctx-param:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@gen9_exec_parse@basic-rejected-ctx-param.html> (i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +2 other tests skip
  *   igt@gen9_exec_parse@cmd-crossing-page:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@gen9_exec_parse@cmd-crossing-page.html> (i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +1 other test skip
  *   igt@gen9_exec_parse@unaligned-jump:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@gen9_exec_parse@unaligned-jump.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +1 other test skip
  *   igt@i915_drm_fdinfo@busy-idle-check-all@vcs0:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html> (i915#11527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527>) +7 other tests skip
  *   igt@i915_drm_fdinfo@most-busy-idle-check-all:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@i915_drm_fdinfo@most-busy-idle-check-all.html> (i915#14073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) +7 other tests skip
  *   igt@i915_drm_fdinfo@virtual-busy:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@i915_drm_fdinfo@virtual-busy.html> (i915#14118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118>)
  *   igt@i915_fb_tiling@basic-x-tiling:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@i915_fb_tiling@basic-x-tiling.html> (i915#13786<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786>)
  *   igt@i915_pm_freq_api@freq-reset-multiple:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@i915_pm_freq_api@freq-reset-multiple.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) +1 other test skip
  *   igt@i915_pm_rpm@gem-execbuf-stress:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-7/igt@i915_pm_rpm@gem-execbuf-stress.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-7/igt@i915_pm_rpm@gem-execbuf-stress.html> (i915#13328<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328>)
  *   igt@i915_pm_rps@min-max-config-idle:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@i915_pm_rps@min-max-config-idle.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> / i915#6621<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>)
  *   igt@i915_pm_rps@thresholds-park:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@i915_pm_rps@thresholds-park.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681>) +1 other test skip
  *   igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
  *   igt@kms_addfb_basic@basic-x-tiled-legacy:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_addfb_basic@basic-x-tiled-legacy.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
  *   igt@kms_async_flips@invalid-async-flip-atomic:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_async_flips@invalid-async-flip-atomic.html> (i915#12967<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967>)
  *   igt@kms_atomic_transition@plane-all-modeset-transition-fencing:

     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (i915#5956<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>)
  *   igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769>)
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3.html> (i915#5956<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>)
  *   igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_big_fb@4-tiled-32bpp-rotate-180:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip
  *   igt@kms_big_fb@4-tiled-8bpp-rotate-90:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> +9 other tests skip
  *   igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip
  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
  *   igt@kms_big_fb@x-tiled-16bpp-rotate-0:

     *   shard-glk11: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk11/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html> +294 other tests skip
  *   igt@kms_big_fb@y-tiled-64bpp-rotate-0:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +9 other tests skip
  *   igt@kms_big_fb@y-tiled-8bpp-rotate-0:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +7 other tests skip
  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +6 other tests skip
  *   igt@kms_big_fb@yf-tiled-addfb-size-overflow:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
  *   igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +29 other tests skip
  *   igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#10434<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +1 other test skip
  *   igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip
  *   igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +34 other tests skip
  *   igt@kms_ccs@crc-primary-basic-y-tiled-ccs:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +29 other tests skip
  *   igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
  *   igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +26 other tests skip
  *   igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:

     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +123 other tests skip
  *   igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (i915#12805<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>)
  *   igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +21 other tests skip
  *   igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
  *   igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +25 other tests skip
  *   igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +30 other tests skip
  *   igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
  *   igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +134 other tests skip
  *   igt@kms_cdclk@mode-transition-all-outputs:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_cdclk@mode-transition-all-outputs.html> (i915#13784<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784>)
  *   igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> (i915#13781<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781>) +3 other tests skip
  *   igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html> (i915#13783<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783>) +4 other tests skip
  *   igt@kms_chamelium_color@ctm-negative:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_chamelium_color@ctm-negative.html> +4 other tests skip
  *   igt@kms_chamelium_frames@dp-crc-fast:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-fast.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +4 other tests skip
  *   igt@kms_chamelium_frames@hdmi-crc-multiple:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-multiple.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +5 other tests skip
  *   igt@kms_chamelium_hpd@hdmi-hpd-fast:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_chamelium_hpd@hdmi-hpd-fast.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
  *   igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +2 other tests skip
  *   igt@kms_chamelium_hpd@vga-hpd:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +8 other tests skip
  *   igt@kms_color@ctm-green-to-red:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@kms_color@ctm-green-to-red.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_color@ctm-green-to-red.html> (i915#12655<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
  *   igt@kms_color@deep-color:

     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-11/igt@kms_color@deep-color.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@kms_color@deep-color.html> (i915#12655<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_content_protection@atomic-dpms:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#7116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> / i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) +1 other test skip
  *   igt@kms_content_protection@dp-mst-lic-type-1:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-1.html> (i915#3299<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>)
  *   igt@kms_content_protection@dp-mst-type-1:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_content_protection@dp-mst-type-1.html> (i915#3299<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>)
  *   igt@kms_content_protection@legacy:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_content_protection@legacy.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
  *   igt@kms_content_protection@mei-interface:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_content_protection@mei-interface.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
  *   igt@kms_content_protection@srm:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_content_protection@srm.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) +2 other tests fail
  *   igt@kms_content_protection@uevent@pipe-a-dp-3:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-3.html> (i915#1339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339> / i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
  *   igt@kms_cursor_crc@cursor-offscreen-512x170:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +1 other test skip
  *   igt@kms_cursor_crc@cursor-onscreen-256x85:

     *   shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +3 other tests fail
  *   igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +2 other tests fail
  *   igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-2:

     *   shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-3/igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-2.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
  *   igt@kms_cursor_crc@cursor-sliding-512x512:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_cursor_crc@cursor-sliding-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
  *   igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html> (i915#13046<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +4 other tests skip
  *   igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html> (i915#11190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip
  *   igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> (i915#13046<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +5 other tests skip
  *   igt@kms_cursor_legacy@flip-vs-cursor-toggle:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html> (i915#14001<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14001> / i915#2346<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346>)
  *   igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> / i915#4213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>)
  *   igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> / i915#4213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) +1 other test skip
  *   igt@kms_cursor_legacy@torture-bo@pipe-a:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_cursor_legacy@torture-bo@pipe-a.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_cursor_legacy@torture-bo@pipe-a.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +23 other tests dmesg-warn
  *   igt@kms_dirtyfb@drrs-dirtyfb-ioctl:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (i915#9723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
  *   igt@kms_display_modes@extended-mode-basic:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_display_modes@extended-mode-basic.html> (i915#13691<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691>)
  *   igt@kms_dp_aux_dev:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_dp_aux_dev.html> (i915#1257<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>)
  *   igt@kms_dp_link_training@non-uhbr-mst:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_dp_link_training@non-uhbr-mst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>)
  *   igt@kms_dp_linktrain_fallback@dp-fallback:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_dp_linktrain_fallback@dp-fallback.html> (i915#13707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>)
  *   igt@kms_dsc@dsc-basic:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
  *   igt@kms_dsc@dsc-fractional-bpp:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> / i915#9688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>)
  *   igt@kms_dsc@dsc-fractional-bpp-with-bpc:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
  *   igt@kms_fbcon_fbt@psr-suspend:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_fbcon_fbt@psr-suspend.html> (i915#3469<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469>)
  *   igt@kms_feature_discovery@display-3x:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_feature_discovery@display-3x.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
  *   igt@kms_feature_discovery@display-4x:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_feature_discovery@display-4x.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
  *   igt@kms_feature_discovery@psr1:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_feature_discovery@psr1.html> (i915#658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>)
  *   igt@kms_feature_discovery@psr2:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_feature_discovery@psr2.html> (i915#658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>)
  *   igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other tests skip
  *   igt@kms_flip@2x-flip-vs-suspend:

     *   shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk6/igt@kms_flip@2x-flip-vs-suspend.html> (i915#12745<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> / i915#4839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>)
  *   igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:

     *   shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk6/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html> (i915#4839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>)
  *   igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +4 other tests skip
  *   igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other tests skip
  *   igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other tests skip
  *   igt@kms_flip@flip-vs-fences-interruptible:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_flip@flip-vs-fences-interruptible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>)
  *   igt@kms_flip@flip-vs-panning-interruptible:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_flip@flip-vs-panning-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_flip@flip-vs-panning-interruptible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) +3 other tests skip
  *   igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:

     *   shard-rkl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html> (i915#6113<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113>)
  *   igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip
  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>)
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +2 other tests skip
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +1 other test skip
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +1 other test skip
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +4 other tests skip
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +2 other tests skip
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +1 other test skip
  *   igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +7 other tests skip
  *   igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> (i915#6880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>)
  *   igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:

     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
  *   igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:

     *   shard-dg2-9: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#6880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>)
  *   igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +8 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html> +37 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +11 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html> +71 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +11 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +4 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +19 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +5 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html> (i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +3 other tests skip
  *   igt@kms_frontbuffer_tracking@pipe-fbc-rte:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (i915#9766<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>)
  *   igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +13 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +25 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html> +41 other tests skip
  *   igt@kms_hdr@bpc-switch-suspend:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_hdr@bpc-switch-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
  *   igt@kms_hdr@brightness-with-hdr:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>)
  *   igt@kms_hdr@invalid-metadata-sizes:

     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-7/igt@kms_hdr@invalid-metadata-sizes.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
  *   igt@kms_hdr@static-toggle:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_hdr@static-toggle.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
  *   igt@kms_hdr@static-toggle-suspend:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
  *   igt@kms_invalid_mode@bad-hsync-start:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_invalid_mode@bad-hsync-start.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_invalid_mode@bad-hsync-start.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8826<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826>)
  *   igt@kms_invalid_mode@clock-too-high:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_invalid_mode@clock-too-high.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8826<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826>)
  *   igt@kms_joiner@invalid-modeset-force-big-joiner:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (i915#12388<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>)
  *   igt@kms_joiner@invalid-modeset-force-ultra-joiner:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (i915#10656<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) +1 other test skip
  *   igt@kms_joiner@invalid-modeset-ultra-joiner:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (i915#12339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339>)
  *   igt@kms_multipipe_modeset@basic-max-pipe-crc-check:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4070<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070> / i915#4816<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>)
  *   igt@kms_panel_fitting@legacy:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_panel_fitting@legacy.html> (i915#6301<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
  *   igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:

     *   shard-glk11: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html> (i915#11190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190>) +2 other tests skip
  *   igt@kms_plane@plane-position-hole:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane@plane-position-hole.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane@plane-position-hole.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>)
  *   igt@kms_plane_multiple@2x-tiling-y:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_plane_multiple@2x-tiling-y.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
  *   igt@kms_plane_scaling@2x-scaler-multi-pipe:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> (i915#13046<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354> / i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>)
  *   igt@kms_plane_scaling@intel-max-src-size:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_plane_scaling@intel-max-src-size.html> (i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>)
  *   igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
  *   igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) +1 other test skip
  *   igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +5 other tests skip
  *   igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +9 other tests skip
  *   igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>)
  *   igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) +2 other tests skip
  *   igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +8 other tests skip
  *   igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>)
  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>)
  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +3 other tests skip
  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>)
  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:

     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +2 other tests skip
  *   igt@kms_pm_dc@dc5-psr:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
  *   igt@kms_pm_dc@dc5-retention-flops:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_pm_dc@dc5-retention-flops.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
  *   igt@kms_pm_lpsp@kms-lpsp:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_pm_lpsp@kms-lpsp.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
  *   igt@kms_pm_rpm@dpms-mode-unset-lpsp:

     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
  *   igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
  *   igt@kms_pm_rpm@modeset-non-lpsp:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) +1 other test skip
  *   igt@kms_prime@basic-crc-vgem:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_prime@basic-crc-vgem.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> / i915#6805<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>)
  *   igt@kms_prime@d3hot:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_prime@d3hot.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> / i915#6805<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>)
  *   igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip
  *   igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:

     *   shard-glk11: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk11/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip
  *   igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +7 other tests skip
  *   igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +6 other tests skip
  *   igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +4 other tests skip
  *   igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +3 other tests skip
  *   igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +6 other tests skip
  *   igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
  *   igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-snb7/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +2 other tests skip
  *   igt@kms_psr2_su@page_flip-p010:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_psr2_su@page_flip-p010.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
  *   igt@kms_psr@fbc-psr-primary-page-flip:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@kms_psr@fbc-psr-primary-page-flip.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +18 other tests skip
  *   igt@kms_psr@fbc-psr2-cursor-mmap-gtt:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk9/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html> +191 other tests skip
  *   igt@kms_psr@pr-basic:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_psr@pr-basic.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +3 other tests skip
  *   igt@kms_psr@pr-dpms:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_psr@pr-dpms.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +9 other tests skip
  *   igt@kms_psr@psr-primary-mmap-cpu:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_psr@psr-primary-mmap-cpu.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +14 other tests skip
  *   igt@kms_psr@psr-sprite-plane-onoff:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +4 other tests skip
  *   igt@kms_psr@psr2-cursor-mmap-gtt:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +7 other tests skip
  *   igt@kms_psr_stress_test@flip-primary-invalidate-overlay:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
  *   igt@kms_psr_stress_test@invalidate-primary-flip-overlay:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
  *   igt@kms_rotation_crc@primary-rotation-270:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html> (i915#12755<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>) +1 other test skip
  *   igt@kms_rotation_crc@primary-rotation-90:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_rotation_crc@primary-rotation-90.html> (i915#12755<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755>) +2 other tests skip
  *   igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> (i915#12755<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
  *   igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> (i915#12755<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
  *   igt@kms_scaling_modes@scaling-mode-full-aspect:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_scaling_modes@scaling-mode-full-aspect.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip
  *   igt@kms_selftest@drm_framebuffer:

     *   shard-glk11: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk11/igt@kms_selftest@drm_framebuffer.html> (i915#13179<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179>) +1 other test abort
  *   igt@kms_setmode@basic-clone-single-crtc:

     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_setmode@basic-clone-single-crtc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip
     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_setmode@basic-clone-single-crtc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip
  *   igt@kms_setmode@clone-exclusive-crtc:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-10/igt@kms_setmode@clone-exclusive-crtc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip
  *   igt@kms_setmode@invalid-clone-single-crtc:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-glk6/igt@kms_setmode@invalid-clone-single-crtc.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk8/igt@kms_setmode@invalid-clone-single-crtc.html> +9 other tests skip
  *   igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:

     *   shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html> (i915#12276<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>) +1 other test incomplete
  *   igt@kms_vrr@flip-basic-fastset:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_vrr@flip-basic-fastset.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
  *   igt@kms_vrr@negative-basic:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
  *   igt@kms_writeback@writeback-check-output:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_writeback@writeback-check-output.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>)
  *   igt@kms_writeback@writeback-fb-id:

     *   shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-1/igt@kms_writeback@writeback-fb-id.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>)
  *   igt@kms_writeback@writeback-fb-id-xrgb2101010:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>)
  *   igt@kms_writeback@writeback-invalid-parameters:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk9/igt@kms_writeback@writeback-invalid-parameters.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>)
  *   igt@kms_writeback@writeback-pixel-formats:

     *   shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-9/igt@kms_writeback@writeback-pixel-formats.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>)
  *   igt@perf@non-zero-reason@0-rcs0:

     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@perf@non-zero-reason@0-rcs0.html> (i915#9100<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100>) +1 other test fail
  *   igt@perf_pmu@busy-double-start@vecs1:

     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html> (i915#4349<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) +4 other tests fail
  *   igt@perf_pmu@module-unload:

     *   shard-glk11: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk11/igt@perf_pmu@module-unload.html> (i915#14433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433>)
  *   igt@perf_pmu@rc6@other-idle-gt0:

     *   shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-9/igt@perf_pmu@rc6@other-idle-gt0.html> (i915#8516<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>)
  *   igt@sriov_basic@bind-unbind-vf:

     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-3/igt@sriov_basic@bind-unbind-vf.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)

Possible fixes

  *   igt@fbdev@pan:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@fbdev@pan.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2582<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@fbdev@pan.html>
  *   igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:

     *   shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html> (i915#13356<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html>
  *   igt@gem_exec_parallel@basic@bcs0:

     *   shard-rkl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_exec_parallel@basic@bcs0.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_exec_parallel@basic@bcs0.html> +7 other tests pass
  *   igt@gem_exec_suspend@basic-s0:

     *   shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html> (i915#11441<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441> / i915#13304<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@gem_exec_suspend@basic-s0.html> +1 other test pass
  *   igt@gem_exec_suspend@basic-s4-devices:

     *   shard-rkl: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices.html> (i915#7975<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975> / i915#8213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_exec_suspend@basic-s4-devices.html> +1 other test pass
  *   igt@gem_lmem_swapping@smem-oom@lmem0:

     *   shard-dg2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#5493<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html> +1 other test pass
  *   igt@gem_pxp@display-protected-crc:

     *   shard-rkl: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-7/igt@gem_pxp@display-protected-crc.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_pxp@display-protected-crc.html> +1 other test pass
  *   igt@i915_module_load@resize-bar:

     *   shard-dg2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-3/igt@i915_module_load@resize-bar.html> (i915#14545<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-8/igt@i915_module_load@resize-bar.html>
  *   igt@i915_selftest@live@workarounds:

     *   shard-mtlp: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-mtlp-7/igt@i915_selftest@live@workarounds.html> (i915#12061<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-mtlp-5/igt@i915_selftest@live@workarounds.html> +1 other test pass
  *   igt@i915_selftest@mock:

     *   shard-mtlp: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-mtlp-6/igt@i915_selftest@mock.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-mtlp-6/igt@i915_selftest@mock.html> +1 other test pass
  *   igt@i915_suspend@debugfs-reader:

     *   shard-rkl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-3/igt@i915_suspend@debugfs-reader.html> (i915#4817<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@i915_suspend@debugfs-reader.html>
  *   igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:

     *   shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html> (i915#11808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html> +3 other tests pass
  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:

     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (i915#5138<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
  *   igt@kms_color@ctm-negative:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_color@ctm-negative.html> (i915#12655<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_color@ctm-negative.html>
  *   igt@kms_feature_discovery@display-1x:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_feature_discovery@display-1x.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9738<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9738>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_feature_discovery@display-1x.html>
  *   igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:

     *   shard-snb: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-snb4/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html> (i915#14033<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html> +1 other test pass
  *   igt@kms_flip@bo-too-big-interruptible:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_flip@bo-too-big-interruptible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_flip@bo-too-big-interruptible.html> +2 other tests pass
  *   igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html> +1 other test pass
  *   igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html> +5 other tests pass
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu:

     *   shard-glk: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu.html> +3 other tests pass
  *   igt@kms_hdr@static-toggle:

     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-7/igt@kms_hdr@static-toggle.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_hdr@static-toggle.html>
  *   igt@kms_plane@plane-panning-top-left:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_plane@plane-panning-top-left.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_plane@plane-panning-top-left.html>
  *   igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html> +2 other tests pass
  *   igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a.html> +1 other test pass
  *   igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html> +1 other test pass
  *   igt@kms_pm_rpm@modeset-lpsp-stress:

     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html>
  *   igt@kms_pm_rpm@modeset-non-lpsp-stress:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> +2 other tests pass
  *   igt@kms_properties@plane-properties-atomic:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_properties@plane-properties-atomic.html> (i915#11521<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_properties@plane-properties-atomic.html> +1 other test pass
  *   igt@kms_universal_plane@universal-plane-pageflip-windowed:

     *   shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-12/igt@kms_universal_plane@universal-plane-pageflip-windowed.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-18/igt@kms_universal_plane@universal-plane-pageflip-windowed.html> +4 other tests pass
  *   igt@kms_vblank@wait-forked-busy-hang:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_vblank@wait-forked-busy-hang.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_vblank@wait-forked-busy-hang.html> +27 other tests pass

Warnings

  *   igt@gem_ccs@block-multicopy-inplace:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
  *   igt@gem_ccs@large-ctrl-surf-copy:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_ccs@large-ctrl-surf-copy.html> (i915#13008<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html> (i915#13008<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
  *   igt@gem_ccs@suspend-resume:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_ccs@suspend-resume.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_ccs@suspend-resume.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
  *   igt@gem_exec_balancer@parallel:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_exec_balancer@parallel.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_exec_balancer@parallel.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) +1 other test skip
  *   igt@gem_exec_capture@capture-recoverable:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6344<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html> (i915#6344<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344>)
  *   igt@gem_exec_reloc@basic-cpu-gtt-noreloc:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +7 other tests skip
  *   igt@gem_exec_reloc@basic-wc-cpu:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_exec_reloc@basic-wc-cpu.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +6 other tests skip
  *   igt@gem_exec_schedule@semaphore-power:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7276<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html> (i915#7276<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276>)
  *   igt@gem_lmem_swapping@heavy-verify-random-ccs:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip
  *   igt@gem_lmem_swapping@random:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@gem_lmem_swapping@random.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_lmem_swapping@random.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
  *   igt@gem_media_vme:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_media_vme.html> (i915#284<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_media_vme.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#284<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284>)
  *   igt@gem_partial_pwrite_pread@writes-after-reads:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +8 other tests skip
  *   igt@gem_pread@exhaustion:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gem_pread@exhaustion.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gem_pread@exhaustion.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
  *   igt@gem_set_tiling_vs_blt@tiled-to-untiled:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
  *   igt@gem_userptr_blits@unsync-unmap:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
  *   igt@gen9_exec_parse@batch-invalid-length:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@gen9_exec_parse@batch-invalid-length.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
  *   igt@gen9_exec_parse@unaligned-access:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@gen9_exec_parse@unaligned-access.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +1 other test skip
  *   igt@i915_module_load@resize-bar:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@i915_module_load@resize-bar.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@i915_module_load@resize-bar.html> (i915#6412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412>)
  *   igt@i915_query@test-query-geometry-subslices:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@i915_query@test-query-geometry-subslices.html> (i915#5723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>)
  *   igt@kms_big_fb@4-tiled-16bpp-rotate-0:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip
  *   igt@kms_big_fb@4-tiled-8bpp-rotate-90:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +2 other tests skip
  *   igt@kms_big_fb@linear-32bpp-rotate-90:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +1 other test skip
  *   igt@kms_big_fb@linear-64bpp-rotate-90:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +2 other tests skip
  *   igt@kms_big_fb@y-tiled-16bpp-rotate-180:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
  *   igt@kms_big_fb@yf-tiled-8bpp-rotate-90:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html> +6 other tests skip
  *   igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-2:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-2.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
  *   igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
  *   igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
  *   igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +5 other tests skip
  *   igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +9 other tests skip
  *   igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-16/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
  *   igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-18/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
  *   igt@kms_chamelium_frames@vga-frame-dump:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_chamelium_frames@vga-frame-dump.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_chamelium_frames@vga-frame-dump.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +1 other test skip
  *   igt@kms_chamelium_hpd@vga-hpd-fast:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-fast.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +6 other tests skip
  *   igt@kms_content_protection@atomic:

     *   shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-10/igt@kms_content_protection@atomic.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-6/igt@kms_content_protection@atomic.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
  *   igt@kms_content_protection@content-type-change:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_content_protection@content-type-change.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_content_protection@content-type-change.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
  *   igt@kms_content_protection@dp-mst-lic-type-1:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html> (i915#3116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>)
  *   igt@kms_content_protection@dp-mst-type-1:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1.html> (i915#3116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip
  *   igt@kms_content_protection@lic-type-0:

     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-5/igt@kms_content_protection@lic-type-0.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_content_protection@lic-type-0.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
  *   igt@kms_content_protection@srm:

     *   shard-snb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-snb5/igt@kms_content_protection@srm.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-snb2/igt@kms_content_protection@srm.html> (i915#8816<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816>)
  *   igt@kms_content_protection@type1:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_content_protection@type1.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_content_protection@type1.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
  *   igt@kms_content_protection@uevent:

     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-7/igt@kms_content_protection@uevent.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-11/igt@kms_content_protection@uevent.html> (i915#1339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339> / i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
  *   igt@kms_cursor_crc@cursor-offscreen-32x32:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_cursor_crc@cursor-onscreen-512x170:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
  *   igt@kms_cursor_crc@cursor-random-256x85:

     *   shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_cursor_crc@cursor-random-256x85.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
  *   igt@kms_cursor_crc@cursor-rapid-movement-32x10:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +2 other tests skip
  *   igt@kms_cursor_crc@cursor-rapid-movement-32x32:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +12 other tests skip
  *   igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
  *   igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip
  *   igt@kms_dirtyfb@psr-dirtyfb-ioctl:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> (i915#9723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
  *   igt@kms_display_modes@extended-mode-basic:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html> (i915#13691<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
  *   igt@kms_dp_link_training@non-uhbr-mst:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-mst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>)
  *   igt@kms_fbcon_fbt@psr-suspend:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3955<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html> (i915#3955<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>)
  *   igt@kms_feature_discovery@chamelium:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@kms_feature_discovery@chamelium.html> (i915#4854<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_feature_discovery@chamelium.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4854<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-16/igt@kms_feature_discovery@chamelium.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#4854<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-15/igt@kms_feature_discovery@chamelium.html> (i915#4854<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
  *   igt@kms_feature_discovery@psr2:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_feature_discovery@psr2.html> (i915#658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_feature_discovery@psr2.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>)
  *   igt@kms_flip@2x-modeset-vs-vblank-race:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_flip@2x-modeset-vs-vblank-race.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +5 other tests skip
  *   igt@kms_flip@2x-plain-flip-ts-check-interruptible:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +1 other test skip
  *   igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip
  *   igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:

     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
  *   igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html> (i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +10 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +21 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +16 other tests skip
  *   igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
  *   igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:

     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +3 other tests skip
  *   igt@kms_frontbuffer_tracking@psr-1p-rte:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1849<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-rte.html> (i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +10 other tests skip
  *   igt@kms_hdr@brightness-with-hdr:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html> (i915#1187<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187> / i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>)
  *   igt@kms_hdr@static-toggle-suspend:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
  *   igt@kms_joiner@basic-max-non-joiner:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html> (i915#13688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_joiner@basic-max-non-joiner.html> (i915#13688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688>)
  *   igt@kms_joiner@invalid-modeset-big-joiner:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_joiner@invalid-modeset-big-joiner.html> (i915#10656<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html> (i915#10656<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
  *   igt@kms_panel_fitting@atomic-fastset:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_panel_fitting@atomic-fastset.html> (i915#6301<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
  *   igt@kms_plane_multiple@2x-tiling-y:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-y.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
  *   igt@kms_plane_scaling@intel-max-src-size:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html> (i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>)
  *   igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +1 other test skip
  *   igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>)
  *   igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152>) +1 other test skip
  *   igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
  *   igt@kms_pm_backlight@fade:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_pm_backlight@fade.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_pm_backlight@fade.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
  *   igt@kms_pm_dc@dc5-retention-flops:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_pm_dc@dc5-retention-flops.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
  *   igt@kms_pm_lpsp@kms-lpsp:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html> (i915#9340<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>)
  *   igt@kms_pm_lpsp@screens-disabled:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8430<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_pm_lpsp@screens-disabled.html> (i915#8430<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430>)
  *   igt@kms_pm_rpm@dpms-mode-unset-lpsp:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
  *   igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:

     *   shard-rkl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
  *   igt@kms_prime@d3hot:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_prime@d3hot.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_prime@d3hot.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>)
  *   igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +3 other tests skip
  *   igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +3 other tests skip
  *   igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-13/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
  *   igt@kms_psr@fbc-pr-cursor-plane-move:

     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-dg1-16/igt@kms_psr@fbc-pr-cursor-plane-move.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-dg1-15/igt@kms_psr@fbc-pr-cursor-plane-move.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
  *   igt@kms_psr@fbc-psr2-primary-blt:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_psr@fbc-psr2-primary-blt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +10 other tests skip
  *   igt@kms_psr@psr2-cursor-blt:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_psr@psr2-cursor-blt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_psr@psr2-cursor-blt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +11 other tests skip
  *   igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
  *   igt@kms_setmode@invalid-clone-single-crtc:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-8/igt@kms_setmode@invalid-clone-single-crtc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
  *   igt@kms_vrr@seamless-rr-switch-drrs:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip
  *   igt@prime_vgem@basic-fence-read:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@prime_vgem@basic-fence-read.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3291<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> / i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-8/igt@prime_vgem@basic-fence-read.html> (i915#3291<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> / i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
  *   igt@sriov_basic@bind-unbind-vf:

     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16867/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_151260v4/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)

{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).

Build changes

  *   Linux: CI_DRM_16867 -> Patchwork_151260v4

CI-20190529: 20190529
CI_DRM_16867: 64f56ca0926a30d50bcc0c215b262f5149c7e5cd @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8459: 8459
Patchwork_151260v4: 64f56ca0926a30d50bcc0c215b262f5149c7e5cd @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit


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

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

* Re: [PATCH v4 1/3] drm/i915/psr: Do not disable Early Transport when enable_psr is set
  2025-07-15 19:09   ` Rodrigo Vivi
@ 2025-07-21  8:02     ` Hogander, Jouni
  0 siblings, 0 replies; 11+ messages in thread
From: Hogander, Jouni @ 2025-07-21  8:02 UTC (permalink / raw)
  To: Vivi, Rodrigo
  Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org

On Tue, 2025-07-15 at 15:09 -0400, Rodrigo Vivi wrote:
> On Tue, Jul 15, 2025 at 01:55:07PM +0300, Jouni Högander wrote:
> > Current approach is that Early Transport is disabled in case
> > enable_psr
> > module parameter is set. Let's ignore enable_psr parameter when
> > choosing if
> > Early Transport can be used.
> > 
> > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> 
> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>

Thank you Rodrigo for your review here. Whole set is now pushed to drm-
intel-next.

BR,

Jouni Högander

> 
> > ---
> >  drivers/gpu/drm/i915/display/intel_psr.c | 13 +------------
> >  1 file changed, 1 insertion(+), 12 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
> > b/drivers/gpu/drm/i915/display/intel_psr.c
> > index ae9053919211..a2b5688f0c82 100644
> > --- a/drivers/gpu/drm/i915/display/intel_psr.c
> > +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> > @@ -265,16 +265,6 @@ static bool psr2_global_enabled(struct
> > intel_dp *intel_dp)
> >  	}
> >  }
> >  
> > -static bool psr2_su_region_et_global_enabled(struct intel_dp
> > *intel_dp)
> > -{
> > -	struct intel_display *display =
> > to_intel_display(intel_dp);
> > -
> > -	if (display->params.enable_psr != -1)
> > -		return false;
> > -
> > -	return true;
> > -}
> > -
> >  static bool panel_replay_global_enabled(struct intel_dp *intel_dp)
> >  {
> >  	struct intel_display *display =
> > to_intel_display(intel_dp);
> > @@ -742,8 +732,7 @@ static bool psr2_su_region_et_valid(struct
> > intel_dp *intel_dp, bool panel_replay
> >  	return panel_replay ?
> >  		intel_dp-
> > >pr_dpcd[INTEL_PR_DPCD_INDEX(DP_PANEL_REPLAY_CAP_SUPPORT)] &
> >  		DP_PANEL_REPLAY_EARLY_TRANSPORT_SUPPORT :
> > -		intel_dp->psr_dpcd[0] ==
> > DP_PSR2_WITH_Y_COORD_ET_SUPPORTED &&
> > -		psr2_su_region_et_global_enabled(intel_dp);
> > +		intel_dp->psr_dpcd[0] ==
> > DP_PSR2_WITH_Y_COORD_ET_SUPPORTED;
> >  }
> >  
> >  static void _panel_replay_enable_sink(struct intel_dp *intel_dp,
> > -- 
> > 2.43.0
> > 


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

end of thread, other threads:[~2025-07-21  8:03 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-15 10:55 [PATCH v4 0/3] Enable_psr kernel parameter changes Jouni Högander
2025-07-15 10:55 ` [PATCH v4 1/3] drm/i915/psr: Do not disable Early Transport when enable_psr is set Jouni Högander
2025-07-15 19:09   ` Rodrigo Vivi
2025-07-21  8:02     ` Hogander, Jouni
2025-07-15 10:55 ` [PATCH v4 2/3] drm/i915/psr: Ignore enable_psr parameter on Panel Replay Jouni Högander
2025-07-15 19:09   ` Rodrigo Vivi
2025-07-15 10:55 ` [PATCH v4 3/3] drm/i915/psr: Add enable_panel_replay module parameter Jouni Högander
2025-07-15 19:10   ` Rodrigo Vivi
2025-07-15 20:43 ` ✓ i915.CI.BAT: success for Enable_psr kernel parameter changes (rev4) Patchwork
2025-07-16  4:24 ` ✗ i915.CI.Full: failure " Patchwork
2025-07-21  7:53   ` Hogander, Jouni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).