* [PATCH] drm/i915/dp: demote source OUI read/write failure logging to debug
@ 2024-11-06 16:23 Jani Nikula
2024-11-06 17:24 ` Matt Roper
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Jani Nikula @ 2024-11-06 16:23 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: jani.nikula, Clint Taylor, Imre Deak
Commit 1f12d63a14d7 ("drm/i915/dp: Write the source OUI for non-eDP
sinks as well") started writing source OUI for non-eDP sinks as well,
increasing the possibilities of hitting read/write failures either due
to the sink behaviour or hotplug or whatever.
Even before that, commit 3fb0501f0c07 ("drm/i915/display/dp: Reduce log
level for SOURCE OUI write failures") already reduced write failures to
info level when source OUI was just for eDP.
Further reduce the log level to just debug. Switch to struct intel_dp
while at it.
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3372
Cc: Clint Taylor <clinton.a.taylor@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 5b918363df16..95c71e425fbe 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -3432,7 +3432,7 @@ void intel_dp_sink_disable_decompression(struct intel_atomic_state *state,
static void
intel_dp_init_source_oui(struct intel_dp *intel_dp)
{
- struct drm_i915_private *i915 = dp_to_i915(intel_dp);
+ struct intel_display *display = to_intel_display(intel_dp);
u8 oui[] = { 0x00, 0xaa, 0x01 };
u8 buf[3] = {};
@@ -3446,7 +3446,7 @@ intel_dp_init_source_oui(struct intel_dp *intel_dp)
* already set to what we want, so as to avoid clearing any state by accident
*/
if (drm_dp_dpcd_read(&intel_dp->aux, DP_SOURCE_OUI, buf, sizeof(buf)) < 0)
- drm_err(&i915->drm, "Failed to read source OUI\n");
+ drm_dbg_kms(display->drm, "Failed to read source OUI\n");
if (memcmp(oui, buf, sizeof(oui)) == 0) {
/* Assume the OUI was written now. */
@@ -3455,7 +3455,7 @@ intel_dp_init_source_oui(struct intel_dp *intel_dp)
}
if (drm_dp_dpcd_write(&intel_dp->aux, DP_SOURCE_OUI, oui, sizeof(oui)) < 0) {
- drm_info(&i915->drm, "Failed to write source OUI\n");
+ drm_dbg_kms(display->drm, "Failed to write source OUI\n");
WRITE_ONCE(intel_dp->oui_valid, false);
}
--
2.39.5
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] drm/i915/dp: demote source OUI read/write failure logging to debug 2024-11-06 16:23 [PATCH] drm/i915/dp: demote source OUI read/write failure logging to debug Jani Nikula @ 2024-11-06 17:24 ` Matt Roper 2024-11-11 8:58 ` Jani Nikula 2024-11-06 18:04 ` ✗ Fi.CI.BAT: failure for " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 6+ messages in thread From: Matt Roper @ 2024-11-06 17:24 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx, intel-xe, Clint Taylor, Imre Deak On Wed, Nov 06, 2024 at 06:23:25PM +0200, Jani Nikula wrote: > Commit 1f12d63a14d7 ("drm/i915/dp: Write the source OUI for non-eDP > sinks as well") started writing source OUI for non-eDP sinks as well, > increasing the possibilities of hitting read/write failures either due > to the sink behaviour or hotplug or whatever. > > Even before that, commit 3fb0501f0c07 ("drm/i915/display/dp: Reduce log > level for SOURCE OUI write failures") already reduced write failures to > info level when source OUI was just for eDP. > > Further reduce the log level to just debug. Switch to struct intel_dp > while at it. Did you mean intel_display here rather than intel_dp? Aside from that, Reviewed-by: Matt Roper <matthew.d.roper@intel.com> Matt > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3372 > Cc: Clint Taylor <clinton.a.taylor@intel.com> > Cc: Imre Deak <imre.deak@intel.com> > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/intel_dp.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c > index 5b918363df16..95c71e425fbe 100644 > --- a/drivers/gpu/drm/i915/display/intel_dp.c > +++ b/drivers/gpu/drm/i915/display/intel_dp.c > @@ -3432,7 +3432,7 @@ void intel_dp_sink_disable_decompression(struct intel_atomic_state *state, > static void > intel_dp_init_source_oui(struct intel_dp *intel_dp) > { > - struct drm_i915_private *i915 = dp_to_i915(intel_dp); > + struct intel_display *display = to_intel_display(intel_dp); > u8 oui[] = { 0x00, 0xaa, 0x01 }; > u8 buf[3] = {}; > > @@ -3446,7 +3446,7 @@ intel_dp_init_source_oui(struct intel_dp *intel_dp) > * already set to what we want, so as to avoid clearing any state by accident > */ > if (drm_dp_dpcd_read(&intel_dp->aux, DP_SOURCE_OUI, buf, sizeof(buf)) < 0) > - drm_err(&i915->drm, "Failed to read source OUI\n"); > + drm_dbg_kms(display->drm, "Failed to read source OUI\n"); > > if (memcmp(oui, buf, sizeof(oui)) == 0) { > /* Assume the OUI was written now. */ > @@ -3455,7 +3455,7 @@ intel_dp_init_source_oui(struct intel_dp *intel_dp) > } > > if (drm_dp_dpcd_write(&intel_dp->aux, DP_SOURCE_OUI, oui, sizeof(oui)) < 0) { > - drm_info(&i915->drm, "Failed to write source OUI\n"); > + drm_dbg_kms(display->drm, "Failed to write source OUI\n"); > WRITE_ONCE(intel_dp->oui_valid, false); > } > > -- > 2.39.5 > -- Matt Roper Graphics Software Engineer Linux GPU Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] drm/i915/dp: demote source OUI read/write failure logging to debug 2024-11-06 17:24 ` Matt Roper @ 2024-11-11 8:58 ` Jani Nikula 0 siblings, 0 replies; 6+ messages in thread From: Jani Nikula @ 2024-11-11 8:58 UTC (permalink / raw) To: Matt Roper; +Cc: intel-gfx, intel-xe, Clint Taylor, Imre Deak On Wed, 06 Nov 2024, Matt Roper <matthew.d.roper@intel.com> wrote: > On Wed, Nov 06, 2024 at 06:23:25PM +0200, Jani Nikula wrote: >> Commit 1f12d63a14d7 ("drm/i915/dp: Write the source OUI for non-eDP >> sinks as well") started writing source OUI for non-eDP sinks as well, >> increasing the possibilities of hitting read/write failures either due >> to the sink behaviour or hotplug or whatever. >> >> Even before that, commit 3fb0501f0c07 ("drm/i915/display/dp: Reduce log >> level for SOURCE OUI write failures") already reduced write failures to >> info level when source OUI was just for eDP. >> >> Further reduce the log level to just debug. Switch to struct intel_dp >> while at it. > > Did you mean intel_display here rather than intel_dp? Yes, fixed while pushing! > > Aside from that, > > Reviewed-by: Matt Roper <matthew.d.roper@intel.com> Thanks! BR, Jani. > > > Matt > >> >> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3372 >> Cc: Clint Taylor <clinton.a.taylor@intel.com> >> Cc: Imre Deak <imre.deak@intel.com> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> >> --- >> drivers/gpu/drm/i915/display/intel_dp.c | 6 +++--- >> 1 file changed, 3 insertions(+), 3 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c >> index 5b918363df16..95c71e425fbe 100644 >> --- a/drivers/gpu/drm/i915/display/intel_dp.c >> +++ b/drivers/gpu/drm/i915/display/intel_dp.c >> @@ -3432,7 +3432,7 @@ void intel_dp_sink_disable_decompression(struct intel_atomic_state *state, >> static void >> intel_dp_init_source_oui(struct intel_dp *intel_dp) >> { >> - struct drm_i915_private *i915 = dp_to_i915(intel_dp); >> + struct intel_display *display = to_intel_display(intel_dp); >> u8 oui[] = { 0x00, 0xaa, 0x01 }; >> u8 buf[3] = {}; >> >> @@ -3446,7 +3446,7 @@ intel_dp_init_source_oui(struct intel_dp *intel_dp) >> * already set to what we want, so as to avoid clearing any state by accident >> */ >> if (drm_dp_dpcd_read(&intel_dp->aux, DP_SOURCE_OUI, buf, sizeof(buf)) < 0) >> - drm_err(&i915->drm, "Failed to read source OUI\n"); >> + drm_dbg_kms(display->drm, "Failed to read source OUI\n"); >> >> if (memcmp(oui, buf, sizeof(oui)) == 0) { >> /* Assume the OUI was written now. */ >> @@ -3455,7 +3455,7 @@ intel_dp_init_source_oui(struct intel_dp *intel_dp) >> } >> >> if (drm_dp_dpcd_write(&intel_dp->aux, DP_SOURCE_OUI, oui, sizeof(oui)) < 0) { >> - drm_info(&i915->drm, "Failed to write source OUI\n"); >> + drm_dbg_kms(display->drm, "Failed to write source OUI\n"); >> WRITE_ONCE(intel_dp->oui_valid, false); >> } >> >> -- >> 2.39.5 >> -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.BAT: failure for drm/i915/dp: demote source OUI read/write failure logging to debug 2024-11-06 16:23 [PATCH] drm/i915/dp: demote source OUI read/write failure logging to debug Jani Nikula 2024-11-06 17:24 ` Matt Roper @ 2024-11-06 18:04 ` Patchwork 2024-11-08 13:17 ` ✓ Fi.CI.BAT: success for drm/i915/dp: demote source OUI read/write failure logging to debug (rev2) Patchwork 2024-11-08 13:59 ` ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-11-06 18:04 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4078 bytes --] == Series Details == Series: drm/i915/dp: demote source OUI read/write failure logging to debug URL : https://patchwork.freedesktop.org/series/141016/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15647 -> Patchwork_141016v1 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_141016v1 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_141016v1, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v1/index.html Participating hosts (44 -> 44) ------------------------------ Additional (1): fi-skl-6600u Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_141016v1: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_fence@basic-await: - bat-twl-2: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15647/bat-twl-2/igt@gem_exec_fence@basic-await.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v1/bat-twl-2/igt@gem_exec_fence@basic-await.html * igt@i915_selftest@live: - bat-arlh-3: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15647/bat-arlh-3/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v1/bat-arlh-3/igt@i915_selftest@live.html Known issues ------------ Here are the changes found in Patchwork_141016v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-skl-6600u: NOTRUN -> [SKIP][5] ([i915#2190]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v1/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@random-engines: - fi-skl-6600u: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v1/fi-skl-6600u/igt@gem_lmem_swapping@random-engines.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][7] -> [ABORT][8] ([i915#12061]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15647/bat-arlh-3/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html * igt@kms_dsc@dsc-basic: - fi-skl-6600u: NOTRUN -> [SKIP][9] +9 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v1/fi-skl-6600u/igt@kms_dsc@dsc-basic.html #### Possible fixes #### * igt@kms_chamelium_edid@hdmi-edid-read: - bat-dg2-13: [DMESG-WARN][10] ([i915#12253]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15647/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v1/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 Build changes ------------- * Linux: CI_DRM_15647 -> Patchwork_141016v1 CI-20190529: 20190529 CI_DRM_15647: 438ef86a725b59a171dba81fc258bb23a0ff536c @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8099: 27be46dee80b6b0de80f9fa3cd9bb5f55edccaf8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_141016v1: 438ef86a725b59a171dba81fc258bb23a0ff536c @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v1/index.html [-- Attachment #2: Type: text/html, Size: 4868 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915/dp: demote source OUI read/write failure logging to debug (rev2) 2024-11-06 16:23 [PATCH] drm/i915/dp: demote source OUI read/write failure logging to debug Jani Nikula 2024-11-06 17:24 ` Matt Roper 2024-11-06 18:04 ` ✗ Fi.CI.BAT: failure for " Patchwork @ 2024-11-08 13:17 ` Patchwork 2024-11-08 13:59 ` ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-11-08 13:17 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5171 bytes --] == Series Details == Series: drm/i915/dp: demote source OUI read/write failure logging to debug (rev2) URL : https://patchwork.freedesktop.org/series/141016/ State : success == Summary == CI Bug Log - changes from CI_DRM_15657 -> Patchwork_141016v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/index.html Participating hosts (43 -> 44) ------------------------------ Additional (2): fi-skl-6600u fi-kbl-8809g Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_141016v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-8809g: NOTRUN -> [SKIP][1] ([i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html - fi-skl-6600u: NOTRUN -> [SKIP][2] ([i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-kbl-8809g: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/fi-kbl-8809g/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@random-engines: - fi-skl-6600u: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/fi-skl-6600u/igt@gem_lmem_swapping@random-engines.html * igt@kms_dsc@dsc-basic: - fi-kbl-8809g: NOTRUN -> [SKIP][5] +30 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/fi-kbl-8809g/igt@kms_dsc@dsc-basic.html - fi-skl-6600u: NOTRUN -> [SKIP][6] +9 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/fi-skl-6600u/igt@kms_dsc@dsc-basic.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][7] -> [SKIP][8] ([i915#9197]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@i915_selftest@live: - bat-arlh-3: [ABORT][9] ([i915#10341] / [i915#12061]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/bat-arlh-3/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/bat-arlh-3/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [ABORT][11] ([i915#12061]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/bat-arlh-3/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/bat-arlh-3/igt@i915_selftest@live@workarounds.html * igt@kms_chamelium_edid@hdmi-edid-read: - bat-dg2-13: [DMESG-WARN][13] ([i915#12253]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html #### Warnings #### * igt@i915_selftest@live: - bat-arls-5: [DMESG-WARN][15] ([i915#10341]) -> [ABORT][16] ([i915#10341]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/bat-arls-5/igt@i915_selftest@live.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/bat-arls-5/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-WARN][17] ([i915#10341]) -> [ABORT][18] ([i915#12061]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/bat-arls-5/igt@i915_selftest@live@workarounds.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/bat-arls-5/igt@i915_selftest@live@workarounds.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * Linux: CI_DRM_15657 -> Patchwork_141016v2 CI-20190529: 20190529 CI_DRM_15657: bd71b756ae81e1c28782ecd94c3e53d4981c6cbd @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8100: 84e42580f918da926481fd2fb37be01451d6ee9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_141016v2: bd71b756ae81e1c28782ecd94c3e53d4981c6cbd @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/index.html [-- Attachment #2: Type: text/html, Size: 6562 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/dp: demote source OUI read/write failure logging to debug (rev2) 2024-11-06 16:23 [PATCH] drm/i915/dp: demote source OUI read/write failure logging to debug Jani Nikula ` (2 preceding siblings ...) 2024-11-08 13:17 ` ✓ Fi.CI.BAT: success for drm/i915/dp: demote source OUI read/write failure logging to debug (rev2) Patchwork @ 2024-11-08 13:59 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-11-08 13:59 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 85536 bytes --] == Series Details == Series: drm/i915/dp: demote source OUI read/write failure logging to debug (rev2) URL : https://patchwork.freedesktop.org/series/141016/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15657_full -> Patchwork_141016v2_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_141016v2_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_141016v2_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 (10 -> 9) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_141016v2_full: ### IGT changes ### #### Possible regressions #### * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][1] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-270.html * igt@perf@blocking@0-rcs0: - shard-rkl: [PASS][2] -> [FAIL][3] +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-rkl-3/igt@perf@blocking@0-rcs0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@perf@blocking@0-rcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_rotation_crc@bad-pixel-format: - {shard-dg2-9}: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-9/igt@kms_rotation_crc@bad-pixel-format.html Known issues ------------ Here are the changes found in Patchwork_141016v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@drm_fdinfo@all-busy-idle-check-all.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#7697]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#3936]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#8562]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_engines@invalid-engines: - shard-rkl: [PASS][13] -> [FAIL][14] ([i915#12031]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-1/igt@gem_ctx_engines@invalid-engines.html - shard-mtlp: [PASS][15] -> [FAIL][16] ([i915#12031]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-mtlp-6/igt@gem_ctx_engines@invalid-engines.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-5/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@gem_ctx_sseu@engines.html - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-10ms: - shard-dg1: [PASS][21] -> [DMESG-WARN][22] ([i915#4423]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg1-14/igt@gem_eio@in-flight-10ms.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-18/igt@gem_eio@in-flight-10ms.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4036]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [FAIL][24] ([i915#6117]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu-1: NOTRUN -> [FAIL][25] ([i915#2842]) +1 other test fail [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][26] -> [FAIL][27] ([i915#2842]) +2 other tests fail [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-1/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-wc: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3281]) +10 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-wc-cpu-active: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3281]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-16/igt@gem_exec_reloc@basic-wc-cpu-active.html * igt@gem_exec_reloc@basic-write-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_exec_schedule@pi-ringfull@ccs0: - shard-dg2: NOTRUN -> [FAIL][34] ([i915#12296]) +15 other tests fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@gem_exec_schedule@pi-ringfull@ccs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][36] -> [INCOMPLETE][37] ([i915#11441]) +1 other test incomplete [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4860]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@gem_fence_thrash@bo-copy.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][39] ([i915#2190]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#4613] / [i915#7582]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@massive: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@verify: - shard-glk: NOTRUN -> [SKIP][42] ([i915#4613]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk3/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][44] ([i915#284]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@gem_media_vme.html * igt@gem_mmap@bad-size: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4083]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic-small-bo-tiledx: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4077]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-19/igt@gem_mmap_gtt@basic-small-bo-tiledx.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-5/igt@gem_mmap_gtt@basic-small-bo-tiledx.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4077]) +7 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4083]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-19/igt@gem_mmap_wc@write-prefaulted.html - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4083]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-5/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3282]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3282]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pxp@create-regular-context-2: - shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#4270]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#4270]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4270]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#5190] / [i915#8428]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#3282]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4885]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#3297]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3297] / [i915#4880]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3297] / [i915#4880]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu-1: NOTRUN -> [SKIP][62] ([i915#3297]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#3297]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-1/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][64] -> [ABORT][65] ([i915#5566]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-glk6/igt@gen9_exec_parse@allowed-all.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk1/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#2527] / [i915#2856]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#2856]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@gen9_exec_parse@shadow-peek.html - shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [PASS][69] -> [ABORT][70] ([i915#9820]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#8399]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][72] -> [FAIL][73] ([i915#12548] / [i915#3591]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-tglu-1: NOTRUN -> [WARN][74] ([i915#2681]) +4 other tests warn [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rpm@system-suspend-devices: - shard-snb: NOTRUN -> [SKIP][75] +29 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-snb5/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8437]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-8/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][77] -> [SKIP][78] ([i915#7984]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-mtlp-2/igt@i915_power@sanity.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-6/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#6245]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@i915_query@hwconfig_table.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [PASS][80] -> [ABORT][81] ([i915#12061]) +1 other test abort [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-mtlp-3/igt@i915_selftest@live@workarounds.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-3/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4212]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#8709]) +7 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-16/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#9531]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#1769] / [i915#3555]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#1769] / [i915#3555]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#1769] / [i915#3555]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][88] -> [FAIL][89] ([i915#11808]) +3 other tests fail [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.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_15657/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-10/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][92] ([i915#5956]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-10/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-dp-4.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#5286]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#5286]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][95] +8 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#5190]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5190]) +9 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4538]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#12313]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][101] +83 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#10307] / [i915#6095]) +167 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#6095]) +49 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#6095]) +75 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#6095]) +105 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-15/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#6095]) +29 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#12313]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][108] ([i915#12313]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#11616] / [i915#7213]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4087]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#7828]) +4 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#7828]) +8 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#7828]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#7828]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#7118] / [i915#9424]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#9424]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@kms_content_protection@content-type-change.html - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#6944] / [i915#9424]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#6944] / [i915#9424]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][119] ([i915#11453] / [i915#3359]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#11453] / [i915#3359]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#3555]) +5 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-rkl: NOTRUN -> [SKIP][122] ([i915#3555]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#4103]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4103] / [i915#4213]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#4103]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#9723]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#9833]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#8588]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#3804]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#12402]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#3840]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#3555] / [i915#3840]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#3840] / [i915#9053]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3469]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-10/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#3469]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#1839]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#9337]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#658]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-10/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#3637]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#3637] / [i915#3966]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#8381]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][142] -> [FAIL][143] ([i915#2122]) +4 other tests fail [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-glk6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-rkl: NOTRUN -> [SKIP][144] +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#9934]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-16/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#3637]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1: - shard-snb: [PASS][147] -> [FAIL][148] ([i915#2122]) +6 other tests fail [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-dg1: [PASS][149] -> [FAIL][150] ([i915#11989] / [i915#12517] / [i915#2122]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg1-17/igt@kms_flip@flip-vs-blocking-wf-vblank.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-17/igt@kms_flip@flip-vs-blocking-wf-vblank.html - shard-mtlp: [PASS][151] -> [FAIL][152] ([i915#11989] / [i915#2122]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-8/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a2: - shard-dg2: NOTRUN -> [FAIL][153] ([i915#2122]) +3 other tests fail [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a2.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a4: - shard-dg1: [PASS][154] -> [FAIL][155] ([i915#2122]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg1-17/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a4.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-17/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a4.html * igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1: - shard-mtlp: [PASS][156] -> [FAIL][157] ([i915#11989]) +2 other tests fail [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-8/igt@kms_flip@flip-vs-blocking-wf-vblank@d-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-dg1: NOTRUN -> [INCOMPLETE][158] ([i915#4839] / [i915#6113]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-16/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][159] ([i915#4839]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk6/igt@kms_flip@flip-vs-suspend@b-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a4: - shard-dg1: NOTRUN -> [INCOMPLETE][160] ([i915#6113]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-16/igt@kms_flip@flip-vs-suspend@c-hdmi-a4.html * igt@kms_flip@plain-flip-fb-recreate@a-edp1: - shard-mtlp: [PASS][161] -> [FAIL][162] ([i915#2122]) +1 other test fail [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-mtlp-1/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-4/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html * igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1: - shard-tglu: [PASS][163] -> [FAIL][164] ([i915#2122]) +10 other tests fail [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1: - shard-rkl: NOTRUN -> [FAIL][165] ([i915#2122]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-4/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#2587] / [i915#2672]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#2672] / [i915#3555] / [i915#5190]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#2672]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#2587] / [i915#2672] / [i915#3555]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#2587] / [i915#2672]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#2672] / [i915#3555]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#2672] / [i915#3555]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-snb: [PASS][173] -> [SKIP][174] [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#5354]) +40 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html - shard-rkl: NOTRUN -> [SKIP][176] ([i915#1825]) +7 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][177] +39 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#8708]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#10055]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#3458]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3458]) +13 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3023]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][183] +58 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][184] +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#1825]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#8708]) +19 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#10433] / [i915#3458]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8228]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8228]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8228]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#12388]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@kms_joiner@basic-force-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#12388]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#12394]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#10656]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#6301]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][196] ([i915#8292]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#12247]) +4 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#12247] / [i915#9423]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#12247]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#9812]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#9685]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-8/igt@kms_pm_dc@dc6-psr.html - shard-rkl: NOTRUN -> [SKIP][202] ([i915#9685]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][203] -> [SKIP][204] ([i915#9340]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][205] -> [SKIP][206] ([i915#9519]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg2: [PASS][207] -> [FAIL][208] ([i915#8717]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-10/igt@kms_pm_rpm@i2c.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-2/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][209] -> [SKIP][210] ([i915#9519]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#6524]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#11520]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html - shard-snb: NOTRUN -> [SKIP][213] ([i915#11520]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-snb5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][214] ([i915#11520]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#11520]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#11520]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-19/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#11520]) +5 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#11520]) +5 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9683]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#4348]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#1072] / [i915#9732]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-16/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#1072] / [i915#9732]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#9732]) +15 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#1072] / [i915#9732]) +13 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@kms_psr@psr-suspend.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#9732]) +10 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#9685]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#3555]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#11920]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#9906]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#9906]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#2437] / [i915#9412]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#2437] / [i915#9412]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#2437]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-1/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][234] ([i915#2437]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#7387]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-5/igt@perf@global-sseu-config.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#3708] / [i915#4077]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#3708]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-8/igt@prime_vgem@fence-write-hang.html - shard-rkl: NOTRUN -> [SKIP][238] ([i915#3708]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@prime_vgem@fence-write-hang.html #### Possible fixes #### * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][239] ([i915#2842]) -> [PASS][240] +1 other test pass [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][241] ([i915#2876]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][243] ([i915#7975] / [i915#8213]) -> [PASS][244] +1 other test pass [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][245] ([i915#5566]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-glk5/igt@gen9_exec_parse@allowed-single.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk2/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [ABORT][247] ([i915#9820]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html - shard-rkl: [ABORT][249] ([i915#9820]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html - shard-snb: [ABORT][251] ([i915#9820]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][253] ([i915#3591]) -> [PASS][254] +1 other test pass [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [INCOMPLETE][255] ([i915#4817]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][257] ([i915#2346]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-mtlp: [FAIL][259] ([i915#4767]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-mtlp-7/igt@kms_fbcon_fbt@fbc-suspend.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-snb: [FAIL][261] ([i915#2122]) -> [PASS][262] +3 other tests pass [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1: - shard-glk: [FAIL][263] ([i915#2122]) -> [PASS][264] +1 other test pass [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-glk7/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a2: - shard-glk: [INCOMPLETE][265] ([i915#4839]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@b-edp1: - shard-mtlp: [INCOMPLETE][267] ([i915#6113]) -> [PASS][268] +1 other test pass [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-mtlp-4/igt@kms_flip@flip-vs-suspend@b-edp1.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-8/igt@kms_flip@flip-vs-suspend@b-edp1.html * igt@kms_flip@modeset-vs-vblank-race: - shard-tglu: [FAIL][269] ([i915#12431]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-tglu-6/igt@kms_flip@modeset-vs-vblank-race.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-4/igt@kms_flip@modeset-vs-vblank-race.html * igt@kms_flip@modeset-vs-vblank-race@c-hdmi-a1: - shard-tglu: [FAIL][271] -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-tglu-6/igt@kms_flip@modeset-vs-vblank-race@c-hdmi-a1.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-4/igt@kms_flip@modeset-vs-vblank-race@c-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate: - shard-dg2: [FAIL][273] ([i915#2122]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-7/igt@kms_flip@plain-flip-fb-recreate.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-ts-check: - shard-dg1: [FAIL][275] ([i915#12457] / [i915#12517] / [i915#12702] / [i915#2122]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg1-14/igt@kms_flip@plain-flip-ts-check.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-14/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-mtlp: [FAIL][277] ([i915#11989] / [i915#2122]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-mtlp-6/igt@kms_flip@plain-flip-ts-check-interruptible.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: - shard-mtlp: [FAIL][279] ([i915#2122]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-mtlp-6/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html * igt@kms_flip@plain-flip-ts-check@a-hdmi-a4: - shard-dg1: [FAIL][281] ([i915#2122]) -> [PASS][282] +1 other test pass [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg1-14/igt@kms_flip@plain-flip-ts-check@a-hdmi-a4.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-14/igt@kms_flip@plain-flip-ts-check@a-hdmi-a4.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu: - shard-snb: [SKIP][283] -> [PASS][284] +2 other tests pass [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [SKIP][285] ([i915#3555] / [i915#8228]) -> [PASS][286] +1 other test pass [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@pixel-format: - shard-glk: [INCOMPLETE][287] ([i915#10056] / [i915#118]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-glk8/igt@kms_plane@pixel-format.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk5/igt@kms_plane@pixel-format.html * igt@kms_plane@pixel-format@pipe-b-plane-0: - shard-glk: [DMESG-WARN][289] ([i915#118]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-glk8/igt@kms_plane@pixel-format@pipe-b-plane-0.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-glk5/igt@kms_plane@pixel-format@pipe-b-plane-0.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][291] ([i915#9519]) -> [PASS][292] +2 other tests pass [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-rkl: [SKIP][293] ([i915#9519]) -> [PASS][294] +2 other tests pass [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@perf@blocking@0-rcs0: - shard-tglu: [FAIL][295] ([i915#10538]) -> [PASS][296] +1 other test pass [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-tglu-2/igt@perf@blocking@0-rcs0.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-tglu-3/igt@perf@blocking@0-rcs0.html #### Warnings #### * igt@gem_exec_fair@basic-pace: - shard-rkl: [FAIL][297] ([i915#12467] / [i915#2842]) -> [FAIL][298] ([i915#2842]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-rkl-1/igt@gem_exec_fair@basic-pace.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-3/igt@gem_exec_fair@basic-pace.html * igt@kms_content_protection@legacy: - shard-dg2: [TIMEOUT][299] ([i915#7173]) -> [SKIP][300] ([i915#7118] / [i915#9424]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-10/igt@kms_content_protection@legacy.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-8/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][301] ([i915#9424]) -> [SKIP][302] ([i915#9433]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg1-15/igt@kms_content_protection@mei-interface.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-12/igt@kms_content_protection@mei-interface.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render: - shard-dg1: [SKIP][303] ([i915#3458]) -> [SKIP][304] ([i915#3458] / [i915#4423]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][305] ([i915#10433] / [i915#3458]) -> [SKIP][306] ([i915#3458]) +3 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: - shard-dg2: [SKIP][307] ([i915#3458]) -> [SKIP][308] ([i915#10433] / [i915#3458]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][309] ([i915#1187] / [i915#12713]) -> [SKIP][310] ([i915#12713]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-mtlp-4/igt@kms_hdr@brightness-with-hdr.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [SKIP][311] ([i915#6953] / [i915#9423]) -> [FAIL][312] ([i915#8292]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [FAIL][313] ([i915#9295]) -> [SKIP][314] ([i915#3361]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][315] ([i915#9340]) -> [SKIP][316] ([i915#3828]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: [SKIP][317] ([i915#4423] / [i915#9519]) -> [SKIP][318] ([i915#9519]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][319] ([i915#9100]) -> [FAIL][320] ([i915#7484]) +1 other test fail [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15657/shard-dg2-4/igt@perf@non-zero-reason@0-rcs0.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141016v2/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [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#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [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#12031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12031 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402 [i915#12431]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12431 [i915#12457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12457 [i915#12467]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12467 [i915#12517]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12517 [i915#12548]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12548 [i915#12702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12702 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [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#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2876 [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#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [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#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [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#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [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#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6117]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6117 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [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#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292 [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#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8717 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [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#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [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#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_15657 -> Patchwork_141016v2 CI-20190529: 20190529 CI_DRM_15657: bd71b756ae81e1c28782ecd94c3e53d4981c6cbd @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8100: 84e42580f918da926481fd2fb37be01451d6ee9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_141016v2: bd71b756ae81e1c28782ecd94c3e53d4981c6cbd @ 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_141016v2/index.html [-- Attachment #2: Type: text/html, Size: 104046 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-11-11 8:58 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-06 16:23 [PATCH] drm/i915/dp: demote source OUI read/write failure logging to debug Jani Nikula 2024-11-06 17:24 ` Matt Roper 2024-11-11 8:58 ` Jani Nikula 2024-11-06 18:04 ` ✗ Fi.CI.BAT: failure for " Patchwork 2024-11-08 13:17 ` ✓ Fi.CI.BAT: success for drm/i915/dp: demote source OUI read/write failure logging to debug (rev2) Patchwork 2024-11-08 13:59 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox