* [PATCH v2 1/2] drm/i915/display: Skip state checker for AS SDP infoframe enable
2025-02-04 13:06 [PATCH v2 0/2] Compute as_sdp when vrr is enabled Mitul Golani
@ 2025-02-04 13:06 ` Mitul Golani
2025-02-06 4:13 ` Nautiyal, Ankit K
2025-02-04 13:06 ` [PATCH v2 2/2] Revert "drm/i915/dp: Compute as_sdp based on if vrr possible" Mitul Golani
` (6 subsequent siblings)
7 siblings, 1 reply; 12+ messages in thread
From: Mitul Golani @ 2025-02-04 13:06 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: jouni.hogander, ankit.k.nautiyal
Avoid full modeset by skipping infoframe.enable check when toggling
AS SDP while enabling VRR, preventing full modeset while pipe
config changes.
--v2:
- Add check for exclude_infoframe. (Ankit)
- Update commit message. (Ankit)
Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index a6383ddde871..b35fb6d37640 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -5388,6 +5388,7 @@ intel_pipe_config_compare(const struct intel_crtc_state *current_config,
struct drm_i915_private *dev_priv = to_i915(current_config->uapi.crtc->dev);
struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc);
struct drm_printer p;
+ u32 exclude_infoframes = 0;
bool ret = true;
if (fastset)
@@ -5743,8 +5744,13 @@ intel_pipe_config_compare(const struct intel_crtc_state *current_config,
PIPE_CONF_CHECK_I(min_voltage_level);
if (current_config->has_psr || pipe_config->has_psr)
- PIPE_CONF_CHECK_X_WITH_MASK(infoframes.enable,
- ~intel_hdmi_infoframe_enable(DP_SDP_VSC));
+ exclude_infoframes |= intel_hdmi_infoframe_enable(DP_SDP_VSC);
+
+ if (current_config->vrr.enable || pipe_config->vrr.enable)
+ exclude_infoframes |= intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC);
+
+ if (exclude_infoframes)
+ PIPE_CONF_CHECK_X_WITH_MASK(infoframes.enable, ~exclude_infoframes);
else
PIPE_CONF_CHECK_X(infoframes.enable);
--
2.48.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH v2 1/2] drm/i915/display: Skip state checker for AS SDP infoframe enable
2025-02-04 13:06 ` [PATCH v2 1/2] drm/i915/display: Skip state checker for AS SDP infoframe enable Mitul Golani
@ 2025-02-06 4:13 ` Nautiyal, Ankit K
0 siblings, 0 replies; 12+ messages in thread
From: Nautiyal, Ankit K @ 2025-02-06 4:13 UTC (permalink / raw)
To: Mitul Golani, intel-xe, intel-gfx; +Cc: jouni.hogander
On 2/4/2025 6:36 PM, Mitul Golani wrote:
> Avoid full modeset by skipping infoframe.enable check when toggling
> AS SDP while enabling VRR, preventing full modeset while pipe
> config changes.
>
> --v2:
> - Add check for exclude_infoframe. (Ankit)
> - Update commit message. (Ankit)
>
> Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display.c | 10 ++++++++--
> 1 file changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> index a6383ddde871..b35fb6d37640 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -5388,6 +5388,7 @@ intel_pipe_config_compare(const struct intel_crtc_state *current_config,
> struct drm_i915_private *dev_priv = to_i915(current_config->uapi.crtc->dev);
> struct intel_crtc *crtc = to_intel_crtc(pipe_config->uapi.crtc);
> struct drm_printer p;
> + u32 exclude_infoframes = 0;
> bool ret = true;
>
> if (fastset)
> @@ -5743,8 +5744,13 @@ intel_pipe_config_compare(const struct intel_crtc_state *current_config,
> PIPE_CONF_CHECK_I(min_voltage_level);
>
> if (current_config->has_psr || pipe_config->has_psr)
> - PIPE_CONF_CHECK_X_WITH_MASK(infoframes.enable,
> - ~intel_hdmi_infoframe_enable(DP_SDP_VSC));
> + exclude_infoframes |= intel_hdmi_infoframe_enable(DP_SDP_VSC);
> +
> + if (current_config->vrr.enable || pipe_config->vrr.enable)
> + exclude_infoframes |= intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC);
> +
> + if (exclude_infoframes)
> + PIPE_CONF_CHECK_X_WITH_MASK(infoframes.enable, ~exclude_infoframes);
> else
> PIPE_CONF_CHECK_X(infoframes.enable);
This can simply be:
PIPE_CONF_CHECK_X_WITH_MASK(infoframes.enable, ~exclude_infoframes);
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Regards,
Ankit
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v2 2/2] Revert "drm/i915/dp: Compute as_sdp based on if vrr possible"
2025-02-04 13:06 [PATCH v2 0/2] Compute as_sdp when vrr is enabled Mitul Golani
2025-02-04 13:06 ` [PATCH v2 1/2] drm/i915/display: Skip state checker for AS SDP infoframe enable Mitul Golani
@ 2025-02-04 13:06 ` Mitul Golani
2025-02-04 14:00 ` [PATCH v2 0/2] Compute as_sdp when vrr is enabled Hogander, Jouni
` (5 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Mitul Golani @ 2025-02-04 13:06 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: jouni.hogander, ankit.k.nautiyal
This reverts commit 08277aa5d5a44befd71717de35b956f55e1e8401.
Compute AS SDP params only when VRR is enabled to maintain
PSR exclusivity.
Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index cc6aba353c11..8b03f604b240 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -2798,7 +2798,7 @@ static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
const struct drm_display_mode *adjusted_mode =
&crtc_state->hw.adjusted_mode;
- if (!intel_vrr_possible(crtc_state) || !intel_dp->as_sdp_supported)
+ if (!crtc_state->vrr.enable || !intel_dp->as_sdp_supported)
return;
crtc_state->infoframes.enable |= intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC);
--
2.48.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH v2 0/2] Compute as_sdp when vrr is enabled
2025-02-04 13:06 [PATCH v2 0/2] Compute as_sdp when vrr is enabled Mitul Golani
2025-02-04 13:06 ` [PATCH v2 1/2] drm/i915/display: Skip state checker for AS SDP infoframe enable Mitul Golani
2025-02-04 13:06 ` [PATCH v2 2/2] Revert "drm/i915/dp: Compute as_sdp based on if vrr possible" Mitul Golani
@ 2025-02-04 14:00 ` Hogander, Jouni
2025-02-04 16:31 ` ✗ Fi.CI.SPARSE: warning for Compute as_sdp when vrr is enabled (rev2) Patchwork
` (4 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Hogander, Jouni @ 2025-02-04 14:00 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org,
Golani, Mitulkumar Ajitkumar
Cc: Nautiyal, Ankit K
On Tue, 2025-02-04 at 18:36 +0530, Mitul Golani wrote:
> Compute as sdp when vrr.enable is set, also Skip
> infoframe.enable check to avoid full modeset during
> as_sdp toggle.
For the whole set:
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
>
> Mitul Golani (2):
> drm/i915/display: Skip state checker for AS SDP infoframe enable
> Revert "drm/i915/dp: Compute as_sdp based on if vrr possible"
>
> drivers/gpu/drm/i915/display/intel_display.c | 10 ++++++++--
> drivers/gpu/drm/i915/display/intel_dp.c | 2 +-
> 2 files changed, 9 insertions(+), 3 deletions(-)
>
^ permalink raw reply [flat|nested] 12+ messages in thread* ✗ Fi.CI.SPARSE: warning for Compute as_sdp when vrr is enabled (rev2)
2025-02-04 13:06 [PATCH v2 0/2] Compute as_sdp when vrr is enabled Mitul Golani
` (2 preceding siblings ...)
2025-02-04 14:00 ` [PATCH v2 0/2] Compute as_sdp when vrr is enabled Hogander, Jouni
@ 2025-02-04 16:31 ` Patchwork
2025-02-04 16:50 ` ✗ i915.CI.BAT: failure " Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-02-04 16:31 UTC (permalink / raw)
To: Mitul Golani; +Cc: intel-gfx
== Series Details ==
Series: Compute as_sdp when vrr is enabled (rev2)
URL : https://patchwork.freedesktop.org/series/144268/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings
+./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings
+./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
/home/kbuild/linux/maintainer-tools/dim: line 2106: echo: write error: Broken pipe
^ permalink raw reply [flat|nested] 12+ messages in thread* ✗ i915.CI.BAT: failure for Compute as_sdp when vrr is enabled (rev2)
2025-02-04 13:06 [PATCH v2 0/2] Compute as_sdp when vrr is enabled Mitul Golani
` (3 preceding siblings ...)
2025-02-04 16:31 ` ✗ Fi.CI.SPARSE: warning for Compute as_sdp when vrr is enabled (rev2) Patchwork
@ 2025-02-04 16:50 ` Patchwork
2025-02-05 3:42 ` Golani, Mitulkumar Ajitkumar
2025-02-05 4:13 ` ✓ i915.CI.BAT: success " Patchwork
` (2 subsequent siblings)
7 siblings, 1 reply; 12+ messages in thread
From: Patchwork @ 2025-02-04 16:50 UTC (permalink / raw)
To: Mitul Golani; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 4731 bytes --]
== Series Details ==
Series: Compute as_sdp when vrr is enabled (rev2)
URL : https://patchwork.freedesktop.org/series/144268/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16063 -> Patchwork_144268v2
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_144268v2 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_144268v2, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/index.html
Participating hosts (43 -> 41)
------------------------------
Missing (2): fi-snb-2520m fi-pnv-d510
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_144268v2:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@reset:
- bat-twl-2: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-twl-2/igt@i915_selftest@live@reset.html
Known issues
------------
Here are the changes found in Patchwork_144268v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-twl-1: NOTRUN -> [ABORT][2] ([i915#12919] / [i915#13503])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-twl-1/igt@i915_selftest@live.html
- bat-twl-2: NOTRUN -> [ABORT][3] ([i915#12435] / [i915#12919])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_heartbeat:
- bat-twl-1: [PASS][4] -> [ABORT][5] ([i915#12919])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-twl-1/igt@i915_selftest@live@gt_heartbeat.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-twl-1/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [PASS][6] -> [SKIP][7] ([i915#9197]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@dmabuf@all-tests:
- bat-apl-1: [INCOMPLETE][8] ([i915#12904]) -> [PASS][9] +1 other test pass
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-apl-1/igt@dmabuf@all-tests.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-FAIL][10] ([i915#12061]) -> [PASS][11] +1 other test pass
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-arls-5/igt@i915_selftest@live@workarounds.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-arls-5/igt@i915_selftest@live@workarounds.html
- {bat-mtlp-9}: [DMESG-FAIL][12] ([i915#12061]) -> [PASS][13] +1 other test pass
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* Linux: CI_DRM_16063 -> Patchwork_144268v2
CI-20190529: 20190529
CI_DRM_16063: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8223: ccfe042787b082c06402ff9af257f8338b8edd5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_144268v2: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/index.html
[-- Attachment #2: Type: text/html, Size: 5718 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* RE: ✗ i915.CI.BAT: failure for Compute as_sdp when vrr is enabled (rev2)
2025-02-04 16:50 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-02-05 3:42 ` Golani, Mitulkumar Ajitkumar
0 siblings, 0 replies; 12+ messages in thread
From: Golani, Mitulkumar Ajitkumar @ 2025-02-05 3:42 UTC (permalink / raw)
To: intel-gfx@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 4848 bytes --]
Issues reported on BAT is not related to any changes made to patch series.
Please help to re-report
Regards,
Mitul
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: 04 February 2025 22:20
To: Golani, Mitulkumar Ajitkumar <mitulkumar.ajitkumar.golani@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: ✗ i915.CI.BAT: failure for Compute as_sdp when vrr is enabled (rev2)
Patch Details
Series:
Compute as_sdp when vrr is enabled (rev2)
URL:
https://patchwork.freedesktop.org/series/144268/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/index.html
CI Bug Log - changes from CI_DRM_16063 -> Patchwork_144268v2
Summary
FAILURE
Serious unknown changes coming with Patchwork_144268v2 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_144268v2, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/index.html
Participating hosts (43 -> 41)
Missing (2): fi-snb-2520m fi-pnv-d510
Possible new issues
Here are the unknown changes that may have been introduced in Patchwork_144268v2:
IGT changes
Possible regressions
* igt@i915_selftest@live@reset:
* bat-twl-2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-twl-2/igt@i915_selftest@live@reset.html>
Known issues
Here are the changes found in Patchwork_144268v2 that come from known issues:
IGT changes
Issues hit
* igt@i915_selftest@live:
* bat-twl-1: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-twl-1/igt@i915_selftest@live.html> (i915#12919<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919> / i915#13503<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503>)
* bat-twl-2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-twl-2/igt@i915_selftest@live.html> (i915#12435<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435> / i915#12919<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919>)
* igt@i915_selftest@live@gt_heartbeat:
* bat-twl-1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-twl-1/igt@i915_selftest@live@gt_heartbeat.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-twl-1/igt@i915_selftest@live@gt_heartbeat.html> (i915#12919<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919>)
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
* bat-dg2-11: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html> (i915#9197<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197>) +3 other tests skip
Possible fixes
* igt@dmabuf@all-tests:
* bat-apl-1: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-apl-1/igt@dmabuf@all-tests.html> (i915#12904<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-apl-1/igt@dmabuf@all-tests.html> +1 other test pass
* igt@i915_selftest@live@workarounds:
* bat-arls-5: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-arls-5/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_144268v2/bat-arls-5/igt@i915_selftest@live@workarounds.html> +1 other test pass
* {bat-mtlp-9}: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-mtlp-9/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_144268v2/bat-mtlp-9/igt@i915_selftest@live@workarounds.html> +1 other test pass
{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_16063 -> Patchwork_144268v2
CI-20190529: 20190529
CI_DRM_16063: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8223: ccfe042787b082c06402ff9af257f8338b8edd5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_144268v2: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux
[-- Attachment #2: Type: text/html, Size: 21314 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for Compute as_sdp when vrr is enabled (rev2)
2025-02-04 13:06 [PATCH v2 0/2] Compute as_sdp when vrr is enabled Mitul Golani
` (4 preceding siblings ...)
2025-02-04 16:50 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-02-05 4:13 ` Patchwork
2025-02-05 11:16 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-05 12:59 ` ✓ i915.CI.Full: success " Patchwork
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-02-05 4:13 UTC (permalink / raw)
To: Mitul Golani; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 4219 bytes --]
== Series Details ==
Series: Compute as_sdp when vrr is enabled (rev2)
URL : https://patchwork.freedesktop.org/series/144268/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_16063 -> Patchwork_144268v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/index.html
Participating hosts (43 -> 41)
------------------------------
Missing (2): fi-snb-2520m fi-pnv-d510
Known issues
------------
Here are the changes found in Patchwork_144268v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-twl-1: NOTRUN -> [ABORT][1] ([i915#12919] / [i915#13503])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-twl-1/igt@i915_selftest@live.html
- bat-twl-2: NOTRUN -> [ABORT][2] ([i915#12435] / [i915#12919])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_heartbeat:
- bat-twl-1: [PASS][3] -> [ABORT][4] ([i915#12919])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-twl-1/igt@i915_selftest@live@gt_heartbeat.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-twl-1/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@reset:
- bat-twl-2: NOTRUN -> [ABORT][5] ([i915#13503])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-twl-2/igt@i915_selftest@live@reset.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [PASS][6] -> [SKIP][7] ([i915#9197]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@dmabuf@all-tests:
- bat-apl-1: [INCOMPLETE][8] ([i915#12904]) -> [PASS][9] +1 other test pass
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-apl-1/igt@dmabuf@all-tests.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-FAIL][10] ([i915#12061]) -> [PASS][11] +1 other test pass
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-arls-5/igt@i915_selftest@live@workarounds.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-arls-5/igt@i915_selftest@live@workarounds.html
- {bat-mtlp-9}: [DMESG-FAIL][12] ([i915#12061]) -> [PASS][13] +1 other test pass
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* Linux: CI_DRM_16063 -> Patchwork_144268v2
CI-20190529: 20190529
CI_DRM_16063: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8223: ccfe042787b082c06402ff9af257f8338b8edd5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_144268v2: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/index.html
[-- Attachment #2: Type: text/html, Size: 5271 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* ✗ i915.CI.Full: failure for Compute as_sdp when vrr is enabled (rev2)
2025-02-04 13:06 [PATCH v2 0/2] Compute as_sdp when vrr is enabled Mitul Golani
` (5 preceding siblings ...)
2025-02-05 4:13 ` ✓ i915.CI.BAT: success " Patchwork
@ 2025-02-05 11:16 ` Patchwork
2025-02-05 11:27 ` Golani, Mitulkumar Ajitkumar
2025-02-05 12:59 ` ✓ i915.CI.Full: success " Patchwork
7 siblings, 1 reply; 12+ messages in thread
From: Patchwork @ 2025-02-05 11:16 UTC (permalink / raw)
To: Mitul Golani; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 92878 bytes --]
== Series Details ==
Series: Compute as_sdp when vrr is enabled (rev2)
URL : https://patchwork.freedesktop.org/series/144268/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16063_full -> Patchwork_144268v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_144268v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_144268v2_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 (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_144268v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live:
- shard-mtlp: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-6/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-7/igt@i915_selftest@live.html
* igt@kms_flip@flip-vs-modeset-vs-hang@a-hdmi-a1:
- shard-snb: NOTRUN -> [INCOMPLETE][3] +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb4/igt@kms_flip@flip-vs-modeset-vs-hang@a-hdmi-a1.html
New tests
---------
New tests have been introduced between CI_DRM_16063_full and Patchwork_144268v2_full:
### New IGT tests (8) ###
* igt@kms_atomic@atomic-plane-damage@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [1.03] s
* igt@kms_atomic@plane-invalid-params-fence@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.54] s
* igt@kms_atomic_interruptible@atomic-setmode@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [6.38] s
* igt@kms_cursor_crc@cursor-dpms@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [1.26] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [2.60] s
* igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [4.34] s
* igt@kms_plane_alpha_blend@coverage-7efc@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.48] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.54] s
Known issues
------------
Here are the changes found in Patchwork_144268v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#11078])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@device_reset@cold-reset-bound.html
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +6 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +7 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#3936])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
- shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#8562])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#8562])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-norecovery:
- shard-mtlp: [PASS][17] -> [ABORT][18] ([i915#13193]) +2 other tests abort
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-4/igt@gem_ctx_exec@basic-norecovery.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-7/igt@gem_ctx_exec@basic-norecovery.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][19] ([i915#1099]) +4 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb1/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#280]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg2-9: NOTRUN -> [ABORT][23] ([i915#7975])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#4771])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#4525])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_fence@parallel@rcs0:
- shard-rkl: [PASS][28] -> [DMESG-WARN][29] ([i915#12964]) +5 other tests dmesg-warn
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-7/igt@gem_exec_fence@parallel@rcs0.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-2/igt@gem_exec_fence@parallel@rcs0.html
* igt@gem_exec_fence@submit67:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][33] +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#3281]) +19 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281]) +10 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][38] -> [INCOMPLETE][39] ([i915#11441] / [i915#13304])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [PASS][40] -> [INCOMPLETE][41] ([i915#11441])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-5/igt@gem_exec_suspend@basic-s0@lmem0.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-1/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-dg1: NOTRUN -> [ABORT][42] ([i915#7975]) +1 other test abort
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4860]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4860])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2-9: NOTRUN -> [SKIP][45] ([i915#4860])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_gtt_cpu_tlb:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4077]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_gtt_cpu_tlb.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_lmem_swapping@verify-random.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#284])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_media_vme.html
- shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#284])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_media_vme.html
* igt@gem_mmap@big-bo:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4083])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@basic-copy:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_mmap_gtt@basic-copy.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-rkl: NOTRUN -> [DMESG-WARN][54] ([i915#12917] / [i915#12964])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4083]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3282])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#3282]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pread@uncached:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_pread@uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][59] ([i915#2658])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][60] ([i915#12964])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4270]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][62] ([i915#12917] / [i915#12964]) +3 other tests timeout
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#5190] / [i915#8428]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#8411]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@access-control:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#3297])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#3297] / [i915#4880])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#3297] / [i915#4958])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#3297]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu-1: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#2527] / [i915#2856]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#2527]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#2527]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu-1: NOTRUN -> [ABORT][74] ([i915#12817] / [i915#9820])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: NOTRUN -> [ABORT][75] ([i915#9820])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][76] -> [ABORT][77] ([i915#10131] / [i915#10887] / [i915#9820])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [ABORT][78] ([i915#10887] / [i915#9820])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#8399]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#8399]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_selftest@live:
- shard-rkl: [PASS][81] -> [DMESG-FAIL][82] ([i915#13550]) +1 other test dmesg-fail
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-7/igt@i915_selftest@live.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-2/igt@i915_selftest@live.html
* igt@i915_selftest@mock:
- shard-tglu: NOTRUN -> [DMESG-WARN][83] ([i915#9311]) +1 other test dmesg-warn
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@i915_selftest@mock.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][84] ([i915#7443])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4212])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#12454] / [i915#12712])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#8709]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#8709]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#8709]) +15 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#12967] / [i915#6228])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#1769] / [i915#3555])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#1769] / [i915#3555])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][93] -> [FAIL][94] ([i915#11808]) +1 other test fail
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#5286]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#5286]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#5286])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#5286]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#4538] / [i915#5286])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#3638]) +5 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#3638]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5190]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4538]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][104] +17 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#6095]) +121 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#6095]) +29 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#12313]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#6095]) +74 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#12805]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#6095]) +16 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#12313]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#6095]) +34 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#10307] / [i915#6095]) +163 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-9: NOTRUN -> [SKIP][115] ([i915#10307] / [i915#6095]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#12313])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#3742])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#3742])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#11151] / [i915#7828]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#11151] / [i915#7828]) +11 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#11151] / [i915#7828]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#11151] / [i915#7828]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#11151] / [i915#7828]) +6 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#3116])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#3299])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [TIMEOUT][126] ([i915#7173])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-3.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#6944] / [i915#9424])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_content_protection@lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#9424]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#9424])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#6944] / [i915#9424]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#7118])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#13049])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#3555]) +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#3555]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#13049]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#3555]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4103] / [i915#4213]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#4103])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#13046] / [i915#5354])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-snb: NOTRUN -> [FAIL][140] ([i915#12170])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][141] ([i915#11968])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#9723])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [PASS][143] -> [SKIP][144] ([i915#12402])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#3840]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#3840]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#3840])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#3555] / [i915#3840])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#3840])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#3840] / [i915#9053])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#3840] / [i915#9053])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#3469])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#2065] / [i915#4854])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#4854])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#1839])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#658])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#9934]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#3637]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#9934]) +4 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#8381])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#3637]) +5 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#9934]) +10 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg1: [PASS][163] -> [DMESG-WARN][164] ([i915#4423]) +2 other tests dmesg-warn
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-17/igt@kms_flip@flip-vs-suspend.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a3:
- shard-dg1: NOTRUN -> [DMESG-WARN][165] ([i915#4423]) +1 other test dmesg-warn
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#2587] / [i915#2672]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#2672]) +6 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#2587] / [i915#2672] / [i915#3555])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#2672] / [i915#3555])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#2587] / [i915#2672]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#2587] / [i915#2672]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#2672] / [i915#3555]) +6 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#2672] / [i915#3555]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/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-tglu: NOTRUN -> [SKIP][174] ([i915#2672] / [i915#3555]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-dg1: [PASS][175] -> [ABORT][176] ([i915#4423])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-17/igt@kms_force_connector_basic@force-connector-state.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [PASS][177] -> [FAIL][178] ([i915#6880]) +1 other test fail
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#8708]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#5354]) +7 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][181] +20 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2-9: [PASS][182] -> [FAIL][183] ([i915#6880])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3023]) +27 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][185] +37 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#9766])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#9766])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#3458]) +5 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#1825]) +41 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][190] +308 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#8708]) +10 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][192] +38 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3458]) +7 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg2: [PASS][195] -> [SKIP][196] ([i915#3555] / [i915#8228])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-6/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#12713])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8228])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#12339])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#12394])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#12339])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#12339])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#13522])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#6301])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#6301])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: NOTRUN -> [DMESG-FAIL][206] ([i915#12964]) +2 other tests dmesg-fail
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#12247]) +2 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#12247]) +9 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#12247]) +9 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#12247] / [i915#6953])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#12247]) +8 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#9812])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#5354])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#9685])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#3828])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#3828])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: NOTRUN -> [FAIL][217] ([i915#9295])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][218] -> [SKIP][219] ([i915#9519]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#9519])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#6524])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#11520]) +3 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#11520]) +8 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#11520]) +4 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#11520]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#11520])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-snb: NOTRUN -> [SKIP][227] ([i915#11520]) +7 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#9683])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_psr2_su@page_flip-nv12.html
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#9683])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#9683])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#1072] / [i915#9732]) +6 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#1072] / [i915#9732]) +11 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg2-9: NOTRUN -> [SKIP][233] ([i915#1072] / [i915#9732])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#1072] / [i915#9732]) +25 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-cursor-render:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#9732]) +9 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_psr@psr2-cursor-render.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#9732]) +9 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#9685])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#9685])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#5289]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#12755] / [i915#5190])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#5289])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#5289]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-rkl: NOTRUN -> [DMESG-WARN][243] ([i915#12964]) +13 other tests dmesg-warn
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#3555]) +4 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#3555]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#8623])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#8623]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#8623])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [PASS][249] -> [FAIL][250] ([i915#9196]) +1 other test fail
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#11920])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [PASS][252] -> [SKIP][253] ([i915#3555] / [i915#9906])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-11/igt@kms_vrr@negative-basic.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#9906]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#9906])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#9906])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#2437] / [i915#9412])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@gen12-group-concurrent-oa-buffer-read:
- shard-tglu: [PASS][258] -> [FAIL][259] ([i915#10538])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-5/igt@perf@gen12-group-concurrent-oa-buffer-read.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#2436])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#3708])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#3708])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2-9: NOTRUN -> [SKIP][263] ([i915#3708])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][264] ([i915#12910])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][265] ([i915#13427]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_exec_schedule@wide:
- shard-tglu: [INCOMPLETE][267] ([i915#13391]) -> [PASS][268] +1 other test pass
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-2/igt@gem_exec_schedule@wide.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_exec_schedule@wide.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: [FAIL][269] ([i915#12941]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-5/igt@gem_tiled_swapping@non-threaded.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@gem_tiled_swapping@non-threaded.html
- shard-tglu: [FAIL][271] ([i915#12941]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-8/igt@gem_tiled_swapping@non-threaded.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-10/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][273] ([i915#3591]) -> [PASS][274] +1 other test pass
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@kms_atomic_transition@modeset-transition:
- shard-glk: [FAIL][275] ([i915#12238]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-glk8/igt@kms_atomic_transition@modeset-transition.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-glk9/igt@kms_atomic_transition@modeset-transition.html
* igt@kms_atomic_transition@modeset-transition@2x-outputs:
- shard-glk: [FAIL][277] ([i915#11859]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-glk9/igt@kms_atomic_transition@modeset-transition@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: [FAIL][279] ([i915#5956]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
- shard-dg1: [FAIL][281] ([i915#5956]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_color@deep-color:
- shard-dg2: [SKIP][283] ([i915#3555]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-2/igt@kms_color@deep-color.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@kms_color@deep-color.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [FAIL][285] ([i915#13566]) -> [PASS][286] +3 other tests pass
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-tglu: [FAIL][287] ([i915#13566]) -> [PASS][288] +7 other tests pass
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][289] ([i915#11989]) -> [PASS][290] +1 other test pass
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-snb5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-glk: [FAIL][291] -> [PASS][292] +1 other test pass
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-glk3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-glk8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- shard-dg2: [FAIL][293] ([i915#6880]) -> [PASS][294] +1 other test pass
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [SKIP][295] ([i915#3555] / [i915#8228]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-3/igt@kms_hdr@static-toggle.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: [SKIP][297] ([i915#12388]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-2/igt@kms_joiner@basic-force-big-joiner.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [SKIP][299] ([i915#9340]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][301] ([i915#9519]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [FAIL][303] ([IGT#160]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-2/igt@kms_sysfs_edid_timing.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@kms_sysfs_edid_timing.html
* igt@kms_vblank@wait-busy:
- shard-dg1: [DMESG-WARN][305] ([i915#4423]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-13/igt@kms_vblank@wait-busy.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@kms_vblank@wait-busy.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [FAIL][307] ([i915#10393]) -> [PASS][308] +1 other test pass
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-2/igt@kms_vrr@negative-basic.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-4/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@most-busy-check-all:
- shard-snb: [INCOMPLETE][309] ([i915#13520]) -> [PASS][310] +1 other test pass
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-snb5/igt@perf_pmu@most-busy-check-all.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb4/igt@perf_pmu@most-busy-check-all.html
* igt@sysfs_timeslice_duration@timeout@rcs0:
- shard-rkl: [DMESG-WARN][311] ([i915#12964]) -> [PASS][312] +5 other tests pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-4/igt@sysfs_timeslice_duration@timeout@rcs0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-3/igt@sysfs_timeslice_duration@timeout@rcs0.html
#### Warnings ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][313] ([i915#12392]) -> [INCOMPLETE][314] ([i915#12392] / [i915#7297])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][315] ([i915#5138]) -> [DMESG-FAIL][316] ([i915#13314])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-dg1: [SKIP][317] ([i915#4423] / [i915#6095]) -> [SKIP][318] ([i915#6095])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-12/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_content_protection@legacy:
- shard-dg2: [SKIP][319] ([i915#7118] / [i915#9424]) -> [TIMEOUT][320] ([i915#7173])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-6/igt@kms_content_protection@legacy.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][321] ([i915#9424]) -> [SKIP][322] ([i915#9433])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-17/igt@kms_content_protection@mei-interface.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_content_protection@mei-interface.html
- shard-snb: [INCOMPLETE][323] ([i915#9878]) -> [SKIP][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-snb5/igt@kms_content_protection@mei-interface.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb4/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: [TIMEOUT][325] ([i915#7173]) -> [SKIP][326] ([i915#7118])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-10/igt@kms_content_protection@srm.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [DMESG-FAIL][327] ([i915#12964]) -> [DMESG-WARN][328] ([i915#12964]) +1 other test dmesg-warn
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-3/igt@kms_cursor_crc@cursor-random-128x42.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2:
- shard-rkl: [FAIL][329] ([i915#13566]) -> [DMESG-WARN][330] ([i915#12964])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-3/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: [SKIP][331] ([i915#3458]) -> [SKIP][332] ([i915#10433] / [i915#3458]) +3 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][333] ([i915#10433] / [i915#3458]) -> [SKIP][334] ([i915#3458])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][335] ([i915#1187] / [i915#12713]) -> [SKIP][336] ([i915#12713])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_psr@psr-no-drrs:
- shard-dg1: [SKIP][337] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][338] ([i915#1072] / [i915#9732])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-13/igt@kms_psr@psr-no-drrs.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@kms_psr@psr-no-drrs.html
[IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[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#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11968
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12170]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12170
[i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304
[i915#13314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13314
[i915#13391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13391
[i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[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#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[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#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#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[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#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[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#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[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#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#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[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#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[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#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[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#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[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#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[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#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[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#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_16063 -> Patchwork_144268v2
CI-20190529: 20190529
CI_DRM_16063: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8223: ccfe042787b082c06402ff9af257f8338b8edd5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_144268v2: 34f113e9fef546134e402e7657fc47e92fba59dc @ 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_144268v2/index.html
[-- Attachment #2: Type: text/html, Size: 115101 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* RE: ✗ i915.CI.Full: failure for Compute as_sdp when vrr is enabled (rev2)
2025-02-05 11:16 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-02-05 11:27 ` Golani, Mitulkumar Ajitkumar
0 siblings, 0 replies; 12+ messages in thread
From: Golani, Mitulkumar Ajitkumar @ 2025-02-05 11:27 UTC (permalink / raw)
To: intel-gfx@lists.freedesktop.org
Cc: Nautiyal, Ankit K, Hogander, Jouni, Saarinen, Jani
[-- Attachment #1: Type: text/plain, Size: 98257 bytes --]
Hello,
Both failures,
https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb4/igt@kms_flip@flip-vs-modeset-vs-hang@a-hdmi-a1.html
https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-7/igt@i915_selftest@live.html
from attached logs, does not support VSC SDP as well as Adaptive sync SDP, where my changes are present. Need re-report.
Regards,
Mitul
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: 05 February 2025 16:46
To: Golani, Mitulkumar Ajitkumar <mitulkumar.ajitkumar.golani@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: ✗ i915.CI.Full: failure for Compute as_sdp when vrr is enabled (rev2)
Patch Details
Series:
Compute as_sdp when vrr is enabled (rev2)
URL:
https://patchwork.freedesktop.org/series/144268/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/index.html
CI Bug Log - changes from CI_DRM_16063_full -> Patchwork_144268v2_full
Summary
FAILURE
Serious unknown changes coming with Patchwork_144268v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_144268v2_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 (11 -> 11)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in Patchwork_144268v2_full:
IGT changes
Possible regressions
* igt@i915_selftest@live:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-6/igt@i915_selftest@live.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-7/igt@i915_selftest@live.html>
* igt@kms_flip@flip-vs-modeset-vs-hang@a-hdmi-a1:
* shard-snb: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb4/igt@kms_flip@flip-vs-modeset-vs-hang@a-hdmi-a1.html> +1 other test incomplete
New tests
New tests have been introduced between CI_DRM_16063_full and Patchwork_144268v2_full:
New IGT tests (8)
* igt@kms_atomic@atomic-plane-damage@pipe-a-dp-3:
* Statuses : 1 pass(s)
* Exec time: [1.03] s
* igt@kms_atomic@plane-invalid-params-fence@pipe-a-dp-3:
* Statuses : 1 pass(s)
* Exec time: [0.54] s
* igt@kms_atomic_interruptible@atomic-setmode@pipe-a-dp-3:
* Statuses : 1 pass(s)
* Exec time: [6.38] s
* igt@kms_cursor_crc@cursor-dpms@pipe-a-dp-3:
* Statuses : 1 pass(s)
* Exec time: [1.26] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-dp-3:
* Statuses : 1 pass(s)
* Exec time: [2.60] s
* igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-dp-3:
* Statuses : 1 pass(s)
* Exec time: [4.34] s
* igt@kms_plane_alpha_blend@coverage-7efc@pipe-a-dp-3:
* Statuses : 1 pass(s)
* Exec time: [0.48] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-dp-3:
* Statuses : 1 pass(s)
* Exec time: [0.54] s
Known issues
Here are the changes found in Patchwork_144268v2_full that come from known issues:
IGT changes
Issues hit
* igt@device_reset@cold-reset-bound:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@device_reset@cold-reset-bound.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@device_reset@cold-reset-bound.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>)
* igt@drm_fdinfo@busy-check-all@bcs0:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@drm_fdinfo@busy-check-all@bcs0.html> (i915#8414<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) +6 other tests skip
* igt@drm_fdinfo@busy-idle@bcs0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@drm_fdinfo@busy-idle@bcs0.html> (i915#8414<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) +7 other tests skip
* igt@gem_busy@semaphore:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_busy@semaphore.html> (i915#3936<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936>)
* igt@gem_ccs@block-multicopy-compressed:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_ccs@block-multicopy-compressed.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
* igt@gem_close_race@multigpu-basic-process:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/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-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/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_144268v2/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-set-pat:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@gem_create@create-ext-set-pat.html> (i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>)
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_create@create-ext-set-pat.html> (i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>)
* igt@gem_ctx_exec@basic-norecovery:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-4/igt@gem_ctx_exec@basic-norecovery.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-7/igt@gem_ctx_exec@basic-norecovery.html> (i915#13193<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193>) +2 other tests abort
* igt@gem_ctx_persistence@engines-mixed-process:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb1/igt@gem_ctx_persistence@engines-mixed-process.html> (i915#1099<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>) +4 other tests skip
* igt@gem_ctx_persistence@heartbeat-stop:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html> (i915#8555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>)
* igt@gem_ctx_sseu@invalid-args:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_ctx_sseu@invalid-args.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
* igt@gem_ctx_sseu@invalid-sseu:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) +1 other test skip
* igt@gem_eio@hibernate:
* shard-dg2-9: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@gem_eio@hibernate.html> (i915#7975<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975>)
* igt@gem_exec_balancer@bonded-dual:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_exec_balancer@bonded-dual.html> (i915#4771<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>)
* igt@gem_exec_balancer@parallel-balancer:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) +1 other test skip
* igt@gem_exec_balancer@parallel-ordering:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_exec_balancer@parallel-ordering.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
* igt@gem_exec_balancer@parallel-out-fence:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@gem_exec_balancer@parallel-out-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) +1 other test skip
* igt@gem_exec_fence@parallel@rcs0:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-7/igt@gem_exec_fence@parallel@rcs0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-2/igt@gem_exec_fence@parallel@rcs0.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +5 other tests dmesg-warn
* igt@gem_exec_fence@submit67:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_exec_fence@submit67.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_exec_flush@basic-batch-kernel-default-wb.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) +2 other tests skip
* igt@gem_exec_flush@basic-wb-prw-default:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_exec_flush@basic-wb-prw-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>)
* igt@gem_exec_params@secure-non-master:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_exec_params@secure-non-master.html> +2 other tests skip
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-read-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
* igt@gem_exec_reloc@basic-scanout:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gem_exec_reloc@basic-scanout.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +19 other tests skip
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +10 other tests skip
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-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_suspend@basic-s0:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-1/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>)
* igt@gem_exec_suspend@basic-s0@lmem0:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-5/igt@gem_exec_suspend@basic-s0@lmem0.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-1/igt@gem_exec_suspend@basic-s0@lmem0.html> (i915#11441<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441>)
* igt@gem_exec_suspend@basic-s4-devices@smem:
* shard-dg1: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_exec_suspend@basic-s4-devices@smem.html> (i915#7975<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975>) +1 other test abort
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) +2 other tests skip
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>)
* igt@gem_fenced_exec_thrash@too-many-fences:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@gem_fenced_exec_thrash@too-many-fences.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>)
* igt@gem_gtt_cpu_tlb:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_gtt_cpu_tlb.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +4 other tests skip
* igt@gem_lmem_swapping@parallel-multi:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip
* igt@gem_lmem_swapping@parallel-random-verify:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +4 other tests skip
* igt@gem_lmem_swapping@verify-random:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_lmem_swapping@verify-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other tests skip
* igt@gem_media_vme:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_media_vme.html> (i915#284<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284>)
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_media_vme.html> (i915#284<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284>)
* igt@gem_mmap@big-bo:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_mmap@big-bo.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>)
* igt@gem_mmap_gtt@basic-copy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_mmap_gtt@basic-copy.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +4 other tests skip
* igt@gem_mmap_gtt@medium-copy-odd:
* shard-rkl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/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@write-read-distinct:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_mmap_wc@write-read-distinct.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +2 other tests skip
* igt@gem_partial_pwrite_pread@reads-snoop:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_partial_pwrite_pread@reads-snoop.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
* igt@gem_partial_pwrite_pread@reads-uncached:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gem_partial_pwrite_pread@reads-uncached.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +5 other tests skip
* igt@gem_pread@uncached:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_pread@uncached.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +3 other tests skip
* igt@gem_pwrite@basic-exhaustion:
* shard-tglu-1: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658>)
* igt@gem_pxp@create-protected-buffer:
* shard-rkl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@gem_pxp@create-protected-buffer.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
* igt@gem_pxp@display-protected-crc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_pxp@display-protected-crc.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +1 other test skip
* igt@gem_pxp@hw-rejects-pxp-buffer:
* shard-rkl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gem_pxp@hw-rejects-pxp-buffer.html> (i915#12917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917> / i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +3 other tests timeout
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_render_copy@yf-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>) +1 other test skip
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) +4 other tests skip
* igt@gem_userptr_blits@access-control:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_userptr_blits@access-control.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#4880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880>)
* igt@gem_userptr_blits@sd-probe:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_userptr_blits@sd-probe.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#4958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>)
* igt@gem_userptr_blits@unsync-unmap:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
* igt@gem_userptr_blits@unsync-unmap-cycles:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-cycles.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +4 other tests skip
* igt@gen9_exec_parse@basic-rejected:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gen9_exec_parse@basic-rejected.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
* igt@gen9_exec_parse@bb-chained:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@gen9_exec_parse@bb-chained.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@secure-batches:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gen9_exec_parse@secure-batches.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +1 other test skip
* igt@gen9_exec_parse@unaligned-access:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +4 other tests skip
* igt@i915_module_load@reload-with-fault-injection:
* shard-tglu-1: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@i915_module_load@reload-with-fault-injection.html> (i915#12817<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817> / i915#9820<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>)
* shard-dg1: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html> (i915#9820<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>)
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html> (i915#10131<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131> / i915#10887<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887> / i915#9820<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>)
* shard-dg2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html> (i915#10887<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887> / i915#9820<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>)
* igt@i915_pm_freq_api@freq-reset:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@i915_pm_freq_api@freq-reset.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) +1 other test skip
* igt@i915_pm_freq_api@freq-suspend:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) +1 other test skip
* igt@i915_selftest@live:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-7/igt@i915_selftest@live.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-2/igt@i915_selftest@live.html> (i915#13550<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550>) +1 other test dmesg-fail
* igt@i915_selftest@mock:
* shard-tglu: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@i915_selftest@mock.html> (i915#9311<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311>) +1 other test dmesg-warn
* igt@i915_suspend@basic-s3-without-i915:
* shard-tglu-1: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html> (i915#7443<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443>)
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/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@invalid-smem-bo-on-discrete:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#12454<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> / i915#12712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>)
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc.html> (i915#8709<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) +3 other tests skip
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html> (i915#8709<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) +3 other tests skip
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html> (i915#8709<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) +15 other tests skip
* igt@kms_async_flips@invalid-async-flip:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html> (i915#12967<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967> / i915#6228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228>)
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/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>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/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-toggle-modeset-transition@pipe-a-hdmi-a-1:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html> (i915#11808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808>) +1 other test fail
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +1 other test skip
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +3 other tests skip
* igt@kms_big_fb@4-tiled-addfb:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +4 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
* igt@kms_big_fb@linear-8bpp-rotate-90:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +5 other tests skip
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +3 other tests skip
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +2 other tests skip
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) +2 other tests skip
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html> +17 other tests skip
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +121 other tests skip
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +29 other tests skip
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-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>) +2 other tests skip
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +74 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> (i915#12805<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805>) +1 other test skip
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +16 other tests skip
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +34 other tests skip
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +163 other tests skip
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-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>) +4 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
* igt@kms_cdclk@mode-transition-all-outputs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_cdclk@mode-transition-all-outputs.html> (i915#3742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_cdclk@mode-transition-all-outputs.html> (i915#3742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>)
* igt@kms_chamelium_audio@hdmi-audio-edid:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_chamelium_audio@hdmi-audio-edid.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_edid@hdmi-edid-change-during-suspend:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +11 other tests skip
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_chamelium_hpd@common-hpd-after-suspend.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@hdmi-hpd-enable-disable-mode:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.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@hdmi-hpd-storm-disable:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +6 other tests skip
* igt@kms_content_protection@dp-mst-lic-type-1:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html> (i915#3116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>)
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/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@legacy@pipe-a-dp-3:
* shard-dg2: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-3.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
* igt@kms_content_protection@lic-type-0:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_content_protection@lic-type-0.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_content_protection@lic-type-0.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) +1 other test skip
* igt@kms_content_protection@lic-type-1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_content_protection@lic-type-1.html> (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_144268v2/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>) +1 other test skip
* igt@kms_content_protection@srm:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_content_protection@srm.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>)
* igt@kms_cursor_crc@cursor-offscreen-512x512:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
* igt@kms_cursor_crc@cursor-onscreen-32x32:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip
* igt@kms_cursor_crc@cursor-onscreen-512x512:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +2 other tests skip
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.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@basic-busy-flip-before-cursor-varying-size:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html> (i915#13046<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
* shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html> (i915#12170<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12170>)
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
* shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html> (i915#11968<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11968>)
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> (i915#9723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
* igt@kms_dp_linktrain_fallback@dp-fallback:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-7/igt@kms_dp_linktrain_fallback@dp-fallback.html> (i915#12402<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402>)
* igt@kms_dsc@dsc-basic:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/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>) +1 other test skip
* igt@kms_dsc@dsc-fractional-bpp:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) +1 other test skip
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
* igt@kms_dsc@dsc-with-formats:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_dsc@dsc-with-formats.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-with-output-formats:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats.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-with-output-formats-with-bpc:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> / i915#9053<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>)
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> / i915#9053<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>)
* igt@kms_fbcon_fbt@psr:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_fbcon_fbt@psr.html> (i915#3469<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469>)
* igt@kms_feature_discovery@chamelium:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_feature_discovery@chamelium.html> (i915#2065<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065> / i915#4854<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_feature_discovery@chamelium.html> (i915#4854<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>)
* igt@kms_feature_discovery@display-4x:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_feature_discovery@display-4x.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>)
* igt@kms_feature_discovery@psr1:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_feature_discovery@psr1.html> (i915#658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>)
* igt@kms_flip@2x-absolute-wf_vblank:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +1 other test skip
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) +3 other tests skip
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +4 other tests skip
* igt@kms_flip@2x-flip-vs-fences:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences.html> (i915#8381<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>)
* igt@kms_flip@2x-nonexisting-fb-interruptible:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) +5 other tests skip
* igt@kms_flip@2x-plain-flip-interruptible:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_flip@2x-plain-flip-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +10 other tests skip
* igt@kms_flip@flip-vs-suspend:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-17/igt@kms_flip@flip-vs-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_flip@flip-vs-suspend.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) +2 other tests dmesg-warn
* igt@kms_flip@flip-vs-suspend@b-hdmi-a3:
* shard-dg1: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) +1 other test dmesg-warn
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@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-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +6 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.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-64bpp-4tile-to-16bpp-4tile-upscaling:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/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>)
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-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-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@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-64bpp-4tile-to-32bpp-4tile-upscaling:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-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>) +6 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/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>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-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>) +1 other test skip
* igt@kms_force_connector_basic@force-connector-state:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-17/igt@kms_force_connector_basic@force-connector-state.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_force_connector_basic@force-connector-state.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>)
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html> (i915#6880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>) +1 other test fail
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +3 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +7 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html> +20 other tests skip
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
* shard-dg2-9: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html> (i915#6880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>)
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html> (i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +27 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html> +37 other tests skip
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (i915#9766<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>)
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/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-spr-indfb-onoff:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +5 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +41 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html> +308 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +10 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> +38 other tests skip
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +7 other tests skip
* igt@kms_hdr@bpc-switch-dpms:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-6/igt@kms_hdr@bpc-switch-dpms.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-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>)
* igt@kms_hdr@static-toggle:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/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_joiner@basic-ultra-joiner:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@kms_joiner@basic-ultra-joiner.html> (i915#12339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339>)
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (i915#12394<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394>)
* igt@kms_joiner@invalid-modeset-ultra-joiner:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (i915#12339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html> (i915#12339<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339>)
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html> (i915#13522<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522>)
* igt@kms_panel_fitting@atomic-fastset:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_panel_fitting@atomic-fastset.html> (i915#6301<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html> (i915#6301<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
* shard-rkl: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +2 other tests dmesg-fail
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +2 other tests skip
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +9 other tests skip
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +9 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@kms_plane_scaling@planes-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>)
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html> (i915#12247<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247>) +8 other tests skip
* igt@kms_pm_backlight@fade:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_pm_backlight@fade.html> (i915#9812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>)
* igt@kms_pm_backlight@fade-with-dpms:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
* igt@kms_pm_dc@dc3co-vpb-simulation:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
* igt@kms_pm_dc@dc5-retention-flops:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_pm_dc@dc5-retention-flops.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_pm_dc@dc5-retention-flops.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>)
* igt@kms_pm_dc@dc6-dpms:
* shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html> (i915#9295<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295>)
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) +2 other tests skip
* igt@kms_pm_rpm@dpms-non-lpsp:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
* igt@kms_prime@basic-crc-hybrid:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_prime@basic-crc-hybrid.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>)
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +3 other tests skip
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +8 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +4 other tests skip
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +1 other test skip
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +7 other tests skip
* igt@kms_psr2_su@page_flip-nv12:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_psr2_su@page_flip-nv12.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_psr2_su@page_flip-nv12.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
* igt@kms_psr2_su@page_flip-p010:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/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-mmap-gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +6 other tests skip
* igt@kms_psr@fbc-psr-primary-render:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_psr@fbc-psr-primary-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +11 other tests skip
* igt@kms_psr@pr-cursor-plane-onoff:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@kms_psr@pr-cursor-plane-onoff.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@psr2-cursor-mmap-gtt:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +25 other tests skip
* igt@kms_psr@psr2-cursor-render:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_psr@psr2-cursor-render.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +9 other tests skip
* igt@kms_psr@psr2-sprite-mmap-gtt:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +9 other tests skip
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/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-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/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-4-tiled-reflect-x-180:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) +1 other test skip
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.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-180:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) +2 other tests skip
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
* shard-rkl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +13 other tests dmesg-warn
* igt@kms_scaling_modes@scaling-mode-full:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip
* igt@kms_setmode@basic-clone-single-crtc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip
* igt@kms_tiled_display@basic-test-pattern:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) +1 other test skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
* igt@kms_universal_plane@cursor-fb-leak:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>) +1 other test fail
* igt@kms_vrr@lobf:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_vrr@lobf.html> (i915#11920<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920>)
* igt@kms_vrr@negative-basic:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-11/igt@kms_vrr@negative-basic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-1/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_vrr@seamless-rr-switch-drrs:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
* igt@kms_vrr@seamless-rr-switch-vrr:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-vrr.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/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@perf@gen12-group-concurrent-oa-buffer-read:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-5/igt@perf@gen12-group-concurrent-oa-buffer-read.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html> (i915#10538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538>)
* igt@perf@gen8-unprivileged-single-ctx-counters:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html> (i915#2436<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436>)
* igt@prime_vgem@fence-flip-hang:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
* igt@prime_vgem@fence-read-hang:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@prime_vgem@fence-read-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
* igt@prime_vgem@fence-write-hang:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@prime_vgem@fence-write-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
* shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (i915#12910<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>)
Possible fixes
* igt@gem_create@create-ext-cpu-access-big:
* shard-dg2: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html> (i915#13427<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html>
* igt@gem_exec_schedule@wide:
* shard-tglu: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-2/igt@gem_exec_schedule@wide.html> (i915#13391<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13391>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_exec_schedule@wide.html> +1 other test pass
* igt@gem_tiled_swapping@non-threaded:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-5/igt@gem_tiled_swapping@non-threaded.html> (i915#12941<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@gem_tiled_swapping@non-threaded.html>
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-8/igt@gem_tiled_swapping@non-threaded.html> (i915#12941<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-10/igt@gem_tiled_swapping@non-threaded.html>
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
* shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html> (i915#3591<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html> +1 other test pass
* igt@kms_atomic_transition@modeset-transition:
* shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-glk8/igt@kms_atomic_transition@modeset-transition.html> (i915#12238<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-glk9/igt@kms_atomic_transition@modeset-transition.html>
* igt@kms_atomic_transition@modeset-transition@2x-outputs:
* shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html> (i915#11859<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-glk9/igt@kms_atomic_transition@modeset-transition@2x-outputs.html>
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (i915#5956<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html>
* shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (i915#5956<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html>
* igt@kms_color@deep-color:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-2/igt@kms_color@deep-color.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@kms_color@deep-color.html>
* igt@kms_cursor_crc@cursor-onscreen-128x42:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html> +3 other tests pass
* igt@kms_cursor_crc@cursor-random-128x42:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42.html> +7 other tests pass
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1:
* shard-snb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-snb5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html> (i915#11989<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html> +1 other test pass
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
* shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-glk3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-glk8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> +1 other test pass
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html> (i915#6880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html> +1 other test pass
* igt@kms_hdr@static-toggle:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-3/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_144268v2/shard-dg2-10/igt@kms_hdr@static-toggle.html>
* igt@kms_joiner@basic-force-big-joiner:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-2/igt@kms_joiner@basic-force-big-joiner.html> (i915#12388<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html>
* igt@kms_pm_lpsp@kms-lpsp:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html> (i915#9340<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html>
* igt@kms_pm_rpm@modeset-lpsp-stress:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-3/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_144268v2/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html>
* igt@kms_sysfs_edid_timing:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-2/igt@kms_sysfs_edid_timing.html> (IGT#160<https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@kms_sysfs_edid_timing.html>
* igt@kms_vblank@wait-busy:
* shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-13/igt@kms_vblank@wait-busy.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@kms_vblank@wait-busy.html>
* igt@kms_vrr@negative-basic:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-2/igt@kms_vrr@negative-basic.html> (i915#10393<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-4/igt@kms_vrr@negative-basic.html> +1 other test pass
* igt@perf_pmu@most-busy-check-all:
* shard-snb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-snb5/igt@perf_pmu@most-busy-check-all.html> (i915#13520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb4/igt@perf_pmu@most-busy-check-all.html> +1 other test pass
* igt@sysfs_timeslice_duration@timeout@rcs0:
* shard-rkl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-4/igt@sysfs_timeslice_duration@timeout@rcs0.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-3/igt@sysfs_timeslice_duration@timeout@rcs0.html> +5 other tests pass
Warnings
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
* shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html> (i915#12392<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html> (i915#12392<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392> / i915#7297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297>)
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#5138<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#13314<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13314>)
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-12/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-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_144268v2/shard-dg1-18/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
* igt@kms_content_protection@legacy:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-6/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>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_content_protection@legacy.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
* igt@kms_content_protection@mei-interface:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-17/igt@kms_content_protection@mei-interface.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_content_protection@mei-interface.html> (i915#9433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433>)
* shard-snb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-snb5/igt@kms_content_protection@mei-interface.html> (i915#9878<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb4/igt@kms_content_protection@mei-interface.html>
* igt@kms_content_protection@srm:
* shard-dg2: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-10/igt@kms_content_protection@srm.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_content_protection@srm.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>)
* igt@kms_cursor_crc@cursor-random-128x42:
* shard-rkl: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-3/igt@kms_cursor_crc@cursor-random-128x42.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>) +1 other test dmesg-warn
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-3/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html> (i915#12964<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964>)
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.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-primscrn-cur-indfb-draw-mmap-cpu:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-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_144268v2/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
* igt@kms_hdr@brightness-with-hdr:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-13/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_144268v2/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>)
* igt@kms_psr@psr-no-drrs:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-13/igt@kms_psr@psr-no-drrs.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_144268v2/shard-dg1-13/igt@kms_psr@psr-no-drrs.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
Build changes
* Linux: CI_DRM_16063 -> Patchwork_144268v2
CI-20190529: 20190529
CI_DRM_16063: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8223: ccfe042787b082c06402ff9af257f8338b8edd5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_144268v2: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
[-- Attachment #2: Type: text/html, Size: 191862 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.Full: success for Compute as_sdp when vrr is enabled (rev2)
2025-02-04 13:06 [PATCH v2 0/2] Compute as_sdp when vrr is enabled Mitul Golani
` (6 preceding siblings ...)
2025-02-05 11:16 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-02-05 12:59 ` Patchwork
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-02-05 12:59 UTC (permalink / raw)
To: Mitul Golani; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 92493 bytes --]
== Series Details ==
Series: Compute as_sdp when vrr is enabled (rev2)
URL : https://patchwork.freedesktop.org/series/144268/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_16063_full -> Patchwork_144268v2_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between CI_DRM_16063_full and Patchwork_144268v2_full:
### New IGT tests (8) ###
* igt@kms_atomic@atomic-plane-damage@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [1.03] s
* igt@kms_atomic@plane-invalid-params-fence@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.54] s
* igt@kms_atomic_interruptible@atomic-setmode@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [6.38] s
* igt@kms_cursor_crc@cursor-dpms@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [1.26] s
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [2.60] s
* igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [4.34] s
* igt@kms_plane_alpha_blend@coverage-7efc@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.48] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.54] s
Known issues
------------
Here are the changes found in Patchwork_144268v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][1] ([i915#11078])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@device_reset@cold-reset-bound.html
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#11078])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][3] ([i915#8414]) +6 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8414]) +7 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#3936])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
- shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#8562])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#8562])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-norecovery:
- shard-mtlp: [PASS][14] -> [ABORT][15] ([i915#13193]) +2 other tests abort
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-4/igt@gem_ctx_exec@basic-norecovery.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-7/igt@gem_ctx_exec@basic-norecovery.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][16] ([i915#1099]) +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb1/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#280])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#280]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg2-9: NOTRUN -> [ABORT][20] ([i915#7975])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#4771])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#4525]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#4525])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#4525]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_fence@parallel@rcs0:
- shard-rkl: [PASS][25] -> [DMESG-WARN][26] ([i915#12964]) +5 other tests dmesg-warn
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-7/igt@gem_exec_fence@parallel@rcs0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-2/igt@gem_exec_fence@parallel@rcs0.html
* igt@gem_exec_fence@submit67:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#4812])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][30] +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3281])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +19 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281]) +10 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4537] / [i915#4812])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][35] -> [INCOMPLETE][36] ([i915#11441] / [i915#13304])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [PASS][37] -> [INCOMPLETE][38] ([i915#11441])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-5/igt@gem_exec_suspend@basic-s0@lmem0.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-1/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-dg1: NOTRUN -> [ABORT][39] ([i915#7975]) +1 other test abort
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4860]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2-9: NOTRUN -> [SKIP][42] ([i915#4860])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_gtt_cpu_tlb:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4077]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@gem_gtt_cpu_tlb.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#4613]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_lmem_swapping@verify-random.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#284])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_media_vme.html
- shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#284])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_media_vme.html
* igt@gem_mmap@big-bo:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@basic-copy:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_mmap_gtt@basic-copy.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-rkl: NOTRUN -> [DMESG-WARN][51] ([i915#12917] / [i915#12964])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3282])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pread@uncached:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_pread@uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][56] ([i915#2658])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][57] ([i915#12964])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][59] ([i915#12917] / [i915#12964]) +3 other tests timeout
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#5190] / [i915#8428]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#8411]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@access-control:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3297])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297] / [i915#4880])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#4958])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#3297])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#3297]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#2527] / [i915#2856])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#2527]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#2527]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu-1: NOTRUN -> [ABORT][71] ([i915#12817] / [i915#9820])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: NOTRUN -> [ABORT][72] ([i915#9820])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][73] -> [ABORT][74] ([i915#10131] / [i915#10887] / [i915#9820])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [ABORT][75] ([i915#10887] / [i915#9820])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][76] ([i915#8399]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#8399]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_selftest@live:
- shard-rkl: [PASS][78] -> [DMESG-FAIL][79] ([i915#13550]) +1 other test dmesg-fail
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-7/igt@i915_selftest@live.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-2/igt@i915_selftest@live.html
- shard-mtlp: [PASS][80] -> [ABORT][81] ([i915#13503])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-6/igt@i915_selftest@live.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-7/igt@i915_selftest@live.html
* igt@i915_selftest@mock:
- shard-tglu: NOTRUN -> [DMESG-WARN][82] ([i915#9311]) +1 other test dmesg-warn
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@i915_selftest@mock.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][83] ([i915#7443])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4212])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#12454] / [i915#12712])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#8709]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#8709]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#8709]) +15 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#12967] / [i915#6228])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#1769] / [i915#3555])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#1769] / [i915#3555])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][92] -> [FAIL][93] ([i915#11808]) +1 other test fail
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#5286]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#5286]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#5286])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#5286]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5286])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#3638]) +5 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#3638]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#4538] / [i915#5190]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#4538]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][103] +17 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#6095]) +121 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#6095]) +29 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#12313]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#6095]) +74 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#12805]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#6095]) +16 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#12313]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#6095]) +34 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#10307] / [i915#6095]) +163 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-9: NOTRUN -> [SKIP][114] ([i915#10307] / [i915#6095]) +4 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#12313])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#3742])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#3742])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#11151] / [i915#7828]) +5 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#11151] / [i915#7828]) +11 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#11151] / [i915#7828]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#11151] / [i915#7828]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#11151] / [i915#7828]) +6 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#3116])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#3299])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [TIMEOUT][125] ([i915#7173])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-3.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#6944] / [i915#9424])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_content_protection@lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#9424]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#9424])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#6944] / [i915#9424]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#7118])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#13049])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#3555]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#3555]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#13049]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#3555]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#4103] / [i915#4213]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#4103])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#13046] / [i915#5354])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-snb: NOTRUN -> [FAIL][139] ([i915#12170])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][140] ([i915#11968])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#9723])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [PASS][142] -> [SKIP][143] ([i915#12402])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#3840]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#3840]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#3840])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#3840])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#3555] / [i915#3840])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#3840] / [i915#9053])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#3840] / [i915#9053])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#3469])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#2065] / [i915#4854])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#4854])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#1839])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#658])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#9934]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#3637]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#9934]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#8381])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#3637]) +5 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#9934]) +10 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-modeset-vs-hang@a-hdmi-a1:
- shard-snb: NOTRUN -> [INCOMPLETE][162] ([i915#12314]) +1 other test incomplete
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb4/igt@kms_flip@flip-vs-modeset-vs-hang@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg1: [PASS][163] -> [DMESG-WARN][164] ([i915#4423]) +2 other tests dmesg-warn
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-17/igt@kms_flip@flip-vs-suspend.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a3:
- shard-dg1: NOTRUN -> [DMESG-WARN][165] ([i915#4423]) +1 other test dmesg-warn
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#2587] / [i915#2672]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#2672]) +6 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#2587] / [i915#2672] / [i915#3555])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#2672] / [i915#3555])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#2587] / [i915#2672]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#2587] / [i915#2672]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#2672] / [i915#3555]) +6 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#2672] / [i915#3555]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/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-tglu: NOTRUN -> [SKIP][174] ([i915#2672] / [i915#3555]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-dg1: [PASS][175] -> [ABORT][176] ([i915#4423])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-17/igt@kms_force_connector_basic@force-connector-state.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [PASS][177] -> [FAIL][178] ([i915#6880]) +1 other test fail
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#8708]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#5354]) +7 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][181] +20 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2-9: [PASS][182] -> [FAIL][183] ([i915#6880])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3023]) +27 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][185] +37 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#9766])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#9766])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#3458]) +5 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#1825]) +41 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][190] +308 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#8708]) +10 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][192] +38 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3458]) +7 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg2: [PASS][195] -> [SKIP][196] ([i915#3555] / [i915#8228])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-6/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#12713])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8228])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#12339])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#12394])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#12339])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#12339])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#13522])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#6301])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#6301])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: NOTRUN -> [DMESG-FAIL][206] ([i915#12964]) +2 other tests dmesg-fail
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#12247]) +2 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#12247]) +9 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#12247]) +9 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#12247] / [i915#6953])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#12247]) +8 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#9812])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#5354])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#9685])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#3828])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#3828])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: NOTRUN -> [FAIL][217] ([i915#9295])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][218] -> [SKIP][219] ([i915#9519]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#9519])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#6524])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#11520]) +3 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#11520]) +8 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#11520]) +4 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#11520]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#11520])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-snb: NOTRUN -> [SKIP][227] ([i915#11520]) +7 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#9683])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_psr2_su@page_flip-nv12.html
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#9683])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#9683])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#1072] / [i915#9732]) +6 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#1072] / [i915#9732]) +11 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg2-9: NOTRUN -> [SKIP][233] ([i915#1072] / [i915#9732])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#1072] / [i915#9732]) +25 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-cursor-render:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#9732]) +9 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_psr@psr2-cursor-render.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#9732]) +9 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#9685])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#9685])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#5289]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#12755] / [i915#5190])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#5289])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#5289]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-rkl: NOTRUN -> [DMESG-WARN][243] ([i915#12964]) +13 other tests dmesg-warn
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#3555]) +4 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#3555]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#8623])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#8623]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#8623])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [PASS][249] -> [FAIL][250] ([i915#9196]) +1 other test fail
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#11920])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-7/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [PASS][252] -> [SKIP][253] ([i915#3555] / [i915#9906])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-11/igt@kms_vrr@negative-basic.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#9906]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#9906])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#9906])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#2437] / [i915#9412])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@gen12-group-concurrent-oa-buffer-read:
- shard-tglu: [PASS][258] -> [FAIL][259] ([i915#10538])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-5/igt@perf@gen12-group-concurrent-oa-buffer-read.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#2436])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#3708])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#3708])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2-9: NOTRUN -> [SKIP][263] ([i915#3708])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-9/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][264] ([i915#12910])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][265] ([i915#13427]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_exec_schedule@wide:
- shard-tglu: [INCOMPLETE][267] ([i915#13391]) -> [PASS][268] +1 other test pass
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-2/igt@gem_exec_schedule@wide.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-4/igt@gem_exec_schedule@wide.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: [FAIL][269] ([i915#12941]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-5/igt@gem_tiled_swapping@non-threaded.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@gem_tiled_swapping@non-threaded.html
- shard-tglu: [FAIL][271] ([i915#12941]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-8/igt@gem_tiled_swapping@non-threaded.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-10/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][273] ([i915#3591]) -> [PASS][274] +1 other test pass
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@kms_atomic_transition@modeset-transition:
- shard-glk: [FAIL][275] ([i915#12238]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-glk8/igt@kms_atomic_transition@modeset-transition.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-glk9/igt@kms_atomic_transition@modeset-transition.html
* igt@kms_atomic_transition@modeset-transition@2x-outputs:
- shard-glk: [FAIL][277] ([i915#11859]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-glk9/igt@kms_atomic_transition@modeset-transition@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: [FAIL][279] ([i915#5956]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
- shard-dg1: [FAIL][281] ([i915#5956]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_color@deep-color:
- shard-dg2: [SKIP][283] ([i915#3555]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-2/igt@kms_color@deep-color.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@kms_color@deep-color.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [FAIL][285] ([i915#13566]) -> [PASS][286] +3 other tests pass
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-tglu: [FAIL][287] ([i915#13566]) -> [PASS][288] +7 other tests pass
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][289] ([i915#11989]) -> [PASS][290] +1 other test pass
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-snb5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-glk: [FAIL][291] -> [PASS][292] +1 other test pass
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-glk3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-glk8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- shard-dg2: [FAIL][293] ([i915#6880]) -> [PASS][294] +1 other test pass
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [SKIP][295] ([i915#3555] / [i915#8228]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-3/igt@kms_hdr@static-toggle.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: [SKIP][297] ([i915#12388]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-2/igt@kms_joiner@basic-force-big-joiner.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [SKIP][299] ([i915#9340]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][301] ([i915#9519]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [FAIL][303] ([IGT#160]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-2/igt@kms_sysfs_edid_timing.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@kms_sysfs_edid_timing.html
* igt@kms_vblank@wait-busy:
- shard-dg1: [DMESG-WARN][305] ([i915#4423]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-13/igt@kms_vblank@wait-busy.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@kms_vblank@wait-busy.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [FAIL][307] ([i915#10393]) -> [PASS][308] +1 other test pass
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-2/igt@kms_vrr@negative-basic.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-4/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@most-busy-check-all:
- shard-snb: [INCOMPLETE][309] ([i915#13520]) -> [PASS][310] +1 other test pass
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-snb5/igt@perf_pmu@most-busy-check-all.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb4/igt@perf_pmu@most-busy-check-all.html
* igt@sysfs_timeslice_duration@timeout@rcs0:
- shard-rkl: [DMESG-WARN][311] ([i915#12964]) -> [PASS][312] +5 other tests pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-4/igt@sysfs_timeslice_duration@timeout@rcs0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-3/igt@sysfs_timeslice_duration@timeout@rcs0.html
#### Warnings ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][313] ([i915#12392]) -> [INCOMPLETE][314] ([i915#12392] / [i915#7297])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][315] ([i915#5138]) -> [DMESG-FAIL][316] ([i915#13314])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-dg1: [SKIP][317] ([i915#4423] / [i915#6095]) -> [SKIP][318] ([i915#6095])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-12/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-18/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_content_protection@legacy:
- shard-dg2: [SKIP][319] ([i915#7118] / [i915#9424]) -> [TIMEOUT][320] ([i915#7173])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-6/igt@kms_content_protection@legacy.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][321] ([i915#9424]) -> [SKIP][322] ([i915#9433])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-17/igt@kms_content_protection@mei-interface.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_content_protection@mei-interface.html
- shard-snb: [INCOMPLETE][323] ([i915#9878]) -> [SKIP][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-snb5/igt@kms_content_protection@mei-interface.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-snb4/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: [TIMEOUT][325] ([i915#7173]) -> [SKIP][326] ([i915#7118])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-10/igt@kms_content_protection@srm.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [DMESG-FAIL][327] ([i915#12964]) -> [DMESG-WARN][328] ([i915#12964]) +1 other test dmesg-warn
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-3/igt@kms_cursor_crc@cursor-random-128x42.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2:
- shard-rkl: [FAIL][329] ([i915#13566]) -> [DMESG-WARN][330] ([i915#12964])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-rkl-3/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: [SKIP][331] ([i915#3458]) -> [SKIP][332] ([i915#10433] / [i915#3458]) +3 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][333] ([i915#10433] / [i915#3458]) -> [SKIP][334] ([i915#3458])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][335] ([i915#1187] / [i915#12713]) -> [SKIP][336] ([i915#12713])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_psr@psr-no-drrs:
- shard-dg1: [SKIP][337] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][338] ([i915#1072] / [i915#9732])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16063/shard-dg1-13/igt@kms_psr@psr-no-drrs.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v2/shard-dg1-13/igt@kms_psr@psr-no-drrs.html
[IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[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#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11968
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12170]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12170
[i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304
[i915#13314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13314
[i915#13391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13391
[i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[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#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[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#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#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[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#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[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#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[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#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#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[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#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[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#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[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#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[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#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[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#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[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#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_16063 -> Patchwork_144268v2
CI-20190529: 20190529
CI_DRM_16063: 34f113e9fef546134e402e7657fc47e92fba59dc @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8223: ccfe042787b082c06402ff9af257f8338b8edd5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_144268v2: 34f113e9fef546134e402e7657fc47e92fba59dc @ 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_144268v2/index.html
[-- Attachment #2: Type: text/html, Size: 114666 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread