* [PATCH v1 0/2] Compute as_sdp when vrr is enabled
@ 2025-02-03 16:14 Mitul Golani
2025-02-03 16:14 ` [PATCH v1 1/2] drm/i915/display: Skip state checker for AS SDP infoframe enable Mitul Golani
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Mitul Golani @ 2025-02-03 16:14 UTC (permalink / raw)
To: intel-gfx
Compute as sdp when vrr.enable is set, also Skip
infoframe.enable check to avoid full modeset during
as_sdp toggle.
Mitul Golani (2):
drm/i915/display: Skip state checker for AS SDP infoframe enable
drm/i915/dp: Compute AS SDP only when vrr.enable is set
drivers/gpu/drm/i915/display/intel_display.c | 6 ++++--
drivers/gpu/drm/i915/display/intel_dp.c | 2 +-
2 files changed, 5 insertions(+), 3 deletions(-)
--
2.48.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH v1 1/2] drm/i915/display: Skip state checker for AS SDP infoframe enable 2025-02-03 16:14 [PATCH v1 0/2] Compute as_sdp when vrr is enabled Mitul Golani @ 2025-02-03 16:14 ` Mitul Golani 2025-02-04 4:21 ` Nautiyal, Ankit K 2025-02-03 16:14 ` [PATCH v1 2/2] drm/i915/dp: Compute AS SDP only when vrr.enable is set Mitul Golani ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Mitul Golani @ 2025-02-03 16:14 UTC (permalink / raw) To: intel-gfx Avoid full modeset by skipping infoframe.enable check when toggling AS SDP while enabling VRR or while state change from PSR to VRR, preventing full modeset while pipe config changes. Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com> --- drivers/gpu/drm/i915/display/intel_display.c | 6 ++++-- 1 file changed, 4 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..8415b305f702 100644 --- a/drivers/gpu/drm/i915/display/intel_display.c +++ b/drivers/gpu/drm/i915/display/intel_display.c @@ -5744,9 +5744,11 @@ intel_pipe_config_compare(const struct intel_crtc_state *current_config, if (current_config->has_psr || pipe_config->has_psr) PIPE_CONF_CHECK_X_WITH_MASK(infoframes.enable, - ~intel_hdmi_infoframe_enable(DP_SDP_VSC)); + ~(intel_hdmi_infoframe_enable(DP_SDP_VSC) | + intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC))); else - PIPE_CONF_CHECK_X(infoframes.enable); + PIPE_CONF_CHECK_X_WITH_MASK(infoframes.enable, + ~intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC)); PIPE_CONF_CHECK_X(infoframes.gcp); PIPE_CONF_CHECK_INFOFRAME(avi); -- 2.48.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v1 1/2] drm/i915/display: Skip state checker for AS SDP infoframe enable 2025-02-03 16:14 ` [PATCH v1 1/2] drm/i915/display: Skip state checker for AS SDP infoframe enable Mitul Golani @ 2025-02-04 4:21 ` Nautiyal, Ankit K 0 siblings, 0 replies; 7+ messages in thread From: Nautiyal, Ankit K @ 2025-02-04 4:21 UTC (permalink / raw) To: Mitul Golani, intel-gfx On 2/3/2025 9:44 PM, Mitul Golani wrote: > Avoid full modeset by skipping infoframe.enable check when toggling > AS SDP while enabling VRR or while state change from PSR to VRR, > preventing full modeset while pipe config changes. I dont think this is related to PSR. > > Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com> > --- > drivers/gpu/drm/i915/display/intel_display.c | 6 ++++-- > 1 file changed, 4 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..8415b305f702 100644 > --- a/drivers/gpu/drm/i915/display/intel_display.c > +++ b/drivers/gpu/drm/i915/display/intel_display.c > @@ -5744,9 +5744,11 @@ intel_pipe_config_compare(const struct intel_crtc_state *current_config, > > if (current_config->has_psr || pipe_config->has_psr) > PIPE_CONF_CHECK_X_WITH_MASK(infoframes.enable, > - ~intel_hdmi_infoframe_enable(DP_SDP_VSC)); > + ~(intel_hdmi_infoframe_enable(DP_SDP_VSC) | > + intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC))); > else > - PIPE_CONF_CHECK_X(infoframes.enable); > + PIPE_CONF_CHECK_X_WITH_MASK(infoframes.enable, > + ~intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC)); As I understand we want to skip the check for DP_SDP_VSC when PSR is involved and DP_SDP_ADAPTIVE_SYNC when VRR is enabled so as to avoid full modeset when switch happens for these features. how about: exclude_infoframes = 0; if (current_config->has_psr || pipe_config->has_psr) exclude_infoframes |= intel_hdmi_infoframe_enable(DP_SDP_VSC); if (pipe_config->vrr.enable) exclude_infoframes |= intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC))); PIPE_CONF_CHECK_X_WITH_MASK(infoframes.enable, exclude_infoframes); Regards, Ankit > > PIPE_CONF_CHECK_X(infoframes.gcp); > PIPE_CONF_CHECK_INFOFRAME(avi); ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v1 2/2] drm/i915/dp: Compute AS SDP only when vrr.enable is set 2025-02-03 16:14 [PATCH v1 0/2] Compute as_sdp when vrr is enabled Mitul Golani 2025-02-03 16:14 ` [PATCH v1 1/2] drm/i915/display: Skip state checker for AS SDP infoframe enable Mitul Golani @ 2025-02-03 16:14 ` Mitul Golani 2025-02-03 20:55 ` ✗ Fi.CI.SPARSE: warning for Compute as_sdp when vrr is enabled Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Mitul Golani @ 2025-02-03 16:14 UTC (permalink / raw) To: intel-gfx 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 00b95da18cc5..1223133e0bb6 100644 --- a/drivers/gpu/drm/i915/display/intel_dp.c +++ b/drivers/gpu/drm/i915/display/intel_dp.c @@ -2826,7 +2826,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] 7+ messages in thread
* ✗ Fi.CI.SPARSE: warning for Compute as_sdp when vrr is enabled 2025-02-03 16:14 [PATCH v1 0/2] Compute as_sdp when vrr is enabled Mitul Golani 2025-02-03 16:14 ` [PATCH v1 1/2] drm/i915/display: Skip state checker for AS SDP infoframe enable Mitul Golani 2025-02-03 16:14 ` [PATCH v1 2/2] drm/i915/dp: Compute AS SDP only when vrr.enable is set Mitul Golani @ 2025-02-03 20:55 ` Patchwork 2025-02-03 21:09 ` ✓ i915.CI.BAT: success " Patchwork 2025-02-04 0:43 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-02-03 20:55 UTC (permalink / raw) To: Mitul Golani; +Cc: intel-gfx == Series Details == Series: Compute as_sdp when vrr is enabled 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/kbuild2/linux/maintainer-tools/dim: line 2106: echo: write error: Broken pipe ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for Compute as_sdp when vrr is enabled 2025-02-03 16:14 [PATCH v1 0/2] Compute as_sdp when vrr is enabled Mitul Golani ` (2 preceding siblings ...) 2025-02-03 20:55 ` ✗ Fi.CI.SPARSE: warning for Compute as_sdp when vrr is enabled Patchwork @ 2025-02-03 21:09 ` Patchwork 2025-02-04 0:43 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-02-03 21:09 UTC (permalink / raw) To: Mitul Golani; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5109 bytes --] == Series Details == Series: Compute as_sdp when vrr is enabled URL : https://patchwork.freedesktop.org/series/144268/ State : success == Summary == CI Bug Log - changes from CI_DRM_16056 -> Patchwork_144268v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_144268v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-apl-1: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/bat-apl-1/igt@dmabuf@all-tests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/bat-apl-1/igt@dmabuf@all-tests.html * igt@i915_pm_rpm@module-reload: - bat-adls-6: [PASS][3] -> [FAIL][4] ([i915#13401]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/bat-adls-6/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/bat-adls-6/igt@i915_pm_rpm@module-reload.html - bat-rpls-4: [PASS][5] -> [FAIL][6] ([i915#13401]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/bat-rpls-4/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - bat-jsl-3: [PASS][7] -> [INCOMPLETE][8] ([i915#12445] / [i915#13241]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/bat-jsl-3/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/bat-jsl-3/igt@i915_selftest@live.html * igt@i915_selftest@live@gem_contexts: - bat-jsl-3: [PASS][9] -> [INCOMPLETE][10] ([i915#12445]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/bat-jsl-3/igt@i915_selftest@live@gem_contexts.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/bat-jsl-3/igt@i915_selftest@live@gem_contexts.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [PASS][11] -> [DMESG-FAIL][12] ([i915#12061]) +1 other test dmesg-fail [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/bat-arls-5/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/bat-arls-5/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][13] -> [SKIP][14] ([i915#9197]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@gem_exec_fence@nb-await@vecs0: - bat-rpls-4: [DMESG-WARN][15] ([i915#13400]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/bat-rpls-4/igt@gem_exec_fence@nb-await@vecs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/bat-rpls-4/igt@gem_exec_fence@nb-await@vecs0.html * igt@gem_tiled_blits@basic: - fi-pnv-d510: [SKIP][17] -> [PASS][18] +2 other tests pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/fi-pnv-d510/igt@gem_tiled_blits@basic.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/fi-pnv-d510/igt@gem_tiled_blits@basic.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [DMESG-FAIL][19] ([i915#12061]) -> [PASS][20] +1 other test pass [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13241]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13241 [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400 [i915#13401]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13401 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * Linux: CI_DRM_16056 -> Patchwork_144268v1 CI-20190529: 20190529 CI_DRM_16056: e4653d321048b16b1373c8ddf0657590963c5897 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8220: 8220 Patchwork_144268v1: e4653d321048b16b1373c8ddf0657590963c5897 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/index.html [-- Attachment #2: Type: text/html, Size: 6150 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for Compute as_sdp when vrr is enabled 2025-02-03 16:14 [PATCH v1 0/2] Compute as_sdp when vrr is enabled Mitul Golani ` (3 preceding siblings ...) 2025-02-03 21:09 ` ✓ i915.CI.BAT: success " Patchwork @ 2025-02-04 0:43 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-02-04 0:43 UTC (permalink / raw) To: Mitul Golani; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 93309 bytes --] == Series Details == Series: Compute as_sdp when vrr is enabled URL : https://patchwork.freedesktop.org/series/144268/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16056_full -> Patchwork_144268v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_144268v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_144268v1_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_144268v1_full: ### IGT changes ### #### Possible regressions #### * igt@perf_pmu@busy-hang@vecs0: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-mtlp-2/igt@perf_pmu@busy-hang@vecs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-7/igt@perf_pmu@busy-hang@vecs0.html Known issues ------------ Here are the changes found in Patchwork_144268v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#9318]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@debugfs_test@basic-hwmon.html * igt@device_reset@unbind-reset-rebind: - shard-tglu: [PASS][6] -> [ABORT][7] ([i915#12817] / [i915#5507]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-tglu-2/igt@device_reset@unbind-reset-rebind.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-9/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +6 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@drm_fdinfo@most-busy-check-all.html * igt@drm_fdinfo@virtual-busy-hang-all: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-2/igt@drm_fdinfo@virtual-busy-hang-all.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#3936]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#13008]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][14] ([i915#7297]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][15] ([i915#12392] / [i915#7297]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#6335]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][18] ([i915#12353]) +1 other test incomplete [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-glk9/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#280]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@hibernate: - shard-dg1: NOTRUN -> [ABORT][23] ([i915#7975]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][24] ([i915#13197] / [i915#13390]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-glk7/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4812]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4036]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#6334]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#3281]) +5 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +7 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +8 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@gem_exec_reloc@basic-wc-read-active.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4812]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices: - shard-mtlp: NOTRUN -> [ABORT][37] ([i915#7975]) +1 other test abort [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-2/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4860]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4860]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-glk: NOTRUN -> [SKIP][40] ([i915#4613]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-glk9/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#12193]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4565]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@massive-random: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][46] ([i915#284]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4077]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@gem_mmap_gtt@basic-read.html * igt@gem_mmap_gtt@basic-small-bo-tiledx: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4077]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@gem_mmap_gtt@basic-small-bo-tiledx.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4083]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3282]) +6 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][52] ([i915#2658]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-9/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-buffer: - shard-glk: NOTRUN -> [SKIP][53] +55 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-glk9/igt@gem_pxp@create-regular-buffer.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#13398]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#13398]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4270]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#5190] / [i915#8428]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4079]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#3282]) +6 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4885]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4077]) +15 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4879]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3297]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3297]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3297] / [i915#4880]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-7/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3281] / [i915#3297]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3297]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@allowed-all: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#2527] / [i915#2856]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#2527]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#2527]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#2856]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#2527] / [i915#2856]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [ABORT][77] ([i915#9820]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][78] -> [ABORT][79] ([i915#12817] / [i915#9820]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#6412]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#7178]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#8399]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][83] ([i915#2681]) +1 other test warn [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#11681] / [i915#6621]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-idle: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#11681]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#5723]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock: - shard-tglu: NOTRUN -> [DMESG-WARN][87] ([i915#9311]) +1 other test dmesg-warn [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@i915_selftest@mock.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#8709]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-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][89] ([i915#8709]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [PASS][90] -> [FAIL][91] ([i915#5956]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][92] ([i915#5956]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#5286]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#5286]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4538] / [i915#5286]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#5286]) +5 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#3638]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][98] +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html - shard-rkl: NOTRUN -> [SKIP][99] ([i915#3638]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4538] / [i915#5190]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6187]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][102] +6 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#4538]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-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]) +98 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/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-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#12313]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#6095]) +49 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-9/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#10307] / [i915#6095]) +123 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-3/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#6095]) +79 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#6095]) +19 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#6095]) +19 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#12805]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#6095]) +12 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#12313]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#3742]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][116] ([i915#3742]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#11151] / [i915#7828]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#11151] / [i915#7828]) +8 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#11151] / [i915#7828]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-7/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#11151] / [i915#7828]) +7 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#11151] / [i915#7828]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#11151] / [i915#7828]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3299]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#9424]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#8814]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-offscreen-256x256@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][127] ([i915#12964]) +9 other tests dmesg-warn [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-256x256@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#3555]) +4 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-32x32.html - shard-tglu: NOTRUN -> [SKIP][129] ([i915#3555]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#13049]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#13049]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#3555]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#13049]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#13049]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#13049]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3555] / [i915#8814]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][137] +14 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#4103] / [i915#4213]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#9809]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#13046] / [i915#5354]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-rkl: [PASS][141] -> [DMESG-WARN][142] ([i915#12964]) +2 other tests dmesg-warn [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-rkl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#4103]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#4213]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#9833]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3804]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#12402]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#12402]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#8812]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#3840] / [i915#9688]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3840]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#3840]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#3840]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#3840]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#3840] / [i915#9053]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#4854]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-14/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#1839]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#9337]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#658]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-7/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3637]) +7 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-busy-flip: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#9934]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_flip@2x-busy-flip.html - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#3637]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_flip@2x-busy-flip.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#9934]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#8381]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3637]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#9934]) +10 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][167] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check: - shard-dg2: [PASS][168] -> [FAIL][169] ([i915#10826] / [i915#11989]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-dg2-3/igt@kms_flip@plain-flip-ts-check.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-5/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip@plain-flip-ts-check@a-hdmi-a3: - shard-dg2: [PASS][170] -> [FAIL][171] ([i915#10826]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-dg2-3/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-5/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html * igt@kms_flip@plain-flip-ts-check@c-hdmi-a3: - shard-dg2: [PASS][172] -> [FAIL][173] ([i915#11989]) +1 other test fail [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-dg2-3/igt@kms_flip@plain-flip-ts-check@c-hdmi-a3.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-5/igt@kms_flip@plain-flip-ts-check@c-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8810] / [i915#8813]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#8810]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#2587] / [i915#2672] / [i915#3555]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#2672] / [i915#3555] / [i915#8813]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#2672] / [i915#8813]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#2587] / [i915#2672]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-7/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-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#2672] / [i915#3555]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#2672]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#2672] / [i915#3555]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#2672] / [i915#3555]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#2587] / [i915#2672]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [PASS][185] -> [FAIL][186] ([i915#6880]) +1 other test fail [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#1825]) +36 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html - shard-tglu-1: NOTRUN -> [SKIP][188] +29 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#5439]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#3458]) +11 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#3023]) +18 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#8708]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][193] +31 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#1825]) +6 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#8708]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][196] +62 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#3458]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#5354]) +7 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#8708]) +13 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-9/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8228]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8228]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#8228]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-3/igt@kms_hdr@static-toggle-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8228]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@clock-too-high: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#6403] / [i915#8826]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#9457]) +3 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#12394]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#12339]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-7/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#1839]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-14/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#6301]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@kms_panel_fitting@legacy.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [PASS][211] -> [SKIP][212] ([i915#6953] / [i915#9423]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#12247]) +6 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#12247]) +4 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#12247] / [i915#6953]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#12247]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#12247]) +4 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#12247] / [i915#6953]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#5354]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-3/igt@kms_pm_backlight@basic-brightness.html - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#9812]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#12343]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@kms_pm_backlight@brightness-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][222] ([i915#12343]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-9/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#9812]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#9685]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#3828]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-7/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [PASS][226] -> [FAIL][227] ([i915#9295]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#8430]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][229] -> [SKIP][230] ([i915#9519]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#9519]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][232] -> [SKIP][233] ([i915#9519]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#9519]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#9519]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-vgem: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#6524]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#6524]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#11520]) +6 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#11520]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][240] ([i915#11520]) +7 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk: NOTRUN -> [SKIP][241] ([i915#11520]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-glk9/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#12316]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][243] ([i915#11520]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-snb7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#11520]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#11520]) +6 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#9683]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#9683]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_psr2_su@page_flip-nv12.html - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#9683]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-dpms: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#9688]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_psr@fbc-psr-dpms.html * igt@kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#9732]) +14 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-7/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#1072] / [i915#9732]) +18 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#1072] / [i915#9732]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#1072] / [i915#9732]) +14 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@kms_psr@pr-sprite-mmap-gtt.html * igt@kms_psr@psr-sprite-blt: - shard-snb: NOTRUN -> [SKIP][254] +144 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-snb7/igt@kms_psr@psr-sprite-blt.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#9732]) +6 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#4077] / [i915#9688]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-2/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#5190]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-rkl: NOTRUN -> [SKIP][258] ([i915#5289]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#5289]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#5289]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-tglu: NOTRUN -> [SKIP][261] ([i915#5289]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#3555]) +7 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][263] ([i915#13179]) +1 other test abort [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-3/igt@kms_selftest@drm_framebuffer.html - shard-tglu-1: NOTRUN -> [ABORT][264] ([i915#13179]) +1 other test abort [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][265] ([i915#13179]) +1 other test abort [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_setmode@basic: - shard-tglu: [PASS][266] -> [FAIL][267] ([i915#5465]) +2 other tests fail [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-tglu-7/igt@kms_setmode@basic.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-10/igt@kms_setmode@basic.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#8623]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#8623]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#9906]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#11920]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-10/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][272] ([i915#11920]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-3/igt@kms_vrr@lobf.html - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#11920]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#9906]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-8/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#9906]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#2437]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#2437] / [i915#9412]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#2437]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@mi-rpc: - shard-dg1: NOTRUN -> [SKIP][279] ([i915#2434]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#2433]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-12/igt@perf@per-context-mode-unprivileged.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#2433]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-1/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-hang: - shard-mtlp: [PASS][282] -> [ABORT][283] ([i915#13193]) +1 other test abort [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-mtlp-2/igt@perf_pmu@busy-hang.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-7/igt@perf_pmu@busy-hang.html * igt@perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#8516]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html - shard-dg1: NOTRUN -> [SKIP][285] ([i915#8516]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#3708] / [i915#4077]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#3708]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg1-17/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#3708]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@prime_vgem@fence-write-hang.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-mtlp: [ABORT][289] ([i915#13193]) -> [PASS][290] +2 other tests pass [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-mtlp-7/igt@gem_eio@reset-stress.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-4/igt@gem_eio@reset-stress.html * igt@kms_atomic_transition@modeset-transition-nonblocking: - shard-glk: [FAIL][291] ([i915#12177]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-glk7/igt@kms_atomic_transition@modeset-transition-nonblocking.html * igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs: - shard-glk: [FAIL][293] ([i915#11859]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-glk7/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html * igt@kms_color@ctm-negative: - shard-rkl: [DMESG-WARN][295] ([i915#12964]) -> [PASS][296] +5 other tests pass [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-rkl-5/igt@kms_color@ctm-negative.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-2/igt@kms_color@ctm-negative.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: [FAIL][297] ([i915#13566]) -> [PASS][298] +3 other tests pass [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-128x42.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [FAIL][299] ([i915#13566]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-256x85.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg2: [FAIL][301] ([i915#6880]) -> [PASS][302] +2 other tests pass [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][303] ([i915#9519]) -> [PASS][304] +1 other test pass [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][305] ([i915#9519]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@perf@polling@0-rcs0: - shard-glk: [FAIL][307] ([i915#10538]) -> [PASS][308] +1 other test pass [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-glk6/igt@perf@polling@0-rcs0.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-glk9/igt@perf@polling@0-rcs0.html - shard-mtlp: [FAIL][309] ([i915#10538]) -> [PASS][310] +1 other test pass [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-mtlp-2/igt@perf@polling@0-rcs0.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-6/igt@perf@polling@0-rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][311] ([i915#4349]) -> [PASS][312] +4 other tests pass [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@i915_selftest@mock: - shard-glk: [DMESG-WARN][313] ([i915#1982] / [i915#9311]) -> [DMESG-WARN][314] ([i915#9311]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-glk3/igt@i915_selftest@mock.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-glk4/igt@i915_selftest@mock.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-dg2: [SKIP][315] ([i915#3458]) -> [SKIP][316] ([i915#10433] / [i915#3458]) +4 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-dg2: [SKIP][317] ([i915#10433] / [i915#3458]) -> [SKIP][318] ([i915#3458]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][319] ([i915#1187] / [i915#12713]) -> [SKIP][320] ([i915#12713]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-mtlp-8/igt@kms_hdr@brightness-with-hdr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][321] ([i915#4070] / [i915#4816]) -> [SKIP][322] ([i915#4816]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][323] ([i915#3361]) -> [SKIP][324] ([i915#4281]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][325] ([i915#3828]) -> [SKIP][326] ([i915#9340]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][327] ([i915#9519]) -> [DMESG-WARN][328] ([i915#12964]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16056/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144268v1/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [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#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [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#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353 [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#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549 [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#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193 [i915#13197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13197 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [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#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [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#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [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#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [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#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#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#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [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#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6403 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178 [i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [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#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#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#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9457 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [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_16056 -> Patchwork_144268v1 CI-20190529: 20190529 CI_DRM_16056: e4653d321048b16b1373c8ddf0657590963c5897 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8220: 8220 Patchwork_144268v1: e4653d321048b16b1373c8ddf0657590963c5897 @ 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_144268v1/index.html [-- Attachment #2: Type: text/html, Size: 114729 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-02-04 4:22 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-03 16:14 [PATCH v1 0/2] Compute as_sdp when vrr is enabled Mitul Golani 2025-02-03 16:14 ` [PATCH v1 1/2] drm/i915/display: Skip state checker for AS SDP infoframe enable Mitul Golani 2025-02-04 4:21 ` Nautiyal, Ankit K 2025-02-03 16:14 ` [PATCH v1 2/2] drm/i915/dp: Compute AS SDP only when vrr.enable is set Mitul Golani 2025-02-03 20:55 ` ✗ Fi.CI.SPARSE: warning for Compute as_sdp when vrr is enabled Patchwork 2025-02-03 21:09 ` ✓ i915.CI.BAT: success " Patchwork 2025-02-04 0:43 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox