* [PATCH v2] drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end
@ 2026-01-07 16:29 Jonathan Cavitt
2026-01-07 17:32 ` ✓ i915.CI.BAT: success for drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2) Patchwork
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Jonathan Cavitt @ 2026-01-07 16:29 UTC (permalink / raw)
To: intel-gfx
Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, paulo.r.zanoni,
ville.syrjala, jani.nikula, daniel.vetter
Static analysis reveals a potential integer underflow in
intel_fbc_stolen_end. This can apparently occur if
intel_parent_stolen_area_size returns zero (or, theoretically, any value
less than 2^23), as 2^23 is subtracted from the return value and stored
in a u64. While this doesn't appear to cause any issues due to the use
of the min() function to clamp the return values from the
intel_fbc_stolen_end function, it would be best practice to avoid
undeflowing values like this on principle. So, rework the function to
prevent the underflow from occurring. Note that the underflow at
present would result in the value of intel_fbc_cfb_base_max being
returned at the end of intel_fbc_stolen_end, so just return that if the
value of intel_parent_stolen_area_size is too small.
While we're here, fix the other comments here and modify the execution
path for readability.
v2: (Jani)
- Fix the comments in intel_fbc_stolen_end
- Use check_sub_overflow
- Remove macro that mirrors SZ_8M, as it is now only referenced once
- Misc. formatting fixes
Fixes: a9da512b3ed7 ("drm/i915: avoid the last 8mb of stolen on BDW/SKL")
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 29 +++++++++++++++++-------
1 file changed, 21 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index fef2f35ff1e9..1f3f5237a1c2 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -809,19 +809,32 @@ static u64 intel_fbc_cfb_base_max(struct intel_display *display)
static u64 intel_fbc_stolen_end(struct intel_display *display)
{
- u64 end;
+ u64 end = intel_fbc_cfb_base_max(display);
- /* The FBC hardware for BDW/SKL doesn't have access to the stolen
+ /*
+ * The FBC hardware for BDW/SKL doesn't have access to the stolen
* reserved range size, so it always assumes the maximum (8mb) is used.
* If we enable FBC using a CFB on that memory range we'll get FIFO
- * underruns, even if that range is not reserved by the BIOS. */
+ * underruns, even if that range is not reserved by the BIOS.
+ */
if (display->platform.broadwell ||
- (DISPLAY_VER(display) == 9 && !display->platform.broxton))
- end = intel_parent_stolen_area_size(display) - 8 * 1024 * 1024;
- else
- end = U64_MAX;
+ (DISPLAY_VER(display) == 9 && !display->platform.broxton)) {
+ u64 stolen_area_size = intel_parent_stolen_area_size(display);
+
+ /*
+ * If stolen_area_size is less than SZ_8M, use
+ * intel_fbc_cfb_base_max instead. This should not happen,
+ * so warn if it does.
+ */
+ if (drm_WARN_ON(display->drm,
+ check_sub_overflow(stolen_area_size,
+ SZ_8M, &stolen_area_size)))
+ return end;
+
+ return min(end, stolen_area_size);
+ }
- return min(end, intel_fbc_cfb_base_max(display));
+ return end;
}
static int intel_fbc_min_limit(const struct intel_plane_state *plane_state)
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2)
2026-01-07 16:29 [PATCH v2] drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end Jonathan Cavitt
@ 2026-01-07 17:32 ` Patchwork
2026-01-07 20:49 ` ✗ i915.CI.Full: failure " Patchwork
2026-01-09 13:05 ` [PATCH v2] drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end Jani Nikula
2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-01-07 17:32 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 1703 bytes --]
== Series Details ==
Series: drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2)
URL : https://patchwork.freedesktop.org/series/159319/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_17776 -> Patchwork_159319v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/index.html
Participating hosts (44 -> 40)
------------------------------
Missing (4): bat-dg2-13 bat-dg2-11 fi-snb-2520m bat-adls-6
Known issues
------------
Here are the changes found in Patchwork_159319v2 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [DMESG-FAIL][1] ([i915#12061]) -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
Build changes
-------------
* Linux: CI_DRM_17776 -> Patchwork_159319v2
CI-20190529: 20190529
CI_DRM_17776: 77ca0c5f244b2796408d20cf3c0741094304e09f @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8690: 1022f2615722b105176a8cc4ce102896329b5016 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_159319v2: 77ca0c5f244b2796408d20cf3c0741094304e09f @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/index.html
[-- Attachment #2: Type: text/html, Size: 2288 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2)
2026-01-07 16:29 [PATCH v2] drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end Jonathan Cavitt
2026-01-07 17:32 ` ✓ i915.CI.BAT: success for drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2) Patchwork
@ 2026-01-07 20:49 ` Patchwork
2026-01-21 17:07 ` Cavitt, Jonathan
2026-01-09 13:05 ` [PATCH v2] drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end Jani Nikula
2 siblings, 1 reply; 6+ messages in thread
From: Patchwork @ 2026-01-07 20:49 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 115225 bytes --]
== Series Details ==
Series: drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2)
URL : https://patchwork.freedesktop.org/series/159319/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_17776_full -> Patchwork_159319v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_159319v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_159319v2_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 (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_159319v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gem_contexts:
- shard-tglu: NOTRUN -> [DMESG-FAIL][1] +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@i915_selftest@live@gem_contexts.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-dg1: NOTRUN -> [SKIP][2] +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_content_protection@atomic-dpms-hdcp14.html
New tests
---------
New tests have been introduced between CI_DRM_17776_full and Patchwork_159319v2_full:
### New IGT tests (4) ###
* igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.34] s
* igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.32] s
* igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.32] s
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3:
- Statuses : 1 fail(s)
- Exec time: [120.79] s
Known issues
------------
Here are the changes found in Patchwork_159319v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#3555] / [i915#9323])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][5] ([i915#13008])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#280])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@suspend:
- shard-rkl: [PASS][8] -> [ABORT][9] ([i915#15131])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-4/igt@gem_eio@suspend.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-1/igt@gem_eio@suspend.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#4525]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#3539] / [i915#4852])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#3281]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#4812])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s3:
- shard-rkl: [PASS][14] -> [INCOMPLETE][15] ([i915#13356]) +1 other test incomplete
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-8/igt@gem_exec_suspend@basic-s3.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#4860]) +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#4613]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@gem_lmem_swapping@verify-ccs.html
- shard-glk: NOTRUN -> [SKIP][18] ([i915#4613]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#4613]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#4077]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html
* igt@gem_pread@bench:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#3282]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_pread@bench.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#4270])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#4079])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_render_tiled_blits@basic.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#4885])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#3297]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#3297])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#3297] / [i915#3323])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#3282] / [i915#3297])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_userptr_blits@forbidden-operations.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#2527] / [i915#2856]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#2527] / [i915#2856])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-large:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#2527]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gen9_exec_parse@bb-large.html
* igt@i915_drm_fdinfo@busy-idle@bcs0:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#14073]) +5 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@i915_drm_fdinfo@busy-idle@bcs0.html
* igt@i915_module_load@fault-injection:
- shard-glk: NOTRUN -> [ABORT][33] ([i915#15342] / [i915#15481])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@i915_driver_hw_probe:
- shard-glk: NOTRUN -> [ABORT][34] ([i915#15481])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@fault-injection@i915_driver_hw_probe.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk: NOTRUN -> [DMESG-WARN][35] ([i915#15342])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@load:
- shard-tglu: ([PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58]) -> ([PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [SKIP][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76]) ([i915#14785])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-6/igt@i915_module_load@load.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-8/igt@i915_module_load@load.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-10/igt@i915_module_load@load.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-7/igt@i915_module_load@load.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-9/igt@i915_module_load@load.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-7/igt@i915_module_load@load.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-6/igt@i915_module_load@load.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-4/igt@i915_module_load@load.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-5/igt@i915_module_load@load.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-10/igt@i915_module_load@load.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-2/igt@i915_module_load@load.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-3/igt@i915_module_load@load.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-4/igt@i915_module_load@load.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-3/igt@i915_module_load@load.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-9/igt@i915_module_load@load.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-7/igt@i915_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-10/igt@i915_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-5/igt@i915_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-6/igt@i915_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-4/igt@i915_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-9/igt@i915_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-8/igt@i915_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-3/igt@i915_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@i915_module_load@load.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@i915_module_load@load.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@i915_module_load@load.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-7/igt@i915_module_load@load.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-7/igt@i915_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-6/igt@i915_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@i915_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-4/igt@i915_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-10/igt@i915_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-4/igt@i915_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-2/igt@i915_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-6/igt@i915_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-6/igt@i915_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@i915_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-5/igt@i915_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-7/igt@i915_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@i915_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-4/igt@i915_module_load@load.html
- shard-glk: ([PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87]) -> ([PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [SKIP][95], [PASS][96], [PASS][97])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@i915_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk6/igt@i915_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk1/igt@i915_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk9/igt@i915_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk6/igt@i915_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk9/igt@i915_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@i915_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk1/igt@i915_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@i915_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk9/igt@i915_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk6/igt@i915_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk6/igt@i915_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@i915_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk6/igt@i915_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@i915_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk9/igt@i915_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@i915_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk9/igt@i915_module_load@load.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#8399])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#11681] / [i915#6621])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#6245])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#5723])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [PASS][102] -> [DMESG-FAIL][103] ([i915#12061]) +1 other test dmesg-fail
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-6/igt@i915_selftest@live@workarounds.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-8/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@sysfs-reader:
- shard-rkl: [PASS][104] -> [INCOMPLETE][105] ([i915#4817])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@i915_suspend@sysfs-reader.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@i915_suspend@sysfs-reader.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4212])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#4212])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#1769] / [i915#3555])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][109] +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#5286]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#5286]) +5 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [PASS][112] -> [FAIL][113] ([i915#5138])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5286]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-0:
- shard-dg1: [PASS][115] -> [DMESG-WARN][116] ([i915#4423]) +2 other tests dmesg-warn
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-14/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5190])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#6095]) +206 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [SKIP][120] +26 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk10/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#6095]) +34 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#10307] / [i915#6095]) +149 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#12313])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#6095]) +64 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#6095]) +65 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#6095]) +35 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#14098] / [i915#6095]) +32 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][128] ([i915#12796]) +1 other test incomplete
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#12313])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#11151] / [i915#7828]) +6 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-negative:
- shard-glk: NOTRUN -> [SKIP][132] +172 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#11151] / [i915#7828]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828]) +5 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#15523]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-6/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-hdmi-a-3.html
* {igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3} (NEW):
- shard-dg2: NOTRUN -> [FAIL][136] ([i915#7173])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3.html
* igt@kms_content_protection@dp-mst-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#15330])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_content_protection@dp-mst-suspend-resume.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#6944] / [i915#9424]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#6944])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#3555])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: NOTRUN -> [FAIL][141] ([i915#13566]) +1 other test fail
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-256x85.html
- shard-rkl: [PASS][142] -> [FAIL][143] ([i915#13566])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][144] ([i915#13566]) +3 other tests fail
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#13049]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3555])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#13049])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][148] ([i915#13566]) +1 other test fail
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#3555]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#13049])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][151]
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#4103])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#3804])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#13749])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#13748])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#13748])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#13707])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#3840])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#3840])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fb_coherency@memset-crc@mmap-gtt:
- shard-glk: NOTRUN -> [CRASH][161] ([i915#15351]) +1 other test crash
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk9/igt@kms_fb_coherency@memset-crc@mmap-gtt.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#9337])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#9934]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#8381])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3637] / [i915#9934]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [PASS][166] -> [TIMEOUT][167] ([i915#14033]) +1 other test timeout
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-snb4/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-plain-flip:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#3637] / [i915#9934]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#9934])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#8381])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#2587] / [i915#2672]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#2587] / [i915#2672]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#2672] / [i915#3555])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#2587] / [i915#2672] / [i915#3555])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#2672] / [i915#3555]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#2672] / [i915#3555]) +4 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#15104])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [PASS][179] -> [FAIL][180] ([i915#15389] / [i915#6880])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#8708]) +5 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
- shard-tglu: NOTRUN -> [SKIP][182] +35 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#1825]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#15102] / [i915#3023])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][185] +16 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][186] +43 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#9766])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#15102]) +16 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#15102] / [i915#3458]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#8708]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#5354]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#15102] / [i915#3458]) +7 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#15102]) +13 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: [PASS][194] -> [SKIP][195] ([i915#3555] / [i915#8228])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_hdr@bpc-switch.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#12713])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8228])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8228])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: [PASS][200] -> [SKIP][201] ([i915#15459])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#15458]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#15458])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#13522])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#1839]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#6301])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][207] ([i915#13026]) +1 other test incomplete
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#13958])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#13958])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#14259]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#15329]) +4 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#9812]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#9685]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#9685])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: NOTRUN -> [FAIL][215] ([i915#9295])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#15073])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: [PASS][217] -> [SKIP][218] ([i915#15073]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#15073])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][220] -> [SKIP][221] ([i915#15073]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][222] -> [SKIP][223] ([i915#15073]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#15403])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [PASS][225] -> [INCOMPLETE][226] ([i915#14419])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-11/igt@kms_pm_rpm@system-suspend-idle.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: NOTRUN -> [INCOMPLETE][227] ([i915#14419])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#6524])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#6524])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#11520]) +5 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-glk10: NOTRUN -> [SKIP][231] ([i915#11520])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][232] ([i915#11520]) +5 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#11520]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#11520])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#11520]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#11520]) +5 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#9683])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#1072] / [i915#9732]) +8 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#9732]) +13 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#9732]) +14 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_psr@psr2-sprite-render:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#1072] / [i915#9732]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_psr@psr2-sprite-render.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [DMESG-FAIL][242] ([i915#118])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][243] ([i915#15500])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#3555]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#8623])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg1: [PASS][246] -> [FAIL][247] ([i915#9196])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][248] ([i915#9196])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3.html
* igt@kms_vrr@negative-basic:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#9906])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#9906]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#2433])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@module-unload:
- shard-tglu: NOTRUN -> [FAIL][252] ([i915#14433])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@perf_pmu@module-unload.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#3708] / [i915#4077])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf@vf-1:
- shard-tglu-1: NOTRUN -> [FAIL][254] ([i915#12910]) +18 other tests fail
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html
#### Possible fixes ####
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][255] ([i915#11713]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-5/igt@gem_exec_big@single.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@gem_exec_big@single.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-glk: [INCOMPLETE][257] ([i915#13356] / [i915#14586]) -> [PASS][258]
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk9/igt@gem_workarounds@suspend-resume-fd.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk10: [ABORT][259] ([i915#5566]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk10/igt@gen9_exec_parse@allowed-all.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk10/igt@gen9_exec_parse@allowed-all.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [WARN][261] ([i915#13790] / [i915#2681]) -> [PASS][262] +1 other test pass
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-fence.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@gem-execbuf-stress@lmem0:
- shard-dg1: [DMESG-WARN][263] ([i915#4423]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-14/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg1: [ABORT][265] ([i915#13562]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][267] ([i915#5138]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg2: [SKIP][269] ([i915#13749]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-1/igt@kms_dp_link_training@non-uhbr-sst.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-dg2: [FAIL][271] ([i915#15389] / [i915#6880]) -> [PASS][272] +1 other test pass
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [SKIP][273] ([i915#6953]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg1: [SKIP][275] ([i915#15073]) -> [PASS][276] +2 other tests pass
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: [SKIP][277] ([i915#14544] / [i915#8411]) -> [SKIP][278] ([i915#8411]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: [SKIP][279] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][280] ([i915#3555] / [i915#9323])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][281] ([i915#14544] / [i915#9323]) -> [SKIP][282] ([i915#9323])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: [SKIP][283] ([i915#9323]) -> [SKIP][284] ([i915#14544] / [i915#9323])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_ccs@suspend-resume.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: [SKIP][285] ([i915#14544] / [i915#8562]) -> [SKIP][286] ([i915#8562])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: [SKIP][287] ([i915#280]) -> [SKIP][288] ([i915#14544] / [i915#280])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: [SKIP][289] ([i915#4525]) -> [SKIP][290] ([i915#14544] / [i915#4525])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-rkl: [SKIP][291] ([i915#14544] / [i915#6334]) -> [SKIP][292] ([i915#6334]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_exec_capture@capture-invisible.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-rkl: [SKIP][293] ([i915#14544] / [i915#3281]) -> [SKIP][294] ([i915#3281]) +3 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-softpin:
- shard-rkl: [SKIP][295] ([i915#3281]) -> [SKIP][296] ([i915#14544] / [i915#3281]) +5 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_exec_reloc@basic-softpin.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][297] ([i915#14544] / [i915#4613] / [i915#7582]) -> [SKIP][298] ([i915#4613] / [i915#7582])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-rkl: [SKIP][299] ([i915#4613]) -> [SKIP][300] ([i915#14544] / [i915#4613]) +2 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-multi.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: [SKIP][301] ([i915#14544] / [i915#4613]) -> [SKIP][302] ([i915#4613]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_lmem_swapping@verify.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_lmem_swapping@verify.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: [SKIP][303] ([i915#3282]) -> [SKIP][304] ([i915#14544] / [i915#3282]) +3 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: [SKIP][305] ([i915#14544] / [i915#3282]) -> [SKIP][306] ([i915#3282]) +2 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: [SKIP][307] ([i915#13717] / [i915#14544]) -> [SKIP][308] ([i915#13717])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: [SKIP][309] ([i915#3297]) -> [SKIP][310] ([i915#14544] / [i915#3297]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_userptr_blits@coherency-unsync.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: [SKIP][311] ([i915#14544] / [i915#3297]) -> [SKIP][312] ([i915#3297]) +2 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: [SKIP][313] -> [SKIP][314] ([i915#14544]) +9 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@gen7_exec_parse@chained-batch.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: [SKIP][315] ([i915#14544] / [i915#2527]) -> [SKIP][316] ([i915#2527]) +2 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: [SKIP][317] ([i915#2527]) -> [SKIP][318] ([i915#14544] / [i915#2527]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gen9_exec_parse@batch-invalid-length.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: [SKIP][319] ([i915#14544] / [i915#8399]) -> [SKIP][320] ([i915#8399])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: [SKIP][321] ([i915#14498] / [i915#14544]) -> [SKIP][322] ([i915#14498])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-dg2: [ABORT][323] -> [SKIP][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][325] ([i915#6245]) -> [SKIP][326] ([i915#14544] / [i915#6245])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@i915_query@hwconfig_table.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@i915_query@hwconfig_table.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: [SKIP][327] ([i915#12454] / [i915#12712] / [i915#14544]) -> [SKIP][328] ([i915#12454] / [i915#12712])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: [SKIP][329] ([i915#14544] / [i915#9531]) -> [SKIP][330] ([i915#9531])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: [SKIP][331] ([i915#1769] / [i915#3555]) -> [SKIP][332] ([i915#14544] / [i915#1769] / [i915#3555])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][333] ([i915#5286]) -> [SKIP][334] ([i915#14544] / [i915#5286]) +3 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][335] ([i915#14544] / [i915#5286]) -> [SKIP][336] ([i915#5286]) +3 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][337] ([i915#14544] / [i915#3638]) -> [SKIP][338] ([i915#3638])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][339] ([i915#3638]) -> [SKIP][340] ([i915#14544] / [i915#3638]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][341] ([i915#14098] / [i915#6095]) -> [SKIP][342] ([i915#14098] / [i915#14544] / [i915#6095]) +25 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][343] ([i915#12313]) -> [SKIP][344] ([i915#12313] / [i915#14544])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][345] ([i915#6095]) -> [SKIP][346] ([i915#14544] / [i915#6095]) +24 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/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-yf-tiled-ccs:
- shard-rkl: [SKIP][347] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][348] ([i915#14098] / [i915#6095]) +9 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][349] ([i915#12313] / [i915#14544]) -> [SKIP][350] ([i915#12313]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-rkl: [SKIP][351] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][352] ([i915#11151] / [i915#7828]) +5 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-single.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: [SKIP][353] ([i915#11151] / [i915#7828]) -> [SKIP][354] ([i915#11151] / [i915#14544] / [i915#7828]) +5 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-dg2: [SKIP][355] -> [FAIL][356] ([i915#7173])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-1/igt@kms_content_protection@atomic-dpms-hdcp14.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][357] ([i915#14544] / [i915#6944] / [i915#9424]) -> [SKIP][358] ([i915#6944] / [i915#9424])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_content_protection@mei-interface.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_content_protection@mei-interface.html
- shard-dg1: [SKIP][359] ([i915#9433]) -> [SKIP][360] ([i915#6944] / [i915#9424])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-12/igt@kms_content_protection@mei-interface.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-14/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@suspend-resume:
- shard-rkl: [SKIP][361] ([i915#6944]) -> [SKIP][362] ([i915#14544] / [i915#6944])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_content_protection@suspend-resume.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][363] ([i915#6944] / [i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][364] ([i915#6944] / [i915#7118] / [i915#9424])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-11/igt@kms_content_protection@type1.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-6/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-rkl: [SKIP][365] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][366] ([i915#6944] / [i915#7118] / [i915#9424]) +2 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_content_protection@uevent.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][367] ([i915#13049] / [i915#14544]) -> [SKIP][368] ([i915#13049]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: [SKIP][369] ([i915#3555]) -> [SKIP][370] ([i915#14544] / [i915#3555]) +3 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: [SKIP][371] ([i915#14544] / [i915#9723]) -> [SKIP][372] ([i915#9723])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: [SKIP][373] ([i915#13749]) -> [SKIP][374] ([i915#13749] / [i915#14544])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-sst.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: [SKIP][375] ([i915#13748]) -> [SKIP][376] ([i915#13748] / [i915#14544])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_dp_link_training@uhbr-mst.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: [SKIP][377] ([i915#13707] / [i915#14544]) -> [SKIP][378] ([i915#13707])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: [SKIP][379] ([i915#14544] / [i915#3840]) -> [SKIP][380] ([i915#3840])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: [SKIP][381] ([i915#3555] / [i915#3840]) -> [SKIP][382] ([i915#14544] / [i915#3555] / [i915#3840])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][383] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][384] ([i915#3555] / [i915#3840])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][385] ([i915#3955]) -> [SKIP][386] ([i915#14544] / [i915#3955])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][387] ([i915#14544] / [i915#3955]) -> [SKIP][388] ([i915#3955])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][389] ([i915#14544] / [i915#9934]) -> [SKIP][390] ([i915#9934]) +4 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-rkl: [SKIP][391] ([i915#9934]) -> [SKIP][392] ([i915#14544] / [i915#9934]) +2 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][393] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][394] ([i915#12745] / [i915#4839])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][395] ([i915#12314] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][396] ([i915#4839])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk6/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: [SKIP][397] ([i915#14544] / [i915#2672]) -> [SKIP][398] ([i915#2672]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: [SKIP][399] ([i915#2672]) -> [SKIP][400] ([i915#14544] / [i915#2672]) +2 other tests skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: [SKIP][401] ([i915#14544] / [i915#2672] / [i915#3555]) -> [SKIP][402] ([i915#2672] / [i915#3555]) +1 other test skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: [SKIP][403] ([i915#2672] / [i915#3555]) -> [SKIP][404] ([i915#14544] / [i915#2672] / [i915#3555]) +2 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][405] ([i915#1825]) -> [SKIP][406] ([i915#14544] / [i915#1825]) +19 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][407] ([i915#15102]) -> [SKIP][408] ([i915#14544] / [i915#15102]) +2 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-dg2: [SKIP][409] ([i915#15102] / [i915#3458]) -> [SKIP][410] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][411] ([i915#14544]) -> [SKIP][412] +14 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: [SKIP][413] ([i915#9766]) -> [SKIP][414] ([i915#14544] / [i915#9766])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][415] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][416] ([i915#15102] / [i915#3458]) +2 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-rkl: [SKIP][417] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][418] ([i915#15102] / [i915#3023]) +15 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg1: [SKIP][419] ([i915#4423]) -> [SKIP][420]
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][421] ([i915#14544] / [i915#1825]) -> [SKIP][422] ([i915#1825]) +23 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: [SKIP][423] ([i915#15102] / [i915#3023]) -> [SKIP][424] ([i915#14544] / [i915#15102] / [i915#3023]) +10 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][425] ([i915#12713]) -> [SKIP][426] ([i915#13331] / [i915#14544])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_hdr@brightness-with-hdr.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: [SKIP][427] ([i915#12713]) -> [SKIP][428] ([i915#1187] / [i915#12713])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-19/igt@kms_hdr@brightness-with-hdr.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: [SKIP][429] ([i915#13688]) -> [SKIP][430] ([i915#13688] / [i915#14544])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][431] ([i915#15458]) -> [SKIP][432] ([i915#14544] / [i915#15458])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_joiner@basic-ultra-joiner.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: [SKIP][433] ([i915#14544] / [i915#15459]) -> [SKIP][434] ([i915#15459])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][435] ([i915#1839] / [i915#4816]) -> [SKIP][436] ([i915#14544] / [i915#1839] / [i915#4816])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-rkl: [SKIP][437] ([i915#14544] / [i915#14712]) -> [SKIP][438] ([i915#14712])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: [SKIP][439] ([i915#14544] / [i915#3555]) -> [SKIP][440] ([i915#3555]) +5 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][441] ([i915#13958]) -> [SKIP][442] ([i915#13958] / [i915#14544]) +1 other test skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-4.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: [SKIP][443] ([i915#13958] / [i915#14544]) -> [SKIP][444] ([i915#13958])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: [SKIP][445] ([i915#15329]) -> [SKIP][446] ([i915#14544] / [i915#15329]) +7 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][447] ([i915#3828]) -> [SKIP][448] ([i915#9340])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][449] ([i915#15073]) -> [SKIP][450] ([i915#14544] / [i915#15073])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: [SKIP][451] ([i915#6524]) -> [SKIP][452] ([i915#14544] / [i915#6524])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][453] ([i915#11520] / [i915#14544]) -> [SKIP][454] ([i915#11520]) +4 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: [SKIP][455] ([i915#11520]) -> [SKIP][456] ([i915#11520] / [i915#14544]) +3 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: [SKIP][457] ([i915#14544] / [i915#9683]) -> [SKIP][458] ([i915#9683])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: [SKIP][459] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][460] ([i915#1072] / [i915#9732]) +14 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-dg1: [SKIP][461] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][462] ([i915#1072] / [i915#9732])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-12/igt@kms_psr@psr-cursor-plane-move.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: [SKIP][463] ([i915#1072] / [i915#9732]) -> [SKIP][464] ([i915#1072] / [i915#14544] / [i915#9732]) +11 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg1: [SKIP][465] ([i915#5289]) -> [SKIP][466] ([i915#4423] / [i915#5289])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-rkl: [SKIP][467] ([i915#14544] / [i915#8623]) -> [SKIP][468] ([i915#8623])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: [SKIP][469] ([i915#8623]) -> [SKIP][470] ([i915#14544] / [i915#8623])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf:
- shard-rkl: [SKIP][471] ([i915#11920] / [i915#14544]) -> [SKIP][472] ([i915#11920])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_vrr@lobf.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: [SKIP][473] ([i915#9906]) -> [SKIP][474] ([i915#14544] / [i915#9906]) +2 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-virtual.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: [SKIP][475] ([i915#14544] / [i915#3708]) -> [SKIP][476] ([i915#3708])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: [SKIP][477] ([i915#9917]) -> [SKIP][478] ([i915#14544] / [i915#9917])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@sriov_basic@bind-unbind-vf.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14785]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14785
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15351
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15523]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15523
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#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#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#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#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#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_17776 -> Patchwork_159319v2
CI-20190529: 20190529
CI_DRM_17776: 77ca0c5f244b2796408d20cf3c0741094304e09f @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8690: 1022f2615722b105176a8cc4ce102896329b5016 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_159319v2: 77ca0c5f244b2796408d20cf3c0741094304e09f @ 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_159319v2/index.html
[-- Attachment #2: Type: text/html, Size: 155661 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end
2026-01-07 16:29 [PATCH v2] drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end Jonathan Cavitt
2026-01-07 17:32 ` ✓ i915.CI.BAT: success for drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2) Patchwork
2026-01-07 20:49 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-01-09 13:05 ` Jani Nikula
2 siblings, 0 replies; 6+ messages in thread
From: Jani Nikula @ 2026-01-09 13:05 UTC (permalink / raw)
To: Jonathan Cavitt, intel-gfx
Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, paulo.r.zanoni,
ville.syrjala, daniel.vetter
On Wed, 07 Jan 2026, Jonathan Cavitt <jonathan.cavitt@intel.com> wrote:
> Static analysis reveals a potential integer underflow in
> intel_fbc_stolen_end. This can apparently occur if
> intel_parent_stolen_area_size returns zero (or, theoretically, any value
> less than 2^23), as 2^23 is subtracted from the return value and stored
> in a u64. While this doesn't appear to cause any issues due to the use
> of the min() function to clamp the return values from the
> intel_fbc_stolen_end function, it would be best practice to avoid
> undeflowing values like this on principle. So, rework the function to
> prevent the underflow from occurring. Note that the underflow at
> present would result in the value of intel_fbc_cfb_base_max being
> returned at the end of intel_fbc_stolen_end, so just return that if the
> value of intel_parent_stolen_area_size is too small.
>
> While we're here, fix the other comments here and modify the execution
> path for readability.
>
> v2: (Jani)
> - Fix the comments in intel_fbc_stolen_end
> - Use check_sub_overflow
> - Remove macro that mirrors SZ_8M, as it is now only referenced once
> - Misc. formatting fixes
>
> Fixes: a9da512b3ed7 ("drm/i915: avoid the last 8mb of stolen on BDW/SKL")
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_fbc.c | 29 +++++++++++++++++-------
> 1 file changed, 21 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> index fef2f35ff1e9..1f3f5237a1c2 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> @@ -809,19 +809,32 @@ static u64 intel_fbc_cfb_base_max(struct intel_display *display)
>
> static u64 intel_fbc_stolen_end(struct intel_display *display)
> {
> - u64 end;
> + u64 end = intel_fbc_cfb_base_max(display);
>
> - /* The FBC hardware for BDW/SKL doesn't have access to the stolen
> + /*
> + * The FBC hardware for BDW/SKL doesn't have access to the stolen
> * reserved range size, so it always assumes the maximum (8mb) is used.
> * If we enable FBC using a CFB on that memory range we'll get FIFO
> - * underruns, even if that range is not reserved by the BIOS. */
> + * underruns, even if that range is not reserved by the BIOS.
> + */
> if (display->platform.broadwell ||
> - (DISPLAY_VER(display) == 9 && !display->platform.broxton))
> - end = intel_parent_stolen_area_size(display) - 8 * 1024 * 1024;
> - else
> - end = U64_MAX;
> + (DISPLAY_VER(display) == 9 && !display->platform.broxton)) {
> + u64 stolen_area_size = intel_parent_stolen_area_size(display);
> +
> + /*
> + * If stolen_area_size is less than SZ_8M, use
> + * intel_fbc_cfb_base_max instead. This should not happen,
> + * so warn if it does.
> + */
> + if (drm_WARN_ON(display->drm,
> + check_sub_overflow(stolen_area_size,
> + SZ_8M, &stolen_area_size)))
> + return end;
> +
> + return min(end, stolen_area_size);
> + }
>
> - return min(end, intel_fbc_cfb_base_max(display));
> + return end;
> }
>
> static int intel_fbc_min_limit(const struct intel_plane_state *plane_state)
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: ✗ i915.CI.Full: failure for drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2)
2026-01-07 20:49 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-01-21 17:07 ` Cavitt, Jonathan
2026-01-21 18:11 ` Matt Roper
0 siblings, 1 reply; 6+ messages in thread
From: Cavitt, Jonathan @ 2026-01-21 17:07 UTC (permalink / raw)
To: intel-gfx@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 130481 bytes --]
These regressions are unrelated: the changes implemented to the target function
do not result in the function behaving mechanically differently.
-Jonathan Cavitt
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Wednesday, January 7, 2026 12:50 PM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: ✗ i915.CI.Full: failure for drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2)
Patch Details
Series:
drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2)
URL:
https://patchwork.freedesktop.org/series/159319/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/index.html
CI Bug Log - changes from CI_DRM_17776_full -> Patchwork_159319v2_full
Summary
FAILURE
Serious unknown changes coming with Patchwork_159319v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_159319v2_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 (9 -> 9)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in Patchwork_159319v2_full:
IGT changes
Possible regressions
* igt@i915_selftest@live@gem_contexts:
* shard-tglu: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@i915_selftest@live@gem_contexts.html> +1 other test dmesg-fail
* igt@kms_content_protection@atomic-dpms-hdcp14:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_content_protection@atomic-dpms-hdcp14.html> +1 other test skip
New tests
New tests have been introduced between CI_DRM_17776_full and Patchwork_159319v2_full:
New IGT tests (4)
* igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-a-hdmi-a-2:
* Statuses : 1 pass(s)
* Exec time: [0.34] s
* igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-b-hdmi-a-2:
* Statuses : 1 pass(s)
* Exec time: [0.32] s
* igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-c-hdmi-a-2:
* Statuses : 1 pass(s)
* Exec time: [0.32] s
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3:
* Statuses : 1 fail(s)
* Exec time: [120.79] s
Known issues
Here are the changes found in Patchwork_159319v2_full that come from known issues:
IGT changes
Issues hit
* igt@api_intel_bb@blit-reloc-keep-cache:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@api_intel_bb@blit-reloc-keep-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
* igt@gem_ccs@ctrl-surf-copy:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/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>)
* igt@gem_ccs@large-ctrl-surf-copy:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@gem_ccs@large-ctrl-surf-copy.html> (i915#13008<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008>)
* igt@gem_ccs@suspend-resume:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gem_ccs@suspend-resume.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
* igt@gem_ctx_sseu@invalid-sseu:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
* igt@gem_eio@suspend:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-4/igt@gem_eio@suspend.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-1/igt@gem_eio@suspend.html> (i915#15131<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131>)
* igt@gem_exec_balancer@parallel-keep-in-fence:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@gem_exec_balancer@parallel-keep-in-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) +1 other test skip
* igt@gem_exec_flush@basic-wb-pro-default:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_exec_flush@basic-wb-pro-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>)
* igt@gem_exec_reloc@basic-gtt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_exec_reloc@basic-gtt.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +4 other tests skip
* igt@gem_exec_schedule@semaphore-power:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_exec_schedule@semaphore-power.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
* igt@gem_exec_suspend@basic-s3:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-8/igt@gem_exec_suspend@basic-s3.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html> (i915#13356<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) +1 other test incomplete
* igt@gem_fenced_exec_thrash@no-spare-fences:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) +4 other tests skip
* igt@gem_lmem_swapping@verify-ccs:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip
* shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip
* igt@gem_lmem_swapping@verify-random:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other tests skip
* igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +3 other tests skip
* igt@gem_pread@bench:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_pread@bench.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip
* igt@gem_pxp@reject-modify-context-protection-on:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-on.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
* igt@gem_render_tiled_blits@basic:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_render_tiled_blits@basic.html> (i915#4079<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>)
* igt@gem_softpin@evict-snoop-interruptible:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_softpin@evict-snoop-interruptible.html> (i915#4885<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885>)
* igt@gem_userptr_blits@coherency-sync:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +2 other tests skip
* igt@gem_userptr_blits@create-destroy-unsync:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_userptr_blits@create-destroy-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
* igt@gem_userptr_blits@dmabuf-sync:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#3323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>)
* igt@gem_userptr_blits@forbidden-operations:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/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@gen9_exec_parse@basic-rejected-ctx-param:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +1 other test skip
* igt@gen9_exec_parse@batch-invalid-length:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gen9_exec_parse@batch-invalid-length.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
* igt@gen9_exec_parse@bb-large:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gen9_exec_parse@bb-large.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +1 other test skip
* igt@i915_drm_fdinfo@busy-idle@bcs0:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@i915_drm_fdinfo@busy-idle@bcs0.html> (i915#14073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) +5 other tests skip
* igt@i915_module_load@fault-injection:
* shard-glk: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@fault-injection.html> (i915#15342<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342> / i915#15481<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481>)
* igt@i915_module_load@fault-injection@i915_driver_hw_probe:
* shard-glk: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@fault-injection@i915_driver_hw_probe.html> (i915#15481<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481>)
* igt@i915_module_load@fault-injection@intel_connector_register:
* shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@fault-injection@intel_connector_register.html> (i915#15342<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342>)
* igt@i915_module_load@load:
* shard-tglu: (PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-10/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-10/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-2/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-10/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-3/igt@i915_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-6/igt@i915_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-10/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-2/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-4/igt@i915_module_load@load.html>) (i915#14785<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14785>)
* shard-glk: (PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk6/igt@i915_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@i915_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk9/igt@i915_module_load@load.html>)
* igt@i915_pm_freq_api@freq-reset-multiple:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/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_rps@min-max-config-loaded:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@i915_pm_rps@min-max-config-loaded.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> / i915#6621<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>)
* igt@i915_query@hwconfig_table:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@i915_query@hwconfig_table.html> (i915#6245<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>)
* igt@i915_query@test-query-geometry-subslices:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@i915_query@test-query-geometry-subslices.html> (i915#5723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>)
* igt@i915_selftest@live@workarounds:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-6/igt@i915_selftest@live@workarounds.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-8/igt@i915_selftest@live@workarounds.html> (i915#12061<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061>) +1 other test dmesg-fail
* igt@i915_suspend@sysfs-reader:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@i915_suspend@sysfs-reader.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@i915_suspend@sysfs-reader.html> (i915#4817<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>)
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html> +1 other test skip
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +5 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> (i915#5138<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>)
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip
* igt@kms_big_fb@x-tiled-8bpp-rotate-0:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-14/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) +2 other tests dmesg-warn
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) +1 other test skip
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +206 other tests skip
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
* shard-glk10: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk10/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html> +26 other tests skip
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +34 other tests skip
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-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>) +149 other tests skip
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-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-1:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +64 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +65 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +35 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@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>) +32 other tests skip
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
* shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html> (i915#12796<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796>) +1 other test incomplete
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#10434<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +2 other tests skip
* igt@kms_chamelium_audio@hdmi-audio-edid:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +6 other tests skip
* igt@kms_chamelium_color@ctm-negative:
* shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@kms_chamelium_color@ctm-negative.html> +172 other tests skip
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-fast.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other tests skip
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-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>) +5 other tests skip
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-6/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-hdmi-a-3.html> (i915#15523<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15523>) +3 other tests skip
* {igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3} (NEW):
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/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>)
* igt@kms_content_protection@dp-mst-suspend-resume:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_content_protection@dp-mst-suspend-resume.html> (i915#15330<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>)
* igt@kms_content_protection@lic-type-0:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_content_protection@lic-type-0.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) +1 other test skip
* igt@kms_content_protection@suspend-resume:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_content_protection@suspend-resume.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>)
* igt@kms_cursor_crc@cursor-offscreen-max-size:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-max-size.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
* igt@kms_cursor_crc@cursor-onscreen-256x85:
* shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-256x85.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +1 other test fail
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
* shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +3 other tests fail
* igt@kms_cursor_crc@cursor-onscreen-512x170:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +1 other test skip
* igt@kms_cursor_crc@cursor-random-32x32:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
* igt@kms_cursor_crc@cursor-random-512x512:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
* shard-tglu-1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +1 other test fail
* igt@kms_cursor_crc@cursor-sliding-32x10:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip
* igt@kms_cursor_crc@cursor-sliding-512x170:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html>
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
* 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_159319v2/shard-rkl-3/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_link_training@non-uhbr-mst:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>)
* igt@kms_dp_link_training@uhbr-mst:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html> (i915#13748<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>)
* igt@kms_dp_link_training@uhbr-sst:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_dp_link_training@uhbr-sst.html> (i915#13748<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>)
* igt@kms_dp_linktrain_fallback@dp-fallback:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_dp_linktrain_fallback@dp-fallback.html> (i915#13707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>)
* igt@kms_dsc@dsc-basic:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
* igt@kms_dsc@dsc-with-bpc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/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_dsc@dsc-with-formats:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
* igt@kms_fb_coherency@memset-crc@mmap-gtt:
* shard-glk: NOTRUN -> CRASH<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk9/igt@kms_fb_coherency@memset-crc@mmap-gtt.html> (i915#15351<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15351>) +1 other test crash
* igt@kms_feature_discovery@dp-mst:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html> (i915#9337<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337>)
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-on-nop.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other tests skip
* igt@kms_flip@2x-flip-vs-fences:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences.html> (i915#8381<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>)
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other tests skip
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
* shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-snb4/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html> (i915#14033<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033>) +1 other test timeout
* igt@kms_flip@2x-plain-flip:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_flip@2x-plain-flip.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other tests skip
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
* igt@kms_flip@flip-vs-fences:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_flip@flip-vs-fences.html> (i915#8381<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>)
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +4 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html> (i915#15104<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104>)
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html> (i915#15389<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389> / i915#6880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>)
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +5 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html> +35 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +2 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html> +16 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html> +43 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_159319v2/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-offscreen-pri-shrfb-draw-mmap-cpu:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +16 other tests skip
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +1 other test skip
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +1 other test skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +3 other tests skip
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +7 other tests skip
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +13 other tests skip
* igt@kms_hdr@bpc-switch:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_hdr@bpc-switch.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/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>)
* igt@kms_hdr@brightness-with-hdr:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>)
* igt@kms_hdr@invalid-metadata-sizes:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/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>) +1 other test skip
* igt@kms_hdr@static-toggle:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_hdr@static-toggle.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
* igt@kms_hdr@static-toggle-suspend:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_hdr@static-toggle-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
* igt@kms_joiner@basic-force-big-joiner:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-6/igt@kms_joiner@basic-force-big-joiner.html> (i915#15459<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>)
* igt@kms_joiner@basic-force-ultra-joiner:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_joiner@basic-force-ultra-joiner.html> (i915#15458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>) +1 other test skip
* igt@kms_joiner@basic-ultra-joiner:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html> (i915#15458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>)
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html> (i915#13522<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522>)
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) +1 other test skip
* igt@kms_panel_fitting@legacy:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_panel_fitting@legacy.html> (i915#6301<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
* igt@kms_plane@plane-panning-bottom-right-suspend:
* shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend.html> (i915#13026<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026>) +1 other test incomplete
* igt@kms_plane_multiple@2x-tiling-x:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
* igt@kms_plane_multiple@2x-tiling-yf:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_plane_multiple@2x-tiling-yf.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
* igt@kms_plane_multiple@tiling-yf:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_plane_multiple@tiling-yf.html> (i915#14259<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>) +1 other test skip
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html> (i915#15329<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>) +4 other tests skip
* igt@kms_pm_backlight@fade-with-suspend:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html> (i915#9812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>) +1 other test skip
* igt@kms_pm_dc@dc3co-vpb-simulation:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_pm_dc@dc3co-vpb-simulation.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) +1 other test skip
* igt@kms_pm_dc@dc5-psr:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_pm_dc@dc5-psr.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
* igt@kms_pm_dc@dc6-dpms:
* shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html> (i915#9295<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295>)
* igt@kms_pm_rpm@modeset-lpsp:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) +1 other test skip
* igt@kms_pm_rpm@modeset-non-lpsp:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) +1 other test skip
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/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_pm_rpm@package-g7:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_pm_rpm@package-g7.html> (i915#15403<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403>)
* igt@kms_pm_rpm@system-suspend-idle:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-11/igt@kms_pm_rpm@system-suspend-idle.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_pm_rpm@system-suspend-idle.html> (i915#14419<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419>)
* igt@kms_pm_rpm@system-suspend-modeset:
* shard-rkl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html> (i915#14419<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419>)
* igt@kms_prime@basic-crc-vgem:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_prime@basic-crc-vgem.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_159319v2/shard-tglu-8/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-sf:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
* shard-glk10: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
* shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +2 other tests skip
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +1 other test skip
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip
* igt@kms_psr2_su@frontbuffer-xrgb8888:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
* igt@kms_psr@fbc-pr-no-drrs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_psr@fbc-pr-no-drrs.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +8 other tests skip
* igt@kms_psr@fbc-psr-no-drrs:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_psr@fbc-psr-no-drrs.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +13 other tests skip
* igt@kms_psr@fbc-psr-primary-render:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_psr@fbc-psr-primary-render.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +14 other tests skip
* igt@kms_psr@psr2-sprite-render:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_psr@psr2-sprite-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +2 other tests skip
* igt@kms_rotation_crc@multiplane-rotation:
* shard-glk: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@kms_rotation_crc@multiplane-rotation.html> (i915#118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118>)
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
* shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html> (i915#15500<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500>)
* igt@kms_scaling_modes@scaling-mode-center:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-center.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
* igt@kms_universal_plane@cursor-fb-leak:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_universal_plane@cursor-fb-leak.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>)
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3:
* shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>)
* igt@kms_vrr@negative-basic:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
* igt@kms_vrr@seamless-rr-switch-virtual:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip
* igt@perf@unprivileged-single-ctx-counters:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@perf@unprivileged-single-ctx-counters.html> (i915#2433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433>)
* igt@perf_pmu@module-unload:
* shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@perf_pmu@module-unload.html> (i915#14433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433>)
* igt@prime_vgem@coherency-gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@prime_vgem@coherency-gtt.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708> / i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
* igt@sriov_basic@bind-unbind-vf@vf-1:
* shard-tglu-1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html> (i915#12910<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>) +18 other tests fail
Possible fixes
* igt@gem_exec_big@single:
* shard-tglu: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-5/igt@gem_exec_big@single.html> (i915#11713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@gem_exec_big@single.html>
* igt@gem_workarounds@suspend-resume-fd:
* shard-glk: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk9/igt@gem_workarounds@suspend-resume-fd.html> (i915#13356<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356> / i915#14586<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@gem_workarounds@suspend-resume-fd.html>
* igt@gen9_exec_parse@allowed-all:
* shard-glk10: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk10/igt@gen9_exec_parse@allowed-all.html> (i915#5566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk10/igt@gen9_exec_parse@allowed-all.html>
* igt@i915_pm_rc6_residency@rc6-fence:
* shard-tglu: WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-fence.html> (i915#13790<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790> / i915#2681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html> +1 other test pass
* igt@i915_pm_rpm@gem-execbuf-stress@lmem0:
* shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-14/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html>
* igt@i915_pm_rpm@system-suspend-execbuf:
* shard-dg1: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html> (i915#13562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html>
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#5138<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html>
* igt@kms_dp_link_training@non-uhbr-sst:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-1/igt@kms_dp_link_training@non-uhbr-sst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-sst.html>
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> (i915#15389<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389> / i915#6880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> +1 other test pass
* igt@kms_plane_scaling@intel-max-src-size:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html> (i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html>
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/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>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> +2 other tests pass
Warnings
* igt@api_intel_bb@object-reloc-purge-cache:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) +1 other test skip
* igt@gem_ccs@block-multicopy-inplace:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
* igt@gem_ccs@suspend-resume:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_ccs@suspend-resume.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_ccs@suspend-resume.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
* igt@gem_create@create-ext-set-pat:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_create@create-ext-set-pat.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_create@create-ext-set-pat.html> (i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>)
* igt@gem_ctx_sseu@invalid-sseu:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
* igt@gem_exec_balancer@parallel-keep-submit-fence:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
* igt@gem_exec_capture@capture-invisible:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_exec_capture@capture-invisible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6334<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_exec_capture@capture-invisible.html> (i915#6334<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) +1 other test skip
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-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_159319v2/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +3 other tests skip
* igt@gem_exec_reloc@basic-softpin:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_exec_reloc@basic-softpin.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_exec_reloc@basic-softpin.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +5 other tests skip
* igt@gem_lmem_evict@dontneed-evict-race:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> / i915#7582<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/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@heavy-verify-multi:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-multi.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other tests skip
* igt@gem_lmem_swapping@verify:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_lmem_swapping@verify.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_159319v2/shard-rkl-5/igt@gem_lmem_swapping@verify.html> (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_17776/shard-rkl-7/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_159319v2/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_pwrite@basic-exhaustion:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.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_159319v2/shard-rkl-5/igt@gem_pwrite@basic-exhaustion.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +2 other tests skip
* igt@gem_pxp@hw-rejects-pxp-context:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html> (i915#13717<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-context.html> (i915#13717<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717>)
* igt@gem_userptr_blits@coherency-unsync:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_userptr_blits@coherency-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other test skip
* igt@gem_userptr_blits@unsync-unmap-after-close:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.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_159319v2/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-after-close.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +2 other tests skip
* igt@gen7_exec_parse@chained-batch:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@gen7_exec_parse@chained-batch.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gen7_exec_parse@chained-batch.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +9 other tests skip
* igt@gen9_exec_parse@allowed-all:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gen9_exec_parse@allowed-all.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_159319v2/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +2 other tests skip
* igt@gen9_exec_parse@batch-invalid-length:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gen9_exec_parse@batch-invalid-length.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +1 other test skip
* igt@i915_pm_freq_api@freq-reset:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>)
* igt@i915_pm_rc6_residency@rc6-idle:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html> (i915#14498<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle.html> (i915#14498<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498>)
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
* shard-dg2: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html>
* igt@i915_query@hwconfig_table:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@i915_query@hwconfig_table.html> (i915#6245<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@i915_query@hwconfig_table.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6245<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>)
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#12454<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> / i915#12712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#12454<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> / i915#12712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>)
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9531<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/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-internal-panels:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
* igt@kms_big_fb@4-tiled-addfb:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +3 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.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_159319v2/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +3 other tests skip
* igt@kms_big_fb@linear-8bpp-rotate-270:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_big_fb@linear-8bpp-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_159319v2/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_big_fb@y-tiled-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_159319v2/shard-rkl-6/igt@kms_big_fb@y-tiled-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>) +2 other tests skip
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-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>) +25 other tests skip
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/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>) +24 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_17776/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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/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>) +9 other tests skip
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-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_159319v2/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip
* igt@kms_chamelium_frames@hdmi-crc-single:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-single.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_159319v2/shard-rkl-5/igt@kms_chamelium_frames@hdmi-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_chamelium_hpd@dp-hpd-enable-disable-mode:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.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>) +5 other tests skip
* igt@kms_content_protection@atomic-dpms-hdcp14:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-1/igt@kms_content_protection@atomic-dpms-hdcp14.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
* igt@kms_content_protection@mei-interface:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_content_protection@mei-interface.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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/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>)
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-12/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_159319v2/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@suspend-resume:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_content_protection@suspend-resume.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_content_protection@suspend-resume.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>)
* igt@kms_content_protection@type1:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-11/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#7162<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-6/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>)
* igt@kms_content_protection@uevent:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_content_protection@uevent.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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_content_protection@uevent.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>) +2 other tests skip
* igt@kms_cursor_crc@cursor-random-512x170:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.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_159319v2/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +1 other test skip
* igt@kms_cursor_crc@cursor-sliding-32x10:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (i915#9723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
* igt@kms_dp_link_training@non-uhbr-sst:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-sst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
* igt@kms_dp_link_training@uhbr-mst:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_dp_link_training@uhbr-mst.html> (i915#13748<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.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_dp_linktrain_fallback@dsc-fallback:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html> (i915#13707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html> (i915#13707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>)
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
* igt@kms_dsc@dsc-with-formats:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
* igt@kms_dsc@dsc-with-output-formats:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
* igt@kms_fbcon_fbt@psr:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_fbcon_fbt@psr.html> (i915#3955<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_fbcon_fbt@psr.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3955<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>)
* igt@kms_fbcon_fbt@psr-suspend:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3955<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html> (i915#3955<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>)
* igt@kms_flip@2x-flip-vs-dpms:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.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_159319v2/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +4 other tests skip
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other tests skip
* igt@kms_flip@2x-flip-vs-suspend:
* shard-glk: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html> (i915#12314<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314> / i915#12745<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> / i915#4839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839> / i915#6113<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk6/igt@kms_flip@2x-flip-vs-suspend.html> (i915#12745<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> / i915#4839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>)
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
* shard-glk: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html> (i915#12314<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314> / i915#4839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839> / i915#6113<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk6/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html> (i915#4839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>)
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-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>) +19 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.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-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html> +14 other tests skip
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (i915#9766<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/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>)
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +2 other tests skip
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.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_159319v2/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +15 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html>
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.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_159319v2/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +23 other tests skip
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.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_159319v2/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.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>) +10 other tests skip
* igt@kms_hdr@brightness-with-hdr:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html> (i915#13331<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-19/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html> (i915#1187<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187> / i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>)
* igt@kms_joiner@basic-max-non-joiner:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html> (i915#13688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html> (i915#13688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
* igt@kms_joiner@basic-ultra-joiner:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_joiner@basic-ultra-joiner.html> (i915#15458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>)
* igt@kms_joiner@invalid-modeset-force-big-joiner:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15459<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (i915#15459<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>)
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839> / i915#4816<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839> / i915#4816<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>)
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html> (i915#14712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712>)
* igt@kms_plane_lowres@tiling-yf:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.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_159319v2/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +5 other tests skip
* igt@kms_plane_multiple@2x-tiling-4:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-4.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip
* igt@kms_plane_multiple@2x-tiling-none:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-none.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html> (i915#15329<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15329<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>) +7 other tests skip
* igt@kms_pm_lpsp@kms-lpsp:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html> (i915#9340<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>)
* igt@kms_pm_rpm@dpms-lpsp:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
* igt@kms_prime@basic-crc-hybrid:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/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>)
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_psr2_sf@fbc-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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_psr2_sf@fbc-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@pr-cursor-plane-move-continuous-exceed-fully-sf:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +3 other tests skip
* igt@kms_psr2_su@page_flip-xrgb8888:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
* igt@kms_psr@fbc-psr2-sprite-render:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.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_159319v2/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +14 other tests skip
* igt@kms_psr@psr-cursor-plane-move:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-12/igt@kms_psr@psr-cursor-plane-move.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/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>)
* igt@kms_psr@psr-sprite-plane-move:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_psr@psr-sprite-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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +11 other tests skip
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
* igt@kms_tiled_display@basic-test-pattern:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
* igt@kms_vrr@lobf:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_vrr@lobf.html> (i915#11920<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_vrr@lobf.html> (i915#11920<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920>)
* igt@kms_vrr@seamless-rr-switch-virtual:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 other tests skip
* igt@prime_vgem@fence-flip-hang:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
* igt@sriov_basic@bind-unbind-vf:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@sriov_basic@bind-unbind-vf.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
Build changes
* Linux: CI_DRM_17776 -> Patchwork_159319v2
CI-20190529: 20190529
CI_DRM_17776: 77ca0c5f244b2796408d20cf3c0741094304e09f @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8690: 1022f2615722b105176a8cc4ce102896329b5016 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_159319v2: 77ca0c5f244b2796408d20cf3c0741094304e09f @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
[-- Attachment #2: Type: text/html, Size: 218364 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: ✗ i915.CI.Full: failure for drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2)
2026-01-21 17:07 ` Cavitt, Jonathan
@ 2026-01-21 18:11 ` Matt Roper
0 siblings, 0 replies; 6+ messages in thread
From: Matt Roper @ 2026-01-21 18:11 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: intel-gfx@lists.freedesktop.org
On Wed, Jan 21, 2026 at 05:07:22PM +0000, Cavitt, Jonathan wrote:
> These regressions are unrelated: the changes implemented to the target function
> do not result in the function behaving mechanically differently.
> -Jonathan Cavitt
Applied to drm-intel-next. Thanks for the patch and review.
Matt
>
> From: Patchwork <patchwork@emeril.freedesktop.org>
> Sent: Wednesday, January 7, 2026 12:50 PM
> To: Cavitt, Jonathan <jonathan.cavitt@intel.com>
> Cc: intel-gfx@lists.freedesktop.org
> Subject: ✗ i915.CI.Full: failure for drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2)
>
> Patch Details
> Series:
> drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2)
> URL:
> https://patchwork.freedesktop.org/series/159319/
> State:
> failure
> Details:
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/index.html
> CI Bug Log - changes from CI_DRM_17776_full -> Patchwork_159319v2_full
> Summary
>
> FAILURE
>
> Serious unknown changes coming with Patchwork_159319v2_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_159319v2_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 (9 -> 9)
>
> No changes in participating hosts
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in Patchwork_159319v2_full:
>
> IGT changes
> Possible regressions
>
> * igt@i915_selftest@live@gem_contexts:
> * shard-tglu: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@i915_selftest@live@gem_contexts.html> +1 other test dmesg-fail
> * igt@kms_content_protection@atomic-dpms-hdcp14:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_content_protection@atomic-dpms-hdcp14.html> +1 other test skip
>
> New tests
>
> New tests have been introduced between CI_DRM_17776_full and Patchwork_159319v2_full:
>
> New IGT tests (4)
>
> * igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-a-hdmi-a-2:
> * Statuses : 1 pass(s)
> * Exec time: [0.34] s
> * igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-b-hdmi-a-2:
> * Statuses : 1 pass(s)
> * Exec time: [0.32] s
> * igt@kms_color_pipeline@plane-lut1d-post-ctm3x4@pipe-c-hdmi-a-2:
> * Statuses : 1 pass(s)
> * Exec time: [0.32] s
> * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3:
> * Statuses : 1 fail(s)
> * Exec time: [120.79] s
>
> Known issues
>
> Here are the changes found in Patchwork_159319v2_full that come from known issues:
>
> IGT changes
> Issues hit
>
> * igt@api_intel_bb@blit-reloc-keep-cache:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@api_intel_bb@blit-reloc-keep-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>)
> * igt@gem_ccs@ctrl-surf-copy:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/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>)
> * igt@gem_ccs@large-ctrl-surf-copy:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@gem_ccs@large-ctrl-surf-copy.html> (i915#13008<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008>)
> * igt@gem_ccs@suspend-resume:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gem_ccs@suspend-resume.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> * igt@gem_ctx_sseu@invalid-sseu:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
> * igt@gem_eio@suspend:
> * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-4/igt@gem_eio@suspend.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-1/igt@gem_eio@suspend.html> (i915#15131<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131>)
> * igt@gem_exec_balancer@parallel-keep-in-fence:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@gem_exec_balancer@parallel-keep-in-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) +1 other test skip
> * igt@gem_exec_flush@basic-wb-pro-default:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_exec_flush@basic-wb-pro-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>)
> * igt@gem_exec_reloc@basic-gtt:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_exec_reloc@basic-gtt.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +4 other tests skip
> * igt@gem_exec_schedule@semaphore-power:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_exec_schedule@semaphore-power.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> * igt@gem_exec_suspend@basic-s3:
> * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-8/igt@gem_exec_suspend@basic-s3.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html> (i915#13356<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) +1 other test incomplete
> * igt@gem_fenced_exec_thrash@no-spare-fences:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) +4 other tests skip
> * igt@gem_lmem_swapping@verify-ccs:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip
> * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip
> * igt@gem_lmem_swapping@verify-random:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other tests skip
> * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +3 other tests skip
> * igt@gem_pread@bench:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_pread@bench.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip
> * igt@gem_pxp@reject-modify-context-protection-on:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-on.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
> * igt@gem_render_tiled_blits@basic:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@gem_render_tiled_blits@basic.html> (i915#4079<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>)
> * igt@gem_softpin@evict-snoop-interruptible:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_softpin@evict-snoop-interruptible.html> (i915#4885<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885>)
> * igt@gem_userptr_blits@coherency-sync:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +2 other tests skip
> * igt@gem_userptr_blits@create-destroy-unsync:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gem_userptr_blits@create-destroy-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> * igt@gem_userptr_blits@dmabuf-sync:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#3323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>)
> * igt@gem_userptr_blits@forbidden-operations:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/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@gen9_exec_parse@basic-rejected-ctx-param:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +1 other test skip
> * igt@gen9_exec_parse@batch-invalid-length:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@gen9_exec_parse@batch-invalid-length.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> * igt@gen9_exec_parse@bb-large:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@gen9_exec_parse@bb-large.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +1 other test skip
> * igt@i915_drm_fdinfo@busy-idle@bcs0:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@i915_drm_fdinfo@busy-idle@bcs0.html> (i915#14073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) +5 other tests skip
> * igt@i915_module_load@fault-injection:
> * shard-glk: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@fault-injection.html> (i915#15342<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342> / i915#15481<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481>)
> * igt@i915_module_load@fault-injection@i915_driver_hw_probe:
> * shard-glk: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@fault-injection@i915_driver_hw_probe.html> (i915#15481<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481>)
> * igt@i915_module_load@fault-injection@intel_connector_register:
> * shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@fault-injection@intel_connector_register.html> (i915#15342<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342>)
> * igt@i915_module_load@load:
> * shard-tglu: (PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-10/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-10/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-2/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-10/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-3/igt@i915_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-6/igt@i915_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-10/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-4/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-2/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-7/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-4/igt@i915_module_load@load.html>) (i915#14785<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14785>)
> * shard-glk: (PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk6/igt@i915_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk6/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@i915_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk9/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@i915_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk9/igt@i915_module_load@load.html>)
> * igt@i915_pm_freq_api@freq-reset-multiple:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/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_rps@min-max-config-loaded:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@i915_pm_rps@min-max-config-loaded.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> / i915#6621<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>)
> * igt@i915_query@hwconfig_table:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@i915_query@hwconfig_table.html> (i915#6245<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>)
> * igt@i915_query@test-query-geometry-subslices:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@i915_query@test-query-geometry-subslices.html> (i915#5723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>)
> * igt@i915_selftest@live@workarounds:
> * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-6/igt@i915_selftest@live@workarounds.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-8/igt@i915_selftest@live@workarounds.html> (i915#12061<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061>) +1 other test dmesg-fail
> * igt@i915_suspend@sysfs-reader:
> * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@i915_suspend@sysfs-reader.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@i915_suspend@sysfs-reader.html> (i915#4817<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>)
> * igt@kms_addfb_basic@addfb25-x-tiled-legacy:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
> * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
> * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> * igt@kms_big_fb@4-tiled-16bpp-rotate-270:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html> +1 other test skip
> * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip
> * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +5 other tests skip
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
> * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> (i915#5138<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>)
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip
> * igt@kms_big_fb@x-tiled-8bpp-rotate-0:
> * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-14/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) +2 other tests dmesg-warn
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) +1 other test skip
> * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +206 other tests skip
> * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
> * shard-glk10: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk10/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html> +26 other tests skip
> * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +34 other tests skip
> * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-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>) +149 other tests skip
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-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-1:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +64 other tests skip
> * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
> * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +65 other tests skip
> * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +35 other tests skip
> * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
> * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@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>) +32 other tests skip
> * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
> * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html> (i915#12796<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796>) +1 other test incomplete
> * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>)
> * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#10434<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +2 other tests skip
> * igt@kms_chamelium_audio@hdmi-audio-edid:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +6 other tests skip
> * igt@kms_chamelium_color@ctm-negative:
> * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@kms_chamelium_color@ctm-negative.html> +172 other tests skip
> * igt@kms_chamelium_hpd@hdmi-hpd-fast:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-fast.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other tests skip
> * igt@kms_chamelium_hpd@hdmi-hpd-storm:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-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>) +5 other tests skip
> * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-hdmi-a-3:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-6/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-hdmi-a-3.html> (i915#15523<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15523>) +3 other tests skip
> * {igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3} (NEW):
> * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/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>)
> * igt@kms_content_protection@dp-mst-suspend-resume:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_content_protection@dp-mst-suspend-resume.html> (i915#15330<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>)
> * igt@kms_content_protection@lic-type-0:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_content_protection@lic-type-0.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) +1 other test skip
> * igt@kms_content_protection@suspend-resume:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_content_protection@suspend-resume.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>)
> * igt@kms_cursor_crc@cursor-offscreen-max-size:
> * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-max-size.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> * igt@kms_cursor_crc@cursor-onscreen-256x85:
> * shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-256x85.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +1 other test fail
> * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>)
> * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
> * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +3 other tests fail
> * igt@kms_cursor_crc@cursor-onscreen-512x170:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +1 other test skip
> * igt@kms_cursor_crc@cursor-random-32x32:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> * igt@kms_cursor_crc@cursor-random-512x512:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
> * shard-tglu-1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html> (i915#13566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566>) +1 other test fail
> * igt@kms_cursor_crc@cursor-sliding-32x10:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip
> * igt@kms_cursor_crc@cursor-sliding-512x170:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>)
> * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
> * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html>
> * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
> * 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_159319v2/shard-rkl-3/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_link_training@non-uhbr-mst:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>)
> * igt@kms_dp_link_training@uhbr-mst:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html> (i915#13748<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>)
> * igt@kms_dp_link_training@uhbr-sst:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_dp_link_training@uhbr-sst.html> (i915#13748<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>)
> * igt@kms_dp_linktrain_fallback@dp-fallback:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_dp_linktrain_fallback@dp-fallback.html> (i915#13707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>)
> * igt@kms_dsc@dsc-basic:
> * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> * igt@kms_dsc@dsc-with-bpc:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/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_dsc@dsc-with-formats:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> * igt@kms_fb_coherency@memset-crc@mmap-gtt:
> * shard-glk: NOTRUN -> CRASH<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk9/igt@kms_fb_coherency@memset-crc@mmap-gtt.html> (i915#15351<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15351>) +1 other test crash
> * igt@kms_feature_discovery@dp-mst:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html> (i915#9337<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337>)
> * igt@kms_flip@2x-flip-vs-dpms-on-nop:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-on-nop.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other tests skip
> * igt@kms_flip@2x-flip-vs-fences:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences.html> (i915#8381<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>)
> * igt@kms_flip@2x-flip-vs-panning-vs-hang:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other tests skip
> * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
> * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-snb4/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html> (i915#14033<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033>) +1 other test timeout
> * igt@kms_flip@2x-plain-flip:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_flip@2x-plain-flip.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other tests skip
> * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> * igt@kms_flip@flip-vs-fences:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_flip@flip-vs-fences.html> (i915#8381<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>)
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +1 other test skip
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +4 other tests skip
> * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +1 other test skip
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip
> * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html> (i915#15104<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104>)
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
> * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html> (i915#15389<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389> / i915#6880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>)
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +5 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html> +35 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen:
> * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +2 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
> * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html> +16 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html> +43 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_159319v2/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-offscreen-pri-shrfb-draw-mmap-cpu:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +16 other tests skip
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +1 other test skip
> * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +1 other test skip
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +3 other tests skip
> * igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +7 other tests skip
> * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) +13 other tests skip
> * igt@kms_hdr@bpc-switch:
> * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_hdr@bpc-switch.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/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>)
> * igt@kms_hdr@brightness-with-hdr:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>)
> * igt@kms_hdr@invalid-metadata-sizes:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/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>) +1 other test skip
> * igt@kms_hdr@static-toggle:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_hdr@static-toggle.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> * igt@kms_hdr@static-toggle-suspend:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@kms_hdr@static-toggle-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> * igt@kms_joiner@basic-force-big-joiner:
> * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-6/igt@kms_joiner@basic-force-big-joiner.html> (i915#15459<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>)
> * igt@kms_joiner@basic-force-ultra-joiner:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_joiner@basic-force-ultra-joiner.html> (i915#15458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>) +1 other test skip
> * igt@kms_joiner@basic-ultra-joiner:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html> (i915#15458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>)
> * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
> * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html> (i915#13522<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522>)
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) +1 other test skip
> * igt@kms_panel_fitting@legacy:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_panel_fitting@legacy.html> (i915#6301<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
> * igt@kms_plane@plane-panning-bottom-right-suspend:
> * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend.html> (i915#13026<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026>) +1 other test incomplete
> * igt@kms_plane_multiple@2x-tiling-x:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
> * igt@kms_plane_multiple@2x-tiling-yf:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_plane_multiple@2x-tiling-yf.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
> * igt@kms_plane_multiple@tiling-yf:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_plane_multiple@tiling-yf.html> (i915#14259<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>) +1 other test skip
> * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html> (i915#15329<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>) +4 other tests skip
> * igt@kms_pm_backlight@fade-with-suspend:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html> (i915#9812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>) +1 other test skip
> * igt@kms_pm_dc@dc3co-vpb-simulation:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_pm_dc@dc3co-vpb-simulation.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) +1 other test skip
> * igt@kms_pm_dc@dc5-psr:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_pm_dc@dc5-psr.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>)
> * igt@kms_pm_dc@dc6-dpms:
> * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html> (i915#9295<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295>)
> * igt@kms_pm_rpm@modeset-lpsp:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
> * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) +1 other test skip
> * igt@kms_pm_rpm@modeset-non-lpsp:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> * igt@kms_pm_rpm@modeset-non-lpsp-stress:
> * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) +1 other test skip
> * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
> * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/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_pm_rpm@package-g7:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_pm_rpm@package-g7.html> (i915#15403<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403>)
> * igt@kms_pm_rpm@system-suspend-idle:
> * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-11/igt@kms_pm_rpm@system-suspend-idle.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_pm_rpm@system-suspend-idle.html> (i915#14419<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419>)
> * igt@kms_pm_rpm@system-suspend-modeset:
> * shard-rkl: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html> (i915#14419<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419>)
> * igt@kms_prime@basic-crc-vgem:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_prime@basic-crc-vgem.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_159319v2/shard-tglu-8/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-sf:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip
> * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
> * shard-glk10: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
> * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +2 other tests skip
> * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
> * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>)
> * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +1 other test skip
> * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip
> * igt@kms_psr2_su@frontbuffer-xrgb8888:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
> * igt@kms_psr@fbc-pr-no-drrs:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_psr@fbc-pr-no-drrs.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +8 other tests skip
> * igt@kms_psr@fbc-psr-no-drrs:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_psr@fbc-psr-no-drrs.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +13 other tests skip
> * igt@kms_psr@fbc-psr-primary-render:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_psr@fbc-psr-primary-render.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +14 other tests skip
> * igt@kms_psr@psr2-sprite-render:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@kms_psr@psr2-sprite-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +2 other tests skip
> * igt@kms_rotation_crc@multiplane-rotation:
> * shard-glk: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@kms_rotation_crc@multiplane-rotation.html> (i915#118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118>)
> * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
> * shard-glk: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html> (i915#15500<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500>)
> * igt@kms_scaling_modes@scaling-mode-center:
> * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-center.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
> * igt@kms_universal_plane@cursor-fb-leak:
> * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_universal_plane@cursor-fb-leak.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>)
> * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3:
> * shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>)
> * igt@kms_vrr@negative-basic:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>)
> * igt@kms_vrr@seamless-rr-switch-virtual:
> * shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +1 other test skip
> * igt@perf@unprivileged-single-ctx-counters:
> * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@perf@unprivileged-single-ctx-counters.html> (i915#2433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433>)
> * igt@perf_pmu@module-unload:
> * shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-8/igt@perf_pmu@module-unload.html> (i915#14433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433>)
> * igt@prime_vgem@coherency-gtt:
> * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@prime_vgem@coherency-gtt.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708> / i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> * igt@sriov_basic@bind-unbind-vf@vf-1:
> * shard-tglu-1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html> (i915#12910<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>) +18 other tests fail
>
> Possible fixes
>
> * igt@gem_exec_big@single:
> * shard-tglu: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-5/igt@gem_exec_big@single.html> (i915#11713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-3/igt@gem_exec_big@single.html>
> * igt@gem_workarounds@suspend-resume-fd:
> * shard-glk: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk9/igt@gem_workarounds@suspend-resume-fd.html> (i915#13356<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356> / i915#14586<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk1/igt@gem_workarounds@suspend-resume-fd.html>
> * igt@gen9_exec_parse@allowed-all:
> * shard-glk10: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk10/igt@gen9_exec_parse@allowed-all.html> (i915#5566<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk10/igt@gen9_exec_parse@allowed-all.html>
> * igt@i915_pm_rc6_residency@rc6-fence:
> * shard-tglu: WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-fence.html> (i915#13790<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790> / i915#2681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html> +1 other test pass
> * igt@i915_pm_rpm@gem-execbuf-stress@lmem0:
> * shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-14/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html>
> * igt@i915_pm_rpm@system-suspend-execbuf:
> * shard-dg1: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html> (i915#13562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html>
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> * shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#5138<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html>
> * igt@kms_dp_link_training@non-uhbr-sst:
> * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-1/igt@kms_dp_link_training@non-uhbr-sst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-sst.html>
> * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
> * shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> (i915#15389<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389> / i915#6880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html> +1 other test pass
> * igt@kms_plane_scaling@intel-max-src-size:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html> (i915#6953<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html>
> * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
> * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/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>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> +2 other tests pass
>
> Warnings
>
> * igt@api_intel_bb@object-reloc-purge-cache:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) +1 other test skip
> * igt@gem_ccs@block-multicopy-inplace:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> * igt@gem_ccs@ctrl-surf-copy-new-ctx:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> * igt@gem_ccs@suspend-resume:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_ccs@suspend-resume.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_ccs@suspend-resume.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> * igt@gem_create@create-ext-set-pat:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_create@create-ext-set-pat.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_create@create-ext-set-pat.html> (i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>)
> * igt@gem_ctx_sseu@invalid-sseu:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
> * igt@gem_exec_balancer@parallel-keep-submit-fence:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>)
> * igt@gem_exec_capture@capture-invisible:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_exec_capture@capture-invisible.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6334<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_exec_capture@capture-invisible.html> (i915#6334<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) +1 other test skip
> * igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-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_159319v2/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +3 other tests skip
> * igt@gem_exec_reloc@basic-softpin:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_exec_reloc@basic-softpin.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_exec_reloc@basic-softpin.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +5 other tests skip
> * igt@gem_lmem_evict@dontneed-evict-race:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> / i915#7582<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/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@heavy-verify-multi:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-multi.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +2 other tests skip
> * igt@gem_lmem_swapping@verify:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_lmem_swapping@verify.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_159319v2/shard-rkl-5/igt@gem_lmem_swapping@verify.html> (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_17776/shard-rkl-7/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_159319v2/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_pwrite@basic-exhaustion:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.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_159319v2/shard-rkl-5/igt@gem_pwrite@basic-exhaustion.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +2 other tests skip
> * igt@gem_pxp@hw-rejects-pxp-context:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html> (i915#13717<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-context.html> (i915#13717<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717>)
> * igt@gem_userptr_blits@coherency-unsync:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gem_userptr_blits@coherency-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other test skip
> * igt@gem_userptr_blits@unsync-unmap-after-close:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.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_159319v2/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-after-close.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +2 other tests skip
> * igt@gen7_exec_parse@chained-batch:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@gen7_exec_parse@chained-batch.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gen7_exec_parse@chained-batch.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +9 other tests skip
> * igt@gen9_exec_parse@allowed-all:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@gen9_exec_parse@allowed-all.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_159319v2/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +2 other tests skip
> * igt@gen9_exec_parse@batch-invalid-length:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@gen9_exec_parse@batch-invalid-length.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +1 other test skip
> * igt@i915_pm_freq_api@freq-reset:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>)
> * igt@i915_pm_rc6_residency@rc6-idle:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html> (i915#14498<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle.html> (i915#14498<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498>)
> * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
> * shard-dg2: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html>
> * igt@i915_query@hwconfig_table:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@i915_query@hwconfig_table.html> (i915#6245<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@i915_query@hwconfig_table.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6245<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>)
> * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#12454<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> / i915#12712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#12454<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454> / i915#12712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712>)
> * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9531<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/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-internal-panels:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> * igt@kms_big_fb@4-tiled-addfb:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +3 other tests skip
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.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_159319v2/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +3 other tests skip
> * igt@kms_big_fb@linear-8bpp-rotate-270:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_big_fb@linear-8bpp-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_159319v2/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_big_fb@y-tiled-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_159319v2/shard-rkl-6/igt@kms_big_fb@y-tiled-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>) +2 other tests skip
> * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html> (i915#14098<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-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>) +25 other tests skip
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/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>) +24 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_17776/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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/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>) +9 other tests skip
> * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-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_159319v2/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> (i915#12313<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) +1 other test skip
> * igt@kms_chamelium_frames@hdmi-crc-single:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-single.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_159319v2/shard-rkl-5/igt@kms_chamelium_frames@hdmi-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_chamelium_hpd@dp-hpd-enable-disable-mode:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> (i915#11151<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> / i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.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>) +5 other tests skip
> * igt@kms_content_protection@atomic-dpms-hdcp14:
> * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-1/igt@kms_content_protection@atomic-dpms-hdcp14.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
> * igt@kms_content_protection@mei-interface:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_content_protection@mei-interface.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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/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>)
> * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-12/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_159319v2/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@suspend-resume:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_content_protection@suspend-resume.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_content_protection@suspend-resume.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>)
> * igt@kms_content_protection@type1:
> * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-11/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#7162<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-6/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>)
> * igt@kms_content_protection@uevent:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_content_protection@uevent.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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_content_protection@uevent.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>) +2 other tests skip
> * igt@kms_cursor_crc@cursor-random-512x170:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.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_159319v2/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html> (i915#13049<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) +1 other test skip
> * igt@kms_cursor_crc@cursor-sliding-32x10:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip
> * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (i915#9723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>)
> * igt@kms_dp_link_training@non-uhbr-sst:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-sst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html> (i915#13749<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> * igt@kms_dp_link_training@uhbr-mst:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_dp_link_training@uhbr-mst.html> (i915#13748<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.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_dp_linktrain_fallback@dsc-fallback:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html> (i915#13707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html> (i915#13707<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>)
> * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> * igt@kms_dsc@dsc-with-formats:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> * igt@kms_dsc@dsc-with-output-formats:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> * igt@kms_fbcon_fbt@psr:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_fbcon_fbt@psr.html> (i915#3955<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_fbcon_fbt@psr.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3955<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>)
> * igt@kms_fbcon_fbt@psr-suspend:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3955<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html> (i915#3955<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>)
> * igt@kms_flip@2x-flip-vs-dpms:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.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_159319v2/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +4 other tests skip
> * igt@kms_flip@2x-flip-vs-panning-vs-hang:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +2 other tests skip
> * igt@kms_flip@2x-flip-vs-suspend:
> * shard-glk: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html> (i915#12314<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314> / i915#12745<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> / i915#4839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839> / i915#6113<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk6/igt@kms_flip@2x-flip-vs-suspend.html> (i915#12745<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> / i915#4839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>)
> * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
> * shard-glk: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html> (i915#12314<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314> / i915#4839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839> / i915#6113<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-glk6/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html> (i915#4839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>)
> * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +1 other test skip
> * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +2 other tests skip
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip
> * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-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>) +19 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.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-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +1 other test skip
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html> +14 other tests skip
> * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (i915#9766<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/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>)
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
> * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +2 other tests skip
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.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_159319v2/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html> (i915#15102<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> / i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +15 other tests skip
> * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
> * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html>
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.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_159319v2/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +23 other tests skip
> * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.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_159319v2/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.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>) +10 other tests skip
> * igt@kms_hdr@brightness-with-hdr:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html> (i915#13331<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-19/igt@kms_hdr@brightness-with-hdr.html> (i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html> (i915#1187<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187> / i915#12713<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713>)
> * igt@kms_joiner@basic-max-non-joiner:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html> (i915#13688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html> (i915#13688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>)
> * igt@kms_joiner@basic-ultra-joiner:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_joiner@basic-ultra-joiner.html> (i915#15458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>)
> * igt@kms_joiner@invalid-modeset-force-big-joiner:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15459<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (i915#15459<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>)
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839> / i915#4816<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839> / i915#4816<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>)
> * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html> (i915#14712<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712>)
> * igt@kms_plane_lowres@tiling-yf:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.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_159319v2/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +5 other tests skip
> * igt@kms_plane_multiple@2x-tiling-4:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-4.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +1 other test skip
> * igt@kms_plane_multiple@2x-tiling-none:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-none.html> (i915#13958<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>)
> * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html> (i915#15329<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15329<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>) +7 other tests skip
> * igt@kms_pm_lpsp@kms-lpsp:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html> (i915#3828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html> (i915#9340<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>)
> * igt@kms_pm_rpm@dpms-lpsp:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html> (i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#15073<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>)
> * igt@kms_prime@basic-crc-hybrid:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/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>)
> * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_psr2_sf@fbc-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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_psr2_sf@fbc-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@pr-cursor-plane-move-continuous-exceed-fully-sf:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) +3 other tests skip
> * igt@kms_psr2_su@page_flip-xrgb8888:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
> * igt@kms_psr@fbc-psr2-sprite-render:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.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_159319v2/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +14 other tests skip
> * igt@kms_psr@psr-cursor-plane-move:
> * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-12/igt@kms_psr@psr-cursor-plane-move.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-12/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>)
> * igt@kms_psr@psr-sprite-plane-move:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-3/igt@kms_psr@psr-sprite-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>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +11 other tests skip
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
> * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> (i915#4423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423> / i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
> * igt@kms_tiled_display@basic-test-pattern:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#8623<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
> * igt@kms_vrr@lobf:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@kms_vrr@lobf.html> (i915#11920<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920> / i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@kms_vrr@lobf.html> (i915#11920<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920>)
> * igt@kms_vrr@seamless-rr-switch-virtual:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) +2 other tests skip
> * igt@prime_vgem@fence-flip-hang:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
> * igt@sriov_basic@bind-unbind-vf:
> * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17776/shard-rkl-7/igt@sriov_basic@bind-unbind-vf.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_159319v2/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html> (i915#14544<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> / i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>)
>
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> Build changes
>
> * Linux: CI_DRM_17776 -> Patchwork_159319v2
>
> CI-20190529: 20190529
> CI_DRM_17776: 77ca0c5f244b2796408d20cf3c0741094304e09f @ git://anongit.freedesktop.org/gfx-ci/linux
> IGT_8690: 1022f2615722b105176a8cc4ce102896329b5016 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> Patchwork_159319v2: 77ca0c5f244b2796408d20cf3c0741094304e09f @ git://anongit.freedesktop.org/gfx-ci/linux
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-01-21 18:11 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-07 16:29 [PATCH v2] drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end Jonathan Cavitt
2026-01-07 17:32 ` ✓ i915.CI.BAT: success for drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end (rev2) Patchwork
2026-01-07 20:49 ` ✗ i915.CI.Full: failure " Patchwork
2026-01-21 17:07 ` Cavitt, Jonathan
2026-01-21 18:11 ` Matt Roper
2026-01-09 13:05 ` [PATCH v2] drm/i915/display: Prevent u64 underflow in intel_fbc_stolen_end Jani Nikula
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox