* [PATCH] drm/i915/gvt: Swap read and write checks
@ 2026-02-04 16:19 Jonathan Cavitt
2026-02-04 16:50 ` Jani Nikula
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Jonathan Cavitt @ 2026-02-04 16:19 UTC (permalink / raw)
To: intel-gfx; +Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, jani.nikula
The function intel_gvt_i2c_handle_aux_ch_write currently does not
support the DP_AUX_I2C_WRITE operation. Notably, we check if
op & 0x1 == DP_AUX_I2C_WRITE (one), and if it does not, assert that
op & 0x1 == DP_AUX_I2C_READ (zero). This is unnecessary because if
op & 0x1 != 1, then op & 0x1 == 0. But beyond that, it probably makes
more sense to check for the condition that is implemented, rather than
check for the condition that is not.
Swap the conditions. We can also get rid of the unnecessary drm_WARN_ON
while we're here.
Suggested-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/i915/gvt/edid.c | 18 ++++++++----------
1 file changed, 8 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/i915/gvt/edid.c b/drivers/gpu/drm/i915/gvt/edid.c
index 021afff1cd5d..ca5b54466a65 100644
--- a/drivers/gpu/drm/i915/gvt/edid.c
+++ b/drivers/gpu/drm/i915/gvt/edid.c
@@ -535,16 +535,7 @@ void intel_gvt_i2c_handle_aux_ch_write(struct intel_vgpu *vgpu,
i2c_edid->edid_available = true;
}
}
- } else if ((op & 0x1) == DP_AUX_I2C_WRITE) {
- /* TODO
- * We only support EDID reading from I2C_over_AUX. And
- * we do not expect the index mode to be used. Right now
- * the WRITE operation is ignored. It is good enough to
- * support the gfx driver to do EDID access.
- */
- } else {
- if (drm_WARN_ON(&i915->drm, (op & 0x1) != DP_AUX_I2C_READ))
- return;
+ } else if ((op & 0x1) == DP_AUX_I2C_READ) {
if (drm_WARN_ON(&i915->drm, msg_length != 4))
return;
if (i2c_edid->edid_available && i2c_edid->target_selected) {
@@ -553,6 +544,13 @@ void intel_gvt_i2c_handle_aux_ch_write(struct intel_vgpu *vgpu,
aux_data_for_write = (val << 16);
} else
aux_data_for_write = (0xff << 16);
+ } else {
+ /* TODO
+ * We only support EDID reading from I2C_over_AUX. And
+ * we do not expect the index mode to be used. Right now
+ * the WRITE operation is ignored. It is good enough to
+ * support the gfx driver to do EDID access.
+ */
}
/* write the return value in AUX_CH_DATA reg which includes:
* ACK of I2C_WRITE
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] drm/i915/gvt: Swap read and write checks 2026-02-04 16:19 [PATCH] drm/i915/gvt: Swap read and write checks Jonathan Cavitt @ 2026-02-04 16:50 ` Jani Nikula 2026-02-04 17:11 ` ✓ i915.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 6+ messages in thread From: Jani Nikula @ 2026-02-04 16:50 UTC (permalink / raw) To: Jonathan Cavitt, intel-gfx; +Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt On Wed, 04 Feb 2026, Jonathan Cavitt <jonathan.cavitt@intel.com> wrote: > The function intel_gvt_i2c_handle_aux_ch_write currently does not > support the DP_AUX_I2C_WRITE operation. Notably, we check if > op & 0x1 == DP_AUX_I2C_WRITE (one), and if it does not, assert that > op & 0x1 == DP_AUX_I2C_READ (zero). This is unnecessary because if > op & 0x1 != 1, then op & 0x1 == 0. But beyond that, it probably makes > more sense to check for the condition that is implemented, rather than > check for the condition that is not. > > Swap the conditions. We can also get rid of the unnecessary drm_WARN_ON > while we're here. > > Suggested-by: Jani Nikula <jani.nikula@intel.com> > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> Reviewed-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/gvt/edid.c | 18 ++++++++---------- > 1 file changed, 8 insertions(+), 10 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gvt/edid.c b/drivers/gpu/drm/i915/gvt/edid.c > index 021afff1cd5d..ca5b54466a65 100644 > --- a/drivers/gpu/drm/i915/gvt/edid.c > +++ b/drivers/gpu/drm/i915/gvt/edid.c > @@ -535,16 +535,7 @@ void intel_gvt_i2c_handle_aux_ch_write(struct intel_vgpu *vgpu, > i2c_edid->edid_available = true; > } > } > - } else if ((op & 0x1) == DP_AUX_I2C_WRITE) { > - /* TODO > - * We only support EDID reading from I2C_over_AUX. And > - * we do not expect the index mode to be used. Right now > - * the WRITE operation is ignored. It is good enough to > - * support the gfx driver to do EDID access. > - */ > - } else { > - if (drm_WARN_ON(&i915->drm, (op & 0x1) != DP_AUX_I2C_READ)) > - return; > + } else if ((op & 0x1) == DP_AUX_I2C_READ) { > if (drm_WARN_ON(&i915->drm, msg_length != 4)) > return; > if (i2c_edid->edid_available && i2c_edid->target_selected) { > @@ -553,6 +544,13 @@ void intel_gvt_i2c_handle_aux_ch_write(struct intel_vgpu *vgpu, > aux_data_for_write = (val << 16); > } else > aux_data_for_write = (0xff << 16); > + } else { > + /* TODO > + * We only support EDID reading from I2C_over_AUX. And > + * we do not expect the index mode to be used. Right now > + * the WRITE operation is ignored. It is good enough to > + * support the gfx driver to do EDID access. > + */ > } > /* write the return value in AUX_CH_DATA reg which includes: > * ACK of I2C_WRITE -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915/gvt: Swap read and write checks 2026-02-04 16:19 [PATCH] drm/i915/gvt: Swap read and write checks Jonathan Cavitt 2026-02-04 16:50 ` Jani Nikula @ 2026-02-04 17:11 ` Patchwork 2026-02-05 5:22 ` ✗ i915.CI.Full: failure " Patchwork 2026-03-17 9:28 ` [PATCH] " Jani Nikula 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-02-04 17:11 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 6790 bytes --] == Series Details == Series: drm/i915/gvt: Swap read and write checks URL : https://patchwork.freedesktop.org/series/161150/ State : success == Summary == CI Bug Log - changes from CI_DRM_17930 -> Patchwork_161150v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): bat-atsm-1 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_161150v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-atsm-1: NOTRUN -> [SKIP][1] ([i915#1849] / [i915#2582]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@fbdev@info.html * igt@fbdev@read: - bat-atsm-1: NOTRUN -> [SKIP][2] ([i915#2582]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@fbdev@read.html * igt@gem_mmap@basic: - bat-atsm-1: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#4079]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#4077]) +4 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html * igt@i915_pm_rps@basic-api: - bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#6621]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/bat-arls-5/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-atsm-1: NOTRUN -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@size-max: - bat-atsm-1: NOTRUN -> [SKIP][10] ([i915#6077]) +37 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@kms_addfb_basic@size-max.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-atsm-1: NOTRUN -> [SKIP][11] ([i915#6078]) +22 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_force_connector_basic@force-load-detect: - bat-atsm-1: NOTRUN -> [SKIP][12] ([i915#6093]) +4 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-atsm-1: NOTRUN -> [SKIP][13] ([i915#1836]) +6 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_prop_blob@basic: - bat-atsm-1: NOTRUN -> [SKIP][14] ([i915#7357]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@kms_prop_blob@basic.html * igt@kms_setmode@basic-clone-single-crtc: - bat-atsm-1: NOTRUN -> [SKIP][15] ([i915#6094]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-write: - bat-atsm-1: NOTRUN -> [SKIP][16] +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-atsm-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-dg2-9: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/bat-dg2-9/igt@i915_selftest@live@workarounds.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-dg2-9/igt@i915_selftest@live@workarounds.html - bat-dg2-14: [DMESG-FAIL][19] ([i915#12061]) -> [PASS][20] +1 other test pass [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/bat-dg2-14/igt@i915_selftest@live@workarounds.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-dg2-14/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [DMESG-FAIL][21] ([i915#12061]) -> [PASS][22] +1 other test pass [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#6093]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6093 [i915#6094]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6094 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#7357]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7357 Build changes ------------- * Linux: CI_DRM_17930 -> Patchwork_161150v1 CI-20190529: 20190529 CI_DRM_17930: 241994730989320c926da9f2d0a5ec80b48f993d @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8732: 020b7f0da24d0772e73338791288901d717d95f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_161150v1: 241994730989320c926da9f2d0a5ec80b48f993d @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/index.html [-- Attachment #2: Type: text/html, Size: 8152 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915/gvt: Swap read and write checks 2026-02-04 16:19 [PATCH] drm/i915/gvt: Swap read and write checks Jonathan Cavitt 2026-02-04 16:50 ` Jani Nikula 2026-02-04 17:11 ` ✓ i915.CI.BAT: success for " Patchwork @ 2026-02-05 5:22 ` Patchwork 2026-02-20 22:56 ` Cavitt, Jonathan 2026-03-17 9:28 ` [PATCH] " Jani Nikula 3 siblings, 1 reply; 6+ messages in thread From: Patchwork @ 2026-02-05 5:22 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 101111 bytes --] == Series Details == Series: drm/i915/gvt: Swap read and write checks URL : https://patchwork.freedesktop.org/series/161150/ State : failure == Summary == CI Bug Log - changes from CI_DRM_17930_full -> Patchwork_161150v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_161150v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_161150v1_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 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_161150v1_full: ### IGT changes ### #### Possible regressions #### * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: [PASS][1] -> [SKIP][2] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html New tests --------- New tests have been introduced between CI_DRM_17930_full and Patchwork_161150v1_full: ### New IGT tests (3) ### * igt@kms_atomic_interruptible@legacy-pageflip@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [6.34] s * igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.47] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [2.35] s Known issues ------------ Here are the changes found in Patchwork_161150v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][3] ([i915#11078]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_buddy@drm_buddy: - shard-glk: NOTRUN -> [DMESG-WARN][4] ([i915#15095]) +1 other test dmesg-warn [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk2/igt@drm_buddy@drm_buddy.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#3281]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#13008]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][8] -> [INCOMPLETE][9] ([i915#13356]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [PASS][10] -> [FAIL][11] ([i915#9561]) +1 other test fail [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-1/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#280]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#4525]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#4525]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_big@single: - shard-tglu: [PASS][15] -> [ABORT][16] ([i915#11713]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-tglu-5/igt@gem_exec_big@single.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-9/igt@gem_exec_big@single.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#4613] / [i915#7582]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#4613]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][19] ([i915#4613]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk9/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@random-engines: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#4613]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#4613]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_lmem_swapping@verify-random.html * igt@gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][22] ([i915#2658]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_pread@exhaustion.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#13398]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_readwrite@write-bad-handle: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#3282]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@gem_readwrite@write-bad-handle.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#3281] / [i915#3297]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#3297]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu: NOTRUN -> [SKIP][27] ([i915#3297]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#3297]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume: - shard-rkl: [PASS][29] -> [ABORT][30] ([i915#15152]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@gem_workarounds@suspend-resume.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-1/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][31] ([i915#2527] / [i915#2856]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-param: - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#2527] / [i915#2856]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html * igt@i915_module_load@resize-bar: - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#6412]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#8399]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][35] ([i915#13356] / [i915#15172]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk9/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_sseu@full-enable: - shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#4387]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][37] -> [SKIP][38] ([i915#7984]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-1/igt@i915_power@sanity.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-mtlp-5/igt@i915_power@sanity.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [PASS][39] -> [INCOMPLETE][40] ([i915#4817]) +1 other test incomplete [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-7/igt@i915_suspend@fence-restore-untiled.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][41] ([i915#4817]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk6/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#7707]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [PASS][43] -> [INCOMPLETE][44] ([i915#12761]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html - shard-glk: NOTRUN -> [INCOMPLETE][45] ([i915#12761]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][46] ([i915#12761] / [i915#14995]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html - shard-rkl: NOTRUN -> [INCOMPLETE][47] ([i915#12761]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#9531]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][49] ([i915#9531]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: [PASS][50] -> [FAIL][51] ([i915#5956]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][52] ([i915#5956]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#5286]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][54] ([i915#5286]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#5286]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3638]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][57] +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-glk10: NOTRUN -> [SKIP][58] +132 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-tglu-1: NOTRUN -> [SKIP][59] +44 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#6095]) +39 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#6095]) +60 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#10307] / [i915#6095]) +87 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-11/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#12313]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#14544] / [i915#6095]) +10 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#14098] / [i915#6095]) +33 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][66] ([i915#15582]) +1 other test incomplete [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#12313]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#12313]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#6095]) +158 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-18/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-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4423] / [i915#6095]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-13/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#6095]) +49 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][73] ([i915#6095]) +44 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][74] +193 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#3742]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#3742]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#13783]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#11151] / [i915#7828]) +6 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#11151] / [i915#7828]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#11151] / [i915#7828]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][82] ([i915#7173]) +1 other test fail [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#15330] / [i915#3116] / [i915#3299]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#15330]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@lic-type-1: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#6944] / [i915#9424]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#6944] / [i915#9424]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#6944]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_content_protection@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][88] ([i915#6944]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_content_protection@suspend-resume.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu-1: NOTRUN -> [FAIL][89] ([i915#13566]) +3 other tests fail [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#3555]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#13049]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3555]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: NOTRUN -> [FAIL][93] ([i915#13566]) +3 other tests fail [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][94] ([i915#13566]) +4 other tests fail [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][95] ([i915#12358] / [i915#14152] / [i915#7882]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [INCOMPLETE][96] ([i915#12358] / [i915#14152]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-snb: NOTRUN -> [SKIP][97] +21 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-snb6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#4103]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][99] ([i915#9723]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3804]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-dg2: [PASS][101] -> [SKIP][102] ([i915#1257]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-11/igt@kms_dp_aux_dev.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-7/igt@kms_dp_aux_dev.html - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#1257]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#13749]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#3840]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#3555] / [i915#3840]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#2065] / [i915#4854]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][108] ([i915#4854]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#1839]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#3637] / [i915#9934]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#9934]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-panning: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#9934]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#3637] / [i915#9934]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3: - shard-dg2: [PASS][114] -> [FAIL][115] ([i915#13027]) +1 other test fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-1/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-3/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#15643]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-tglu: NOTRUN -> [SKIP][117] ([i915#15643]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#15643]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#15645]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#15102] / [i915#3023]) +6 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][121] +38 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#15574]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#15574]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#15102]) +11 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#9766]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#15102]) +15 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#1825]) +9 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#3555] / [i915#8228]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#12713]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][130] ([i915#12713]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-dg2: [PASS][131] -> [SKIP][132] ([i915#3555] / [i915#8228]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-11/igt@kms_hdr@static-swap.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-1/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#15458]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_joiner@basic-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][134] ([i915#15458]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#13688]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#15460]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#14712]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#15608] / [i915#15609] / [i915#8825]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html - shard-tglu: NOTRUN -> [SKIP][139] ([i915#15608] / [i915#15609] / [i915#8825]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#15609]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-a-plane-7.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-3: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#15608]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-3.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#15609] / [i915#8825]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#15609] / [i915#8825]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-7.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-5: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#15608]) +25 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-0: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#15608]) +28 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-0.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#15608] / [i915#8825]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#15609]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#15609]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#15608] / [i915#8825]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#15609] / [i915#8825]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-7.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk10: NOTRUN -> [FAIL][152] ([i915#10647] / [i915#12169]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][153] ([i915#10647]) +1 other test fail [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-none: - shard-dg1: [PASS][154] -> [DMESG-WARN][155] ([i915#4423]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-16/igt@kms_plane_lowres@tiling-none.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-13/igt@kms_plane_lowres@tiling-none.html * igt@kms_plane_multiple@2x-tiling-y: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#13958]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#15329]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#15073]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#15073]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][160] -> [SKIP][161] ([i915#15073]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#15073]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-dg1: [PASS][163] -> [SKIP][164] ([i915#15073]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#6524]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#6524]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#11520]) +5 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#11520]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][169] ([i915#11520]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][170] ([i915#11520]) +4 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk9/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#11520]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@fbc-psr-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#9732]) +15 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_psr@fbc-psr-cursor-plane-onoff.html * igt@kms_psr@fbc-psr2-basic: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#9732]) +15 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#1072] / [i915#9732]) +9 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk10: NOTRUN -> [INCOMPLETE][175] ([i915#15492]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#5289]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#5289]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][178] ([i915#13179]) +1 other test abort [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-snb6/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][179] ([i915#15106]) +2 other tests fail [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-snb6/igt@kms_setmode@basic.html * igt@kms_vblank@ts-continuation-suspend: - shard-rkl: [PASS][180] -> [INCOMPLETE][181] ([i915#12276]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][182] ([i915#12276]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#15243] / [i915#3555]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#3555]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#11920]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#9906]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@polling@0-rcs0: - shard-tglu: NOTRUN -> [FAIL][187] ([i915#10538]) +1 other test fail [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@perf@polling@0-rcs0.html - shard-mtlp: [PASS][188] -> [FAIL][189] ([i915#10538]) +1 other test fail [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-3/igt@perf@polling@0-rcs0.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-mtlp-1/igt@perf@polling@0-rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][190] -> [FAIL][191] ([i915#4349]) +4 other tests fail [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg2: [PASS][192] -> [FAIL][193] ([i915#15520]) +1 other test fail [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-8/igt@perf_pmu@most-busy-idle-check-all.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-5/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#8516]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3291] / [i915#3708]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@prime_vgem@basic-write.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][196] ([i915#12910]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s4-devices: - shard-rkl: [ABORT][197] ([i915#7975]) -> [PASS][198] +1 other test pass [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices.html * igt@i915_pm_rpm@system-suspend: - shard-dg1: [DMESG-WARN][199] ([i915#4391] / [i915#4423]) -> [PASS][200] +1 other test pass [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-14/igt@i915_pm_rpm@system-suspend.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-17/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [INCOMPLETE][201] ([i915#13356]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@i915_pm_rpm@system-suspend-execbuf.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][203] ([i915#13821]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-snb4/igt@i915_pm_rps@reset.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-snb6/igt@i915_pm_rps@reset.html * igt@kms_3d@basic: - shard-mtlp: [SKIP][205] -> [PASS][206] +1 other test pass [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-1/igt@kms_3d@basic.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-mtlp-6/igt@kms_3d@basic.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][207] -> [PASS][208] +3 other tests pass [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_color@deep-color: - shard-rkl: [SKIP][209] ([i915#12655] / [i915#3555]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_color@deep-color.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_color@deep-color.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1: - shard-dg2: [FAIL][211] ([i915#13027]) -> [PASS][212] +1 other test pass [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html * igt@kms_hdr@bpc-switch: - shard-dg2: [SKIP][213] ([i915#3555] / [i915#8228]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-1/igt@kms_hdr@bpc-switch.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-11/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [SKIP][215] ([i915#3555] / [i915#8228]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_hdr@invalid-metadata-sizes.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: [SKIP][217] ([i915#15073]) -> [PASS][218] +3 other tests pass [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][219] ([i915#15073]) -> [PASS][220] +1 other test pass [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_vblank@wait-idle: - shard-dg1: [DMESG-WARN][221] ([i915#4423]) -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@kms_vblank@wait-idle.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-12/igt@kms_vblank@wait-idle.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][223] ([i915#15420]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-2/igt@kms_vrr@negative-basic.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-mtlp-8/igt@kms_vrr@negative-basic.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [FAIL][225] ([i915#4349]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-6/igt@perf_pmu@busy-double-start@rcs0.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html #### Warnings #### * igt@api_intel_bb@crc32: - shard-rkl: [SKIP][227] ([i915#6230]) -> [SKIP][228] ([i915#14544] / [i915#6230]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@api_intel_bb@crc32.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: [SKIP][229] ([i915#14544] / [i915#8411]) -> [SKIP][230] ([i915#8411]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: [SKIP][231] ([i915#11078]) -> [SKIP][232] ([i915#11078] / [i915#14544]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@device_reset@cold-reset-bound.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@device_reset@cold-reset-bound.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][233] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][234] ([i915#3555] / [i915#9323]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][235] ([i915#9323]) -> [SKIP][236] ([i915#14544] / [i915#9323]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: [SKIP][237] ([i915#6335]) -> [SKIP][238] ([i915#14544] / [i915#6335]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: [SKIP][239] ([i915#14544] / [i915#4525]) -> [SKIP][240] ([i915#4525]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: [SKIP][241] -> [SKIP][242] ([i915#14544]) +10 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: [SKIP][243] ([i915#14544] / [i915#3281]) -> [SKIP][244] ([i915#3281]) +6 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-rkl: [SKIP][245] ([i915#3281]) -> [SKIP][246] ([i915#14544] / [i915#3281]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@gem_exec_reloc@basic-wc-cpu.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_lmem_swapping@massive: - shard-rkl: [SKIP][247] ([i915#14544] / [i915#4613]) -> [SKIP][248] ([i915#4613]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_lmem_swapping@massive.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: [SKIP][249] ([i915#4613]) -> [SKIP][250] ([i915#14544] / [i915#4613]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: [SKIP][251] ([i915#3282]) -> [SKIP][252] ([i915#14544] / [i915#3282]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-display.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_readwrite@beyond-eob: - shard-rkl: [SKIP][253] ([i915#14544] / [i915#3282]) -> [SKIP][254] ([i915#3282]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_readwrite@beyond-eob.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_readwrite@beyond-eob.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: [SKIP][255] ([i915#3297]) -> [SKIP][256] ([i915#14544] / [i915#3297]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: [SKIP][257] ([i915#14544] / [i915#3297]) -> [SKIP][258] ([i915#3297]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][259] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][260] ([i915#3282] / [i915#3297]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_workarounds@suspend-resume-context: - shard-rkl: [INCOMPLETE][261] ([i915#13356]) -> [ABORT][262] ([i915#15131]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_workarounds@suspend-resume-context.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-1/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: [SKIP][263] ([i915#2527]) -> [SKIP][264] ([i915#14544] / [i915#2527]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@gen9_exec_parse@bb-secure.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: [SKIP][265] ([i915#14544] / [i915#2527]) -> [SKIP][266] ([i915#2527]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gen9_exec_parse@bb-start-param.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg1: [SKIP][267] ([i915#4423]) -> [SKIP][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-16/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_sseu@full-enable: - shard-rkl: [SKIP][269] ([i915#14544] / [i915#4387]) -> [SKIP][270] ([i915#4387]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@i915_pm_sseu@full-enable.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@i915_pm_sseu@full-enable.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][271] ([i915#14544] / [i915#5286]) -> [SKIP][272] ([i915#5286]) +3 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: [SKIP][273] ([i915#5286]) -> [SKIP][274] ([i915#14544] / [i915#5286]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: [SKIP][275] ([i915#3638]) -> [SKIP][276] ([i915#14544] / [i915#3638]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-270.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [SKIP][277] ([i915#3828]) -> [SKIP][278] ([i915#14544] / [i915#3828]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][279] ([i915#14544] / [i915#3638]) -> [SKIP][280] ([i915#3638]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][281] ([i915#14544]) -> [SKIP][282] +8 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][283] ([i915#14544] / [i915#6095]) -> [SKIP][284] ([i915#6095]) +3 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][285] ([i915#12313] / [i915#14544]) -> [SKIP][286] ([i915#12313]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-rkl: [SKIP][287] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][288] ([i915#14098] / [i915#6095]) +9 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: [SKIP][289] ([i915#14098] / [i915#6095]) -> [SKIP][290] ([i915#14098] / [i915#14544] / [i915#6095]) +9 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][291] ([i915#6095]) -> [SKIP][292] ([i915#14544] / [i915#6095]) +3 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-dg1: [SKIP][293] ([i915#6095]) -> [SKIP][294] ([i915#4423] / [i915#6095]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-16/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-13/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_chamelium_hpd@dp-hpd: - shard-rkl: [SKIP][295] ([i915#11151] / [i915#7828]) -> [SKIP][296] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-rkl: [SKIP][297] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][298] ([i915#11151] / [i915#7828]) +3 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [FAIL][299] ([i915#7173]) -> [SKIP][300] ([i915#6944] / [i915#7118] / [i915#9424]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-dg2: [SKIP][301] ([i915#6944]) -> [FAIL][302] ([i915#7173]) +1 other test fail [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-8/igt@kms_content_protection@atomic-dpms-hdcp14.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@content-type-change: - shard-rkl: [SKIP][303] ([i915#6944] / [i915#9424]) -> [SKIP][304] ([i915#14544] / [i915#6944] / [i915#9424]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_content_protection@content-type-change.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: [SKIP][305] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][306] ([i915#15330] / [i915#3116]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-rkl: [SKIP][307] ([i915#14544] / [i915#15330]) -> [SKIP][308] ([i915#15330]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][309] ([i915#9433]) -> [SKIP][310] ([i915#6944] / [i915#9424]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@kms_content_protection@mei-interface.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-14/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][311] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][312] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_content_protection@type1.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: [SKIP][313] ([i915#14544] / [i915#3555]) -> [SKIP][314] ([i915#3555]) +2 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x10.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: [SKIP][315] ([i915#13049] / [i915#14544]) -> [SKIP][316] ([i915#13049]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][317] ([i915#4103]) -> [SKIP][318] ([i915#14544] / [i915#4103]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: [SKIP][319] ([i915#13748]) -> [SKIP][320] ([i915#13748] / [i915#14544]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_dp_link_training@uhbr-sst.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: [SKIP][321] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][322] ([i915#3555] / [i915#3840]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@display-4x: - shard-rkl: [SKIP][323] ([i915#14544] / [i915#1839]) -> [SKIP][324] ([i915#1839]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_feature_discovery@display-4x.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: [SKIP][325] ([i915#14544] / [i915#9934]) -> [SKIP][326] ([i915#9934]) +3 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-rkl: [SKIP][327] ([i915#9934]) -> [SKIP][328] ([i915#14544] / [i915#9934]) +4 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-rkl: [SKIP][329] ([i915#14544] / [i915#15643]) -> [SKIP][330] ([i915#15643]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-rkl: [SKIP][331] ([i915#15643]) -> [SKIP][332] ([i915#14544] / [i915#15643]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-rkl: [SKIP][333] ([i915#1825]) -> [SKIP][334] ([i915#14544] / [i915#1825]) +5 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-pwrite: - shard-rkl: [SKIP][335] ([i915#14544] / [i915#15574]) -> [SKIP][336] ([i915#15574]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-pwrite.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite: - shard-rkl: [SKIP][337] ([i915#15102]) -> [SKIP][338] ([i915#14544] / [i915#15102]) +2 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: [SKIP][339] ([i915#15102] / [i915#3023]) -> [SKIP][340] ([i915#14544] / [i915#15102] / [i915#3023]) +9 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][341] ([i915#14544] / [i915#1825]) -> [SKIP][342] ([i915#1825]) +27 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: [SKIP][343] ([i915#5439]) -> [SKIP][344] ([i915#14544] / [i915#5439]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: [SKIP][345] ([i915#14544] / [i915#9766]) -> [SKIP][346] ([i915#9766]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][347] ([i915#14544] / [i915#15102]) -> [SKIP][348] ([i915#15102]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][349] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][350] ([i915#15102] / [i915#3023]) +7 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: [SKIP][351] ([i915#14544] / [i915#15460]) -> [SKIP][352] ([i915#15460]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][353] ([i915#14544] / [i915#6301]) -> [SKIP][354] ([i915#6301]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_panel_fitting@legacy.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: [SKIP][355] ([i915#14712]) -> [SKIP][356] ([i915#14544] / [i915#14712]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping: - shard-rkl: [SKIP][357] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][358] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-0: - shard-rkl: [SKIP][359] ([i915#15608]) -> [SKIP][360] ([i915#14544] / [i915#15608]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-0.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-0.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-rkl: [SKIP][361] ([i915#15609] / [i915#8825]) -> [SKIP][362] ([i915#14544] / [i915#15609] / [i915#8825]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: [SKIP][363] ([i915#14544] / [i915#15608] / [i915#8825]) -> [SKIP][364] ([i915#15608] / [i915#8825]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-a-plane-0: - shard-rkl: [SKIP][365] ([i915#14544] / [i915#15608]) -> [SKIP][366] ([i915#15608]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-a-plane-0.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-a-plane-0.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: [SKIP][367] ([i915#5354]) -> [SKIP][368] ([i915#14544] / [i915#5354]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: [SKIP][369] ([i915#9685]) -> [SKIP][370] ([i915#14544] / [i915#9685]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][371] ([i915#9340]) -> [SKIP][372] ([i915#3828]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: [SKIP][373] ([i915#14544] / [i915#6524]) -> [SKIP][374] ([i915#6524]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][375] ([i915#11520] / [i915#14544]) -> [SKIP][376] ([i915#11520]) +2 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][377] ([i915#11520]) -> [SKIP][378] ([i915#11520] / [i915#14544]) +3 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: [SKIP][379] ([i915#9683]) -> [SKIP][380] ([i915#14544] / [i915#9683]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-dg1: [SKIP][381] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][382] ([i915#1072] / [i915#9732]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-12/igt@kms_psr@fbc-pr-cursor-blt.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-13/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-pr-suspend: - shard-rkl: [SKIP][383] ([i915#1072] / [i915#9732]) -> [SKIP][384] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_psr@fbc-pr-suspend.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@fbc-psr-sprite-mmap-gtt: - shard-rkl: [SKIP][385] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][386] ([i915#1072] / [i915#9732]) +11 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html * igt@kms_psr@fbc-psr2-cursor-render: - shard-dg1: [SKIP][387] ([i915#1072] / [i915#9732]) -> [SKIP][388] ([i915#1072] / [i915#4423] / [i915#9732]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-16/igt@kms_psr@fbc-psr2-cursor-render.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-13/igt@kms_psr@fbc-psr2-cursor-render.html * igt@kms_setmode@clone-exclusive-crtc: - shard-rkl: [SKIP][389] ([i915#3555]) -> [SKIP][390] ([i915#14544] / [i915#3555]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_setmode@clone-exclusive-crtc.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: [SKIP][391] ([i915#2435]) -> [SKIP][392] ([i915#14544] / [i915#2435]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: [SKIP][393] ([i915#14544] / [i915#8516]) -> [SKIP][394] ([i915#8516]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: [SKIP][395] ([i915#14544] / [i915#9917]) -> [SKIP][396] ([i915#9917]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15095 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152 [i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15520 [i915#15574]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15609]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15645 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#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_17930 -> Patchwork_161150v1 CI-20190529: 20190529 CI_DRM_17930: 241994730989320c926da9f2d0a5ec80b48f993d @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8732: 020b7f0da24d0772e73338791288901d717d95f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_161150v1: 241994730989320c926da9f2d0a5ec80b48f993d @ 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_161150v1/index.html [-- Attachment #2: Type: text/html, Size: 137445 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: ✗ i915.CI.Full: failure for drm/i915/gvt: Swap read and write checks 2026-02-05 5:22 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-02-20 22:56 ` Cavitt, Jonathan 0 siblings, 0 replies; 6+ messages in thread From: Cavitt, Jonathan @ 2026-02-20 22:56 UTC (permalink / raw) To: intel-gfx@lists.freedesktop.org; +Cc: Cavitt, Jonathan [-- Attachment #1: Type: text/plain, Size: 116323 bytes --] The regression is probably a false positive because the behavior of the targeted code path should be unchanged. -Jonathan Cavitt From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Wednesday, February 4, 2026 9:23 PM To: Cavitt, Jonathan <jonathan.cavitt@intel.com> Cc: intel-gfx@lists.freedesktop.org Subject: ✗ i915.CI.Full: failure for drm/i915/gvt: Swap read and write checks Patch Details Series: drm/i915/gvt: Swap read and write checks URL: https://patchwork.freedesktop.org/series/161150/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/index.html CI Bug Log - changes from CI_DRM_17930_full -> Patchwork_161150v1_full Summary FAILURE Serious unknown changes coming with Patchwork_161150v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_161150v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (10 -> 10) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in Patchwork_161150v1_full: IGT changes Possible regressions * igt@kms_force_connector_basic@prune-stale-modes: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html> +1 other test skip New tests New tests have been introduced between CI_DRM_17930_full and Patchwork_161150v1_full: New IGT tests (3) * igt@kms_atomic_interruptible@legacy-pageflip@pipe-a-dp-3: * Statuses : 1 pass(s) * Exec time: [6.34] s * igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-a-dp-3: * Statuses : 1 pass(s) * Exec time: [0.47] s * igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-3: * Statuses : 1 pass(s) * Exec time: [2.35] s Known issues Here are the changes found in Patchwork_161150v1_full that come from known issues: IGT changes Issues hit * igt@device_reset@unbind-cold-reset-rebind: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@device_reset@unbind-cold-reset-rebind.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>) * igt@drm_buddy@drm_buddy: * shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk2/igt@drm_buddy@drm_buddy.html> (i915#15095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15095>) +1 other test dmesg-warn * igt@gem_bad_reloc@negative-reloc-lut: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) * igt@gem_ccs@ctrl-surf-copy: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) +1 other test skip * igt@gem_ccs@large-ctrl-surf-copy: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_ccs@large-ctrl-surf-copy.html> (i915#13008<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008>) * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html> (i915#13356<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) * igt@gem_ctx_freq@sysfs@gt0: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-1/igt@gem_ctx_freq@sysfs@gt0.html> (i915#9561<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561>) +1 other test fail * igt@gem_ctx_sseu@invalid-sseu: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) * igt@gem_exec_balancer@parallel-balancer: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) +3 other tests skip * igt@gem_exec_balancer@parallel-out-fence: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_exec_balancer@parallel-out-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) * igt@gem_exec_big@single: * shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-tglu-5/igt@gem_exec_big@single.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-9/igt@gem_exec_big@single.html> (i915#11713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713>) * igt@gem_lmem_evict@dontneed-evict-race: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_lmem_evict@dontneed-evict-race.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> / i915#7582<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>) * igt@gem_lmem_swapping@parallel-random-verify: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other tests skip * igt@gem_lmem_swapping@random: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk9/igt@gem_lmem_swapping@random.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip * igt@gem_lmem_swapping@random-engines: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_lmem_swapping@random-engines.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) * igt@gem_lmem_swapping@verify-random: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_lmem_swapping@verify-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip * igt@gem_pread@exhaustion: * shard-tglu: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_pread@exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658>) * igt@gem_pxp@hw-rejects-pxp-context: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_pxp@hw-rejects-pxp-context.html> (i915#13398<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398>) * igt@gem_readwrite@write-bad-handle: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@gem_readwrite@write-bad-handle.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip * igt@gem_userptr_blits@relocations: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_userptr_blits@relocations.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gem_userptr_blits@unsync-overlap: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_userptr_blits@unsync-overlap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gem_userptr_blits@unsync-unmap: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gem_userptr_blits@unsync-unmap-cycles: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gem_workarounds@suspend-resume: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@gem_workarounds@suspend-resume.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-1/igt@gem_workarounds@suspend-resume.html> (i915#15152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152>) * igt@gen9_exec_parse@basic-rejected: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@gen9_exec_parse@basic-rejected.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +2 other tests skip * igt@gen9_exec_parse@bb-start-param: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +3 other tests skip * igt@i915_module_load@resize-bar: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@i915_module_load@resize-bar.html> (i915#6412<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412>) * igt@i915_pm_freq_api@freq-reset-multiple: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) * igt@i915_pm_rpm@system-suspend-execbuf: * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk9/igt@i915_pm_rpm@system-suspend-execbuf.html> (i915#13356<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356> / i915#15172<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172>) * igt@i915_pm_sseu@full-enable: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@i915_pm_sseu@full-enable.html> (i915#4387<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>) * igt@i915_power@sanity: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-1/igt@i915_power@sanity.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-mtlp-5/igt@i915_power@sanity.html> (i915#7984<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984>) * igt@i915_suspend@fence-restore-untiled: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-7/igt@i915_suspend@fence-restore-untiled.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html> (i915#4817<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>) +1 other test incomplete * igt@i915_suspend@forcewake: * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk6/igt@i915_suspend@forcewake.html> (i915#4817<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>) * igt@intel_hwmon@hwmon-read: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@intel_hwmon@hwmon-read.html> (i915#7707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>) * igt@kms_async_flips@async-flip-suspend-resume: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html> (i915#12761<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761>) * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume.html> (i915#12761<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761>) * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html> (i915#12761<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761> / i915#14995<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995>) * shard-rkl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html> (i915#12761<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761>) * igt@kms_atomic@plane-primary-overlay-mutable-zpos: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#9531<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#9531<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (i915#5956<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>) * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3.html> (i915#5956<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>) * igt@kms_big_fb@4-tiled-64bpp-rotate-180: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +1 other test skip * igt@kms_big_fb@4-tiled-8bpp-rotate-180: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +5 other tests skip * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +3 other tests skip * igt@kms_big_fb@y-tiled-8bpp-rotate-90: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +1 other test skip * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html> +3 other tests skip * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: * shard-glk10: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> +132 other tests skip * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> +44 other tests skip * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +39 other tests skip * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +60 other tests skip * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-11/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +87 other tests skip * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +10 other tests skip * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +33 other tests skip * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html> (i915#15582<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582>) +1 other test incomplete * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +5 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +2 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +158 other tests skip * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-hdmi-a-3: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-13/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-hdmi-a-3.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +49 other tests skip * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +44 other tests skip * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html> +193 other tests skip * igt@kms_cdclk@mode-transition-all-outputs: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html> (i915#3742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) * igt@kms_cdclk@plane-scaling: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_cdclk@plane-scaling.html> (i915#3742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html> (i915#13783<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783>) +3 other tests skip * igt@kms_chamelium_audio@dp-audio: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +6 other tests skip * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +4 other tests skip * igt@kms_chamelium_frames@dp-crc-single: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +5 other tests skip * igt@kms_content_protection@atomic-dpms: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_content_protection@atomic-dpms.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#7116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> / i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) +1 other test fail * igt@kms_content_protection@dp-mst-type-0: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html> (i915#15330<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330> / i915#3116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116> / i915#3299<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>) * igt@kms_content_protection@dp-mst-type-1-suspend-resume: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html> (i915#15330<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>) * igt@kms_content_protection@lic-type-1: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_content_protection@lic-type-1.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@mei-interface: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_content_protection@mei-interface.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@suspend-resume: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_content_protection@suspend-resume.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_content_protection@suspend-resume.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>) * igt@kms_cursor_crc@cursor-onscreen-256x85: * shard-tglu-1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +3 other tests fail * igt@kms_cursor_crc@cursor-random-32x10: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip * igt@kms_cursor_crc@cursor-random-512x170: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +2 other tests skip * igt@kms_cursor_crc@cursor-rapid-movement-32x32: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip * igt@kms_cursor_crc@cursor-sliding-256x85: * shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-256x85.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +3 other tests fail * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +4 other tests fail * igt@kms_cursor_crc@cursor-suspend: * shard-glk10: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_cursor_crc@cursor-suspend.html> (i915#12358<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358> / i915#14152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152> / i915#7882<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882>) * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: * shard-glk10: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html> (i915#12358<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358> / i915#14152<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152>) * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-snb6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html> +21 other tests skip * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (i915#9723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>) * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html> (i915#3804<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) * igt@kms_dp_aux_dev: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-11/igt@kms_dp_aux_dev.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-7/igt@kms_dp_aux_dev.html> (i915#1257<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_dp_aux_dev.html> (i915#1257<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) * igt@kms_dp_link_training@non-uhbr-sst: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-sst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) * igt@kms_dsc@dsc-fractional-bpp: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) * igt@kms_dsc@dsc-with-bpc: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) * igt@kms_feature_discovery@chamelium: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_feature_discovery@chamelium.html> (i915#2065<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065> / i915#4854<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_feature_discovery@chamelium.html> (i915#4854<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>) * igt@kms_feature_discovery@display-4x: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_feature_discovery@display-4x.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) * igt@kms_flip@2x-blocking-wf_vblank: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) * igt@kms_flip@2x-flip-vs-panning: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +4 other tests skip * igt@kms_flip@2x-plain-flip-ts-check: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_flip@2x-plain-flip-ts-check.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +1 other test skip * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-1/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-3/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html> (i915#13027<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027>) +1 other test fail * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> (i915#15643<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) +1 other test skip * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html> (i915#15643<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) +2 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> (i915#15643<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html> (i915#15645<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15645>) * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +6 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> +38 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-pwrite: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-pwrite.html> (i915#15574<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574>) +1 other test skip * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render.html> (i915#15574<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574>) +2 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +11 other tests skip * igt@kms_frontbuffer_tracking@pipe-fbc-rte: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (i915#9766<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +15 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +9 other tests skip * igt@kms_hdr@bpc-switch-suspend: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_hdr@bpc-switch-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) +1 other test skip * igt@kms_hdr@brightness-with-hdr: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) * igt@kms_hdr@static-swap: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-11/igt@kms_hdr@static-swap.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-1/igt@kms_hdr@static-swap.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) +1 other test skip * igt@kms_joiner@basic-force-ultra-joiner: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_joiner@basic-force-ultra-joiner.html> (i915#15458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_joiner@basic-force-ultra-joiner.html> (i915#15458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>) * igt@kms_joiner@basic-max-non-joiner: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_joiner@basic-max-non-joiner.html> (i915#13688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688>) * igt@kms_joiner@invalid-modeset-big-joiner: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html> (i915#15460<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460>) * igt@kms_pipe_stress@stress-xrgb8888-4tiled: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html> (i915#14712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712>) * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html> (i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608> / i915#15609<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html> (i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608> / i915#15609<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-a-plane-7: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-a-plane-7.html> (i915#15609<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609>) * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-3: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-3.html> (i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608>) +5 other tests skip * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5.html> (i915#15609<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-7: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-7.html> (i915#15609<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-5: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-5.html> (i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608>) +25 other tests skip * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-0: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-0.html> (i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608>) +28 other tests skip * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-7: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-7.html> (i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) +5 other tests skip * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-7: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-7.html> (i915#15609<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609>) +1 other test skip * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5.html> (i915#15609<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609>) +2 other tests skip * igt@kms_plane@pixel-format-yf-tiled-modifier: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier.html> (i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) +3 other tests skip * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html> (i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608> / i915#15609<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) +1 other test skip * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-7: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-7.html> (i915#15609<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) +1 other test skip * igt@kms_plane_alpha_blend@alpha-opaque-fb: * shard-glk10: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html> (i915#10647<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647> / i915#12169<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169>) * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1: * shard-glk10: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1.html> (i915#10647<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647>) +1 other test fail * igt@kms_plane_lowres@tiling-none: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-16/igt@kms_plane_lowres@tiling-none.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-13/igt@kms_plane_lowres@tiling-none.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) * igt@kms_plane_multiple@2x-tiling-y: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_plane_multiple@2x-tiling-y.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html> (i915#15329<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>) +4 other tests skip * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) * igt@kms_pm_rpm@dpms-non-lpsp: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_pm_rpm@dpms-non-lpsp.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) +1 other test skip * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) +2 other tests skip * igt@kms_prime@basic-crc-hybrid: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) * igt@kms_prime@basic-modeset-hybrid: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_prime@basic-modeset-hybrid.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +4 other tests skip * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: * shard-glk10: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +3 other tests skip * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk9/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +4 other tests skip * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +4 other tests skip * igt@kms_psr@fbc-psr-cursor-plane-onoff: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_psr@fbc-psr-cursor-plane-onoff.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +15 other tests skip * igt@kms_psr@fbc-psr2-basic: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +15 other tests skip * igt@kms_psr@psr-cursor-plane-move: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_psr@psr-cursor-plane-move.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +9 other tests skip * igt@kms_rotation_crc@multiplane-rotation: * shard-glk10: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-glk10/igt@kms_rotation_crc@multiplane-rotation.html> (i915#15492<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492>) * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) * igt@kms_selftest@drm_framebuffer: * shard-snb: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-snb6/igt@kms_selftest@drm_framebuffer.html> (i915#13179<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179>) +1 other test abort * igt@kms_setmode@basic: * shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-snb6/igt@kms_setmode@basic.html> (i915#15106<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106>) +2 other tests fail * igt@kms_vblank@ts-continuation-suspend: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend.html> (i915#12276<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>) * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html> (i915#12276<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>) * igt@kms_vrr@flip-dpms: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_vrr@flip-dpms.html> (i915#15243<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip * igt@kms_vrr@flip-suspend: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-3/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_vrr@lobf: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_vrr@lobf.html> (i915#11920<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920>) * igt@kms_vrr@seamless-rr-switch-drrs: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-drrs.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * igt@perf@polling@0-rcs0: * shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-8/igt@perf@polling@0-rcs0.html> (i915#10538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538>) +1 other test fail * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-3/igt@perf@polling@0-rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-mtlp-1/igt@perf@polling@0-rcs0.html> (i915#10538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538>) +1 other test fail * igt@perf_pmu@busy-double-start@vecs1: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html> (i915#4349<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) +4 other tests fail * igt@perf_pmu@most-busy-idle-check-all: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-8/igt@perf_pmu@most-busy-idle-check-all.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-5/igt@perf_pmu@most-busy-idle-check-all.html> (i915#15520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15520>) +1 other test fail * igt@perf_pmu@rc6-all-gts: * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html> (i915#8516<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) * igt@prime_vgem@basic-write: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@prime_vgem@basic-write.html> (i915#3291<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> / i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: * shard-tglu-1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (i915#12910<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>) Possible fixes * igt@gem_exec_suspend@basic-s4-devices: * shard-rkl: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html> (i915#7975<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices.html> +1 other test pass * igt@i915_pm_rpm@system-suspend: * shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-14/igt@i915_pm_rpm@system-suspend.html> (i915#4391<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-17/igt@i915_pm_rpm@system-suspend.html> +1 other test pass * igt@i915_pm_rpm@system-suspend-execbuf: * shard-rkl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@i915_pm_rpm@system-suspend-execbuf.html> (i915#13356<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@i915_pm_rpm@system-suspend-execbuf.html> * igt@i915_pm_rps@reset: * shard-snb: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-snb4/igt@i915_pm_rps@reset.html> (i915#13821<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-snb6/igt@i915_pm_rps@reset.html> * igt@kms_3d@basic: * shard-mtlp: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-1/igt@kms_3d@basic.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-mtlp-6/igt@kms_3d@basic.html> +1 other test pass * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: * shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html> +3 other tests pass * igt@kms_color@deep-color: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_color@deep-color.html> (i915#12655<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_color@deep-color.html> * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1: * shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html> (i915#13027<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html> +1 other test pass * igt@kms_hdr@bpc-switch: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-1/igt@kms_hdr@bpc-switch.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-11/igt@kms_hdr@bpc-switch.html> * igt@kms_hdr@invalid-metadata-sizes: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_hdr@invalid-metadata-sizes.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html> * igt@kms_pm_rpm@dpms-lpsp: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html> +3 other tests pass * igt@kms_pm_rpm@modeset-non-lpsp-stress: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> +1 other test pass * igt@kms_vblank@wait-idle: * shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@kms_vblank@wait-idle.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-12/igt@kms_vblank@wait-idle.html> +1 other test pass * igt@kms_vrr@negative-basic: * shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-2/igt@kms_vrr@negative-basic.html> (i915#15420<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-mtlp-8/igt@kms_vrr@negative-basic.html> +1 other test pass * igt@perf_pmu@busy-double-start@rcs0: * shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-6/igt@perf_pmu@busy-double-start@rcs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html> Warnings * igt@api_intel_bb@crc32: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@api_intel_bb@crc32.html> (i915#6230<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@api_intel_bb@crc32.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6230<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) * igt@api_intel_bb@object-reloc-keep-cache: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@api_intel_bb@object-reloc-keep-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) * igt@device_reset@cold-reset-bound: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@device_reset@cold-reset-bound.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@device_reset@cold-reset-bound.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@gem_ccs@block-copy-compressed: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_ccs@block-copy-compressed.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) * igt@gem_ccs@ctrl-surf-copy-new-ctx: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) * igt@gem_create@create-ext-cpu-access-big: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html> (i915#6335<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6335<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335>) * igt@gem_exec_balancer@parallel-balancer: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) +2 other tests skip * igt@gem_exec_flush@basic-batch-kernel-default-cmd: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +10 other tests skip * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +6 other tests skip * igt@gem_exec_reloc@basic-wc-cpu: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@gem_exec_reloc@basic-wc-cpu.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +3 other tests skip * igt@gem_lmem_swapping@massive: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_lmem_swapping@massive.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_lmem_swapping@massive.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip * igt@gem_lmem_swapping@parallel-random-verify-ccs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip * igt@gem_partial_pwrite_pread@writes-after-reads-display: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-display.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +3 other tests skip * igt@gem_readwrite@beyond-eob: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_readwrite@beyond-eob.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gem_readwrite@beyond-eob.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +4 other tests skip * igt@gem_userptr_blits@coherency-sync: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gem_userptr_blits@dmabuf-unsync: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-1/igt@gem_userptr_blits@dmabuf-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +2 other tests skip * igt@gem_userptr_blits@forbidden-operations: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gem_workarounds@suspend-resume-context: * shard-rkl: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_workarounds@suspend-resume-context.html> (i915#13356<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-1/igt@gem_workarounds@suspend-resume-context.html> (i915#15131<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131>) * igt@gen9_exec_parse@bb-secure: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@gen9_exec_parse@bb-secure.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +1 other test skip * igt@gen9_exec_parse@bb-start-param: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@gen9_exec_parse@bb-start-param.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +1 other test skip * igt@i915_pm_rpm@gem-execbuf-stress-pc8: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-16/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html> * igt@i915_pm_sseu@full-enable: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@i915_pm_sseu@full-enable.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4387<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@i915_pm_sseu@full-enable.html> (i915#4387<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>) * igt@kms_big_fb@4-tiled-16bpp-rotate-90: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +3 other tests skip * igt@kms_big_fb@4-tiled-64bpp-rotate-0: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +1 other test skip * igt@kms_big_fb@linear-64bpp-rotate-270: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-270.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) +2 other tests skip * igt@kms_big_fb@x-tiled-16bpp-rotate-270: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +1 other test skip * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html> +8 other tests skip * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +3 other tests skip * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +9 other tests skip * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +9 other tests skip * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +3 other tests skip * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-16/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-13/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) * igt@kms_chamelium_hpd@dp-hpd: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +1 other test skip * igt@kms_chamelium_hpd@dp-hpd-storm: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-storm.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other tests skip * igt@kms_content_protection@atomic-dpms: * shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@atomic-dpms-hdcp14: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-8/igt@kms_content_protection@atomic-dpms-hdcp14.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) +1 other test fail * igt@kms_content_protection@content-type-change: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_content_protection@content-type-change.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_content_protection@content-type-change.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@dp-mst-type-0: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15330<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330> / i915#3116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html> (i915#15330<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330> / i915#3116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) * igt@kms_content_protection@dp-mst-type-0-suspend-resume: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15330<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html> (i915#15330<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>) +1 other test skip * igt@kms_content_protection@mei-interface: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@kms_content_protection@mei-interface.html> (i915#9433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-14/igt@kms_content_protection@mei-interface.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@type1: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_content_protection@type1.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_content_protection@type1.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_cursor_crc@cursor-random-32x10: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x10.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip * igt@kms_cursor_crc@cursor-sliding-512x512: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +1 other test skip * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) +1 other test skip * igt@kms_dp_link_training@uhbr-sst: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_dp_link_training@uhbr-sst.html> (i915#13748<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html> (i915#13748<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) * igt@kms_dsc@dsc-with-bpc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) * igt@kms_feature_discovery@display-4x: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_feature_discovery@display-4x.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_feature_discovery@display-4x.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) * igt@kms_flip@2x-blocking-wf_vblank: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_flip@2x-blocking-wf_vblank.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other tests skip * igt@kms_flip@2x-modeset-vs-vblank-race: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +4 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15643<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> (i915#15643<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html> (i915#15643<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15643<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) +1 other test skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +5 other tests skip * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-pwrite: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-pwrite.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15574<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-pwrite.html> (i915#15574<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574>) +1 other test skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +2 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +9 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +27 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html> (i915#5439<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5439<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>) * igt@kms_frontbuffer_tracking@pipe-fbc-rte: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9766<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (i915#9766<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +1 other test skip * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +7 other tests skip * igt@kms_joiner@invalid-modeset-big-joiner: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15460<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_joiner@invalid-modeset-big-joiner.html> (i915#15460<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460>) * igt@kms_panel_fitting@legacy: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_panel_fitting@legacy.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6301<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_panel_fitting@legacy.html> (i915#6301<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>) * igt@kms_pipe_stress@stress-xrgb8888-yftiled: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html> (i915#14712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#14712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712>) * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html> (i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608> / i915#15609<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608> / i915#15609<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-0: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-0.html> (i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-0.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608>) * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5.html> (i915#15609<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15609<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) * igt@kms_plane@pixel-format-yf-tiled-modifier: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html> (i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608> / i915#8825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825>) +1 other test skip * igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-a-plane-0: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-a-plane-0.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-a-plane-0.html> (i915#15608<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608>) * igt@kms_pm_backlight@bad-brightness: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) * igt@kms_pm_dc@dc6-psr: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) * igt@kms_pm_lpsp@kms-lpsp: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html> (i915#9340<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) * igt@kms_prime@basic-crc-hybrid: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +2 other tests skip * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +3 other tests skip * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * igt@kms_psr@fbc-pr-cursor-blt: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-12/igt@kms_psr@fbc-pr-cursor-blt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-13/igt@kms_psr@fbc-pr-cursor-blt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) * igt@kms_psr@fbc-pr-suspend: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_psr@fbc-pr-suspend.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_psr@fbc-pr-suspend.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +2 other tests skip * igt@kms_psr@fbc-psr-sprite-mmap-gtt: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +11 other tests skip * igt@kms_psr@fbc-psr2-cursor-render: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-16/igt@kms_psr@fbc-psr2-cursor-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-dg1-13/igt@kms_psr@fbc-psr2-cursor-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) * igt@kms_setmode@clone-exclusive-crtc: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_setmode@clone-exclusive-crtc.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@perf@per-context-mode-unprivileged: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html> (i915#2435<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2435<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435>) * igt@perf_pmu@rc6-all-gts: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8516<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html> (i915#8516<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_161150v1/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) Build changes * Linux: CI_DRM_17930 -> Patchwork_161150v1 CI-20190529: 20190529 CI_DRM_17930: 241994730989320c926da9f2d0a5ec80b48f993d @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8732: 020b7f0da24d0772e73338791288901d717d95f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_161150v1: 241994730989320c926da9f2d0a5ec80b48f993d @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit [-- Attachment #2: Type: text/html, Size: 202351 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] drm/i915/gvt: Swap read and write checks 2026-02-04 16:19 [PATCH] drm/i915/gvt: Swap read and write checks Jonathan Cavitt ` (2 preceding siblings ...) 2026-02-05 5:22 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-03-17 9:28 ` Jani Nikula 3 siblings, 0 replies; 6+ messages in thread From: Jani Nikula @ 2026-03-17 9:28 UTC (permalink / raw) To: Jonathan Cavitt, intel-gfx; +Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt On Wed, 04 Feb 2026, Jonathan Cavitt <jonathan.cavitt@intel.com> wrote: > The function intel_gvt_i2c_handle_aux_ch_write currently does not > support the DP_AUX_I2C_WRITE operation. Notably, we check if > op & 0x1 == DP_AUX_I2C_WRITE (one), and if it does not, assert that > op & 0x1 == DP_AUX_I2C_READ (zero). This is unnecessary because if > op & 0x1 != 1, then op & 0x1 == 0. But beyond that, it probably makes > more sense to check for the condition that is implemented, rather than > check for the condition that is not. > > Swap the conditions. We can also get rid of the unnecessary drm_WARN_ON > while we're here. > > Suggested-by: Jani Nikula <jani.nikula@intel.com> > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> Thanks for the patch, pushed to drm-intel-next. BR, Jani. > --- > drivers/gpu/drm/i915/gvt/edid.c | 18 ++++++++---------- > 1 file changed, 8 insertions(+), 10 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gvt/edid.c b/drivers/gpu/drm/i915/gvt/edid.c > index 021afff1cd5d..ca5b54466a65 100644 > --- a/drivers/gpu/drm/i915/gvt/edid.c > +++ b/drivers/gpu/drm/i915/gvt/edid.c > @@ -535,16 +535,7 @@ void intel_gvt_i2c_handle_aux_ch_write(struct intel_vgpu *vgpu, > i2c_edid->edid_available = true; > } > } > - } else if ((op & 0x1) == DP_AUX_I2C_WRITE) { > - /* TODO > - * We only support EDID reading from I2C_over_AUX. And > - * we do not expect the index mode to be used. Right now > - * the WRITE operation is ignored. It is good enough to > - * support the gfx driver to do EDID access. > - */ > - } else { > - if (drm_WARN_ON(&i915->drm, (op & 0x1) != DP_AUX_I2C_READ)) > - return; > + } else if ((op & 0x1) == DP_AUX_I2C_READ) { > if (drm_WARN_ON(&i915->drm, msg_length != 4)) > return; > if (i2c_edid->edid_available && i2c_edid->target_selected) { > @@ -553,6 +544,13 @@ void intel_gvt_i2c_handle_aux_ch_write(struct intel_vgpu *vgpu, > aux_data_for_write = (val << 16); > } else > aux_data_for_write = (0xff << 16); > + } else { > + /* TODO > + * We only support EDID reading from I2C_over_AUX. And > + * we do not expect the index mode to be used. Right now > + * the WRITE operation is ignored. It is good enough to > + * support the gfx driver to do EDID access. > + */ > } > /* write the return value in AUX_CH_DATA reg which includes: > * ACK of I2C_WRITE -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-03-17 9:28 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-04 16:19 [PATCH] drm/i915/gvt: Swap read and write checks Jonathan Cavitt 2026-02-04 16:50 ` Jani Nikula 2026-02-04 17:11 ` ✓ i915.CI.BAT: success for " Patchwork 2026-02-05 5:22 ` ✗ i915.CI.Full: failure " Patchwork 2026-02-20 22:56 ` Cavitt, Jonathan 2026-03-17 9:28 ` [PATCH] " Jani Nikula
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox