Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures
@ 2026-05-04  5:45 Karthik B S
  2026-05-04  7:27 ` ✓ Xe.CI.BAT: success for " Patchwork
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Karthik B S @ 2026-05-04  5:45 UTC (permalink / raw)
  To: igt-dev; +Cc: pranay.samala, Karthik B S, S Sebinraj, Krzysztof Karas

Track per-plane timeline/fence state across the in-flight NONBLOCK atomic
commit and install an exit handler to signal any still-unsignaled fences.
This prevents cleanup hangs when an assertion fires after commit
submission but before the test signals the blocking fence.

Cc: S Sebinraj <s.sebinraj@intel.com>
Cc: Krzysztof Karas <krzysztof.karas@intel.com>
Signed-off-by: Karthik B S <karthik.b.s@intel.com>
---
 tests/kms_explicit_fence.c | 58 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)

diff --git a/tests/kms_explicit_fence.c b/tests/kms_explicit_fence.c
index 2ec9bf39d..7ffdcb285 100644
--- a/tests/kms_explicit_fence.c
+++ b/tests/kms_explicit_fence.c
@@ -68,6 +68,42 @@ typedef struct {
 	igt_pipe_crc_t *pipe_crc;
 } data_t;
 
+/*
+ * State tracked across the lifetime of an in-flight atomic commit that has
+ * IN_FENCEs attached. The exit handler uses this to unblock any pending
+ * commit if an assert hits between the commit and the point where
+ * the test would otherwise signal the unsignaled fence(s).
+ */
+static struct {
+	int timelines[NUM_PLANES];
+	bool needs_signal[NUM_PLANES];
+	bool active;
+} pending_fence_state = {
+	.timelines = { -1, -1, -1 },
+};
+
+static void signal_pending_fences(int sig)
+{
+	if (!pending_fence_state.active)
+		return;
+
+	for (int i = 0; i < NUM_PLANES; i++) {
+		if (pending_fence_state.timelines[i] < 0)
+			continue;
+
+		if (pending_fence_state.needs_signal[i]) {
+			/*
+			 * Best-effort: advance the timeline so the kernel
+			 * stops waiting on this IN_FENCE.
+			 */
+			sw_sync_timeline_inc(pending_fence_state.timelines[i], 1);
+			pending_fence_state.needs_signal[i] = false;
+		}
+	}
+
+	pending_fence_state.active = false;
+}
+
 static void setup_output(data_t *data)
 {
 	igt_display_t *display = &data->display;
@@ -242,8 +278,14 @@ static void multiplane_atomic_fence_wait(data_t *data)
 
 		/* Attach IN_FENCE_FD to plane */
 		igt_plane_set_fence_fd(planes[i], fences[i]);
+
+		pending_fence_state.timelines[i] = timelines[i];
+		pending_fence_state.needs_signal[i] = !should_signal[i];
 	}
 
+	/* Arm the exit handler before the NONBLOCK commit goes out. */
+	pending_fence_state.active = true;
+
 	/* Swap overlay colors to detect scanout changes via CRC */
 	igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
 	igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
@@ -299,6 +341,7 @@ static void multiplane_atomic_fence_wait(data_t *data)
 	igt_assert_crc_equal(&crc_before, &crc_after);
 
 	/* Now signal the blocking fence (overlay2) */
+	pending_fence_state.needs_signal[PLANE_OVERLAY2_IDX] = false;
 	sw_sync_timeline_inc(timelines[PLANE_OVERLAY2_IDX], 1);
 
 	/* Wait for overlay2 fence to be signaled */
@@ -311,6 +354,12 @@ static void multiplane_atomic_fence_wait(data_t *data)
 	igt_assert_eq(ret, 0);
 	igt_assert_eq(sync_fence_status(out_fence), 1);
 
+	/*
+	 * The pending atomic commit has now completed, so the exit handler
+	 * no longer needs to rescue it.
+	 */
+	pending_fence_state.active = false;
+
 	/* Verify display has now updated (CRC should differ from baseline) */
 	igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_final);
 
@@ -353,6 +402,13 @@ int igt_main()
 
 		data.pipe_crc = igt_pipe_crc_new(data.drm_fd, data.crtc->crtc_index,
 						 IGT_PIPE_CRC_SOURCE_AUTO);
+
+		/*
+		 * Make sure that on any failure mid-test, any unsignaled
+		 * IN_FENCE that the kernel is still waiting on gets
+		 * signaled so cleanup can complete instead of hanging.
+		 */
+		igt_install_exit_handler(signal_pending_fences);
 	}
 
 	igt_describe("Test atomic commit with 3 planes (1 primary, 2 overlay) "
@@ -363,6 +419,8 @@ int igt_main()
 		multiplane_atomic_fence_wait(&data);
 
 	igt_fixture() {
+		signal_pending_fences(0);
+
 		reset_display_state(&data);
 		igt_pipe_crc_free(data.pipe_crc);
 		cleanup_crtc(&data);
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* ✓ Xe.CI.BAT: success for tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures
  2026-05-04  5:45 [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures Karthik B S
@ 2026-05-04  7:27 ` Patchwork
  2026-05-04  7:28 ` ✓ i915.CI.BAT: " Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-05-04  7:27 UTC (permalink / raw)
  To: Karthik B S; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 1188 bytes --]

== Series Details ==

Series: tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures
URL   : https://patchwork.freedesktop.org/series/165880/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8881_BAT -> XEIGTPW_15092_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


Build changes
-------------

  * IGT: IGT_8881 -> IGTPW_15092
  * Linux: xe-4959-3ac514cf64f272cc4d5143f4cc28fb18a8aba76d -> xe-4969-9756f0821b775d39e62f2524aa3f7421f7a9e76c

  IGTPW_15092: 133ee94341a75e3bcaef96d667d144db6f7d7f7d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8881: aa5853ef5b379b1e4558218c21ef4caeae112184 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4959-3ac514cf64f272cc4d5143f4cc28fb18a8aba76d: 3ac514cf64f272cc4d5143f4cc28fb18a8aba76d
  xe-4969-9756f0821b775d39e62f2524aa3f7421f7a9e76c: 9756f0821b775d39e62f2524aa3f7421f7a9e76c

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15092/index.html

[-- Attachment #2: Type: text/html, Size: 1747 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ i915.CI.BAT: success for tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures
  2026-05-04  5:45 [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures Karthik B S
  2026-05-04  7:27 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-05-04  7:28 ` Patchwork
  2026-05-04 10:41 ` ✗ i915.CI.Full: failure " Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-05-04  7:28 UTC (permalink / raw)
  To: Karthik B S; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 6236 bytes --]

== Series Details ==

Series: tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures
URL   : https://patchwork.freedesktop.org/series/165880/
State : success

== Summary ==

CI Bug Log - changes from IGT_8881 -> IGTPW_15092
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/index.html

Participating hosts (41 -> 40)
------------------------------

  Additional (1): bat-adls-6 
  Missing    (2): bat-dg2-13 fi-snb-2520m 

Known issues
------------

  Here are the changes found in IGTPW_15092 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-rpls-4:         [PASS][1] -> [DMESG-WARN][2] ([i915#13400])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8881/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html

  * igt@dmabuf@all-tests:
    - bat-adls-6:         NOTRUN -> [SKIP][3] ([i915#15931])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-adls-6/igt@dmabuf@all-tests.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - bat-adls-6:         NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_tiled_pread_basic@basic:
    - bat-adls-6:         NOTRUN -> [SKIP][5] ([i915#15656])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-adls-6/igt@gem_tiled_pread_basic@basic.html

  * igt@i915_selftest@live:
    - bat-dg2-8:          [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8881/bat-dg2-8/igt@i915_selftest@live.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-dg2-8/igt@i915_selftest@live.html

  * igt@intel_hwmon@hwmon-read:
    - bat-adls-6:         NOTRUN -> [SKIP][8] ([i915#7707]) +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-adls-6/igt@intel_hwmon@hwmon-read.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - bat-adls-6:         NOTRUN -> [SKIP][9] ([i915#4103]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-adls-6:         NOTRUN -> [SKIP][10] ([i915#3555] / [i915#3840])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-adls-6/igt@kms_dsc@dsc-basic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-adls-6:         NOTRUN -> [SKIP][11]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-adls-6:         NOTRUN -> [SKIP][12] ([i915#5354])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr@psr-primary-mmap-gtt:
    - bat-adls-6:         NOTRUN -> [SKIP][13] ([i915#1072] / [i915#9732]) +3 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-adls-6:         NOTRUN -> [SKIP][14] ([i915#3555])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-fence-read:
    - bat-adls-6:         NOTRUN -> [SKIP][15] ([i915#3291]) +2 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-adls-6/igt@prime_vgem@basic-fence-read.html

  
#### Possible fixes ####

  * igt@i915_selftest@live:
    - bat-mtlp-8:         [DMESG-FAIL][16] ([i915#12061]) -> [PASS][17] +1 other test pass
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8881/bat-mtlp-8/igt@i915_selftest@live.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-mtlp-8/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - bat-dg2-14:         [DMESG-FAIL][18] ([i915#12061]) -> [PASS][19] +1 other test pass
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8881/bat-dg2-14/igt@i915_selftest@live@workarounds.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/bat-dg2-14/igt@i915_selftest@live@workarounds.html

  
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
  [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
  [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_8881 -> IGTPW_15092
  * Linux: CI_DRM_18388 -> CI_DRM_18398

  CI-20190529: 20190529
  CI_DRM_18388: 3ac514cf64f272cc4d5143f4cc28fb18a8aba76d @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_18398: 59b0faed1d239bc0f433999671c2d195bd62f9b8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15092: 133ee94341a75e3bcaef96d667d144db6f7d7f7d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8881: aa5853ef5b379b1e4558218c21ef4caeae112184 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/index.html

[-- Attachment #2: Type: text/html, Size: 7456 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✗ i915.CI.Full: failure for tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures
  2026-05-04  5:45 [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures Karthik B S
  2026-05-04  7:27 ` ✓ Xe.CI.BAT: success for " Patchwork
  2026-05-04  7:28 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-05-04 10:41 ` Patchwork
  2026-05-05  6:34 ` [PATCH i-g-t] " Sebinraj, S
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-05-04 10:41 UTC (permalink / raw)
  To: Karthik B S; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 128729 bytes --]

== Series Details ==

Series: tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures
URL   : https://patchwork.freedesktop.org/series/165880/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_18398_full -> IGTPW_15092_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_15092_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_15092_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.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/index.html

Participating hosts (10 -> 10)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_15092_full:

### IGT changes ###

#### Possible regressions ####

  * igt@gem_mmap_offset@clear-via-pagefault:
    - shard-mtlp:         [PASS][1] -> [TIMEOUT][2] +1 other test timeout
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-mtlp-5/igt@gem_mmap_offset@clear-via-pagefault.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-3/igt@gem_mmap_offset@clear-via-pagefault.html

  * igt@perf_pmu@most-busy-idle-check-all@bcs0:
    - shard-dg1:          [PASS][3] -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all@bcs0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-14/igt@perf_pmu@most-busy-idle-check-all@bcs0.html

  
Known issues
------------

  Here are the changes found in IGTPW_15092_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@blit-reloc-purge-cache:
    - shard-rkl:          NOTRUN -> [SKIP][5] ([i915#8411])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-4/igt@api_intel_bb@blit-reloc-purge-cache.html

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-tglu:         NOTRUN -> [SKIP][6] ([i915#11078])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-4/igt@device_reset@unbind-cold-reset-rebind.html

  * igt@dmabuf@all-tests:
    - shard-tglu:         NOTRUN -> [SKIP][7] ([i915#15931])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-9/igt@dmabuf@all-tests.html
    - shard-mtlp:         NOTRUN -> [SKIP][8] ([i915#15931])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-1/igt@dmabuf@all-tests.html
    - shard-dg2:          NOTRUN -> [SKIP][9] ([i915#15931])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@dmabuf@all-tests.html
    - shard-rkl:          NOTRUN -> [SKIP][10] ([i915#15931])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@dmabuf@all-tests.html
    - shard-dg1:          NOTRUN -> [SKIP][11] ([i915#15931])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-14/igt@dmabuf@all-tests.html

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-tglu-1:       NOTRUN -> [SKIP][12] ([i915#9323])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-tglu-1:       NOTRUN -> [SKIP][13] ([i915#7697])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_close_race@multigpu-basic-threads:
    - shard-rkl:          NOTRUN -> [SKIP][14] ([i915#7697])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html

  * igt@gem_create@create-ext-cpu-access-big:
    - shard-tglu:         NOTRUN -> [SKIP][15] ([i915#6335])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-3/igt@gem_create@create-ext-cpu-access-big.html

  * igt@gem_ctx_persistence@legacy-engines-cleanup:
    - shard-snb:          NOTRUN -> [SKIP][16] ([i915#1099])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-snb5/igt@gem_ctx_persistence@legacy-engines-cleanup.html

  * igt@gem_ctx_sseu@invalid-args:
    - shard-tglu-1:       NOTRUN -> [SKIP][17] ([i915#280])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-dg1:          NOTRUN -> [SKIP][18] ([i915#280])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-18/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_exec_balancer@parallel:
    - shard-tglu:         NOTRUN -> [SKIP][19] ([i915#4525]) +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-7/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_balancer@parallel-contexts:
    - shard-rkl:          NOTRUN -> [SKIP][20] ([i915#4525]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@gem_exec_balancer@parallel-contexts.html

  * igt@gem_exec_capture@capture-invisible@smem0:
    - shard-glk:          NOTRUN -> [SKIP][21] ([i915#6334]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk6/igt@gem_exec_capture@capture-invisible@smem0.html
    - shard-tglu:         NOTRUN -> [SKIP][22] ([i915#6334]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-5/igt@gem_exec_capture@capture-invisible@smem0.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-rkl:          NOTRUN -> [SKIP][23] ([i915#6344])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_fence@submit3:
    - shard-dg2:          NOTRUN -> [SKIP][24] ([i915#4812]) +1 other test skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-1/igt@gem_exec_fence@submit3.html

  * igt@gem_exec_flush@basic-wb-rw-before-default:
    - shard-dg2:          NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-4/igt@gem_exec_flush@basic-wb-rw-before-default.html
    - shard-dg1:          NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-19/igt@gem_exec_flush@basic-wb-rw-before-default.html

  * igt@gem_exec_reloc@basic-gtt-cpu:
    - shard-rkl:          NOTRUN -> [SKIP][27] ([i915#3281]) +5 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-cpu.html

  * igt@gem_exec_reloc@basic-gtt-noreloc:
    - shard-mtlp:         NOTRUN -> [SKIP][28] ([i915#3281]) +5 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-noreloc.html
    - shard-rkl:          NOTRUN -> [SKIP][29] ([i915#14544] / [i915#3281])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-noreloc.html

  * igt@gem_exec_reloc@basic-gtt-wc:
    - shard-dg2:          NOTRUN -> [SKIP][30] ([i915#3281]) +10 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-wc.html

  * igt@gem_exec_reloc@basic-range-active:
    - shard-dg1:          NOTRUN -> [SKIP][31] ([i915#3281]) +6 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-18/igt@gem_exec_reloc@basic-range-active.html

  * igt@gem_exec_schedule@reorder-wide:
    - shard-dg2:          NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-8/igt@gem_exec_schedule@reorder-wide.html

  * igt@gem_exec_suspend@basic-s3@smem:
    - shard-snb:          [PASS][33] -> [ABORT][34] ([i915#15840]) +1 other test abort
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-snb7/igt@gem_exec_suspend@basic-s3@smem.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-snb1/igt@gem_exec_suspend@basic-s3@smem.html
    - shard-tglu:         [PASS][35] -> [ABORT][36] ([i915#15840]) +1 other test abort
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-tglu-7/igt@gem_exec_suspend@basic-s3@smem.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-8/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][37] ([i915#4860])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-5/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html

  * igt@gem_huc_copy@huc-copy:
    - shard-rkl:          NOTRUN -> [SKIP][38] ([i915#2190])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@gem_huc_copy@huc-copy.html
    - shard-tglu:         NOTRUN -> [SKIP][39] ([i915#2190])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-5/igt@gem_huc_copy@huc-copy.html
    - shard-glk:          NOTRUN -> [SKIP][40] ([i915#2190])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk6/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-rkl:          NOTRUN -> [SKIP][41] ([i915#14544] / [i915#4613] / [i915#7582])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][42] ([i915#4613])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-tglu-1:       NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html

  * igt@gem_lmem_swapping@parallel-random:
    - shard-tglu:         NOTRUN -> [SKIP][44] ([i915#4613]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-3/igt@gem_lmem_swapping@parallel-random.html

  * igt@gem_lmem_swapping@random:
    - shard-glk:          NOTRUN -> [SKIP][45] ([i915#4613]) +3 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk6/igt@gem_lmem_swapping@random.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-mtlp:         NOTRUN -> [SKIP][46] ([i915#4613])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-1/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@verify-random-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][47] ([i915#12193])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs.html

  * igt@gem_lmem_swapping@verify-random-ccs@lmem0:
    - shard-dg1:          NOTRUN -> [SKIP][48] ([i915#4565])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html

  * igt@gem_media_fill@media-fill:
    - shard-dg2:          NOTRUN -> [SKIP][49] ([i915#8289])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-3/igt@gem_media_fill@media-fill.html

  * igt@gem_mmap@basic-small-bo:
    - shard-dg1:          NOTRUN -> [SKIP][50] ([i915#4083])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-19/igt@gem_mmap@basic-small-bo.html
    - shard-mtlp:         NOTRUN -> [SKIP][51] ([i915#4083])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-4/igt@gem_mmap@basic-small-bo.html

  * igt@gem_mmap_gtt@cpuset-basic-small-copy:
    - shard-dg2:          NOTRUN -> [SKIP][52] ([i915#4077]) +6 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-6/igt@gem_mmap_gtt@cpuset-basic-small-copy.html

  * igt@gem_mmap_gtt@hang-busy:
    - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#4077]) +2 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-5/igt@gem_mmap_gtt@hang-busy.html

  * igt@gem_mmap_gtt@zero-extend:
    - shard-dg1:          NOTRUN -> [SKIP][54] ([i915#4077]) +4 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-14/igt@gem_mmap_gtt@zero-extend.html

  * igt@gem_mmap_wc@close:
    - shard-dg2:          NOTRUN -> [SKIP][55] ([i915#4083]) +4 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@gem_mmap_wc@close.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
    - shard-rkl:          NOTRUN -> [SKIP][56] ([i915#3282]) +6 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
    - shard-dg1:          NOTRUN -> [SKIP][57] ([i915#3282]) +3 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
    - shard-mtlp:         NOTRUN -> [SKIP][58] ([i915#3282]) +3 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html

  * igt@gem_pread@exhaustion:
    - shard-glk:          NOTRUN -> [WARN][59] ([i915#2658])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk8/igt@gem_pread@exhaustion.html

  * igt@gem_pread@snoop:
    - shard-dg2:          NOTRUN -> [SKIP][60] ([i915#3282]) +2 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-4/igt@gem_pread@snoop.html

  * igt@gem_pxp@create-regular-context-2:
    - shard-dg1:          NOTRUN -> [SKIP][61] ([i915#4270]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-13/igt@gem_pxp@create-regular-context-2.html

  * igt@gem_pxp@hw-rejects-pxp-buffer:
    - shard-tglu:         NOTRUN -> [SKIP][62] ([i915#13398])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-2/igt@gem_pxp@hw-rejects-pxp-buffer.html

  * igt@gem_pxp@reject-modify-context-protection-off-1:
    - shard-dg2:          NOTRUN -> [SKIP][63] ([i915#4270]) +3 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-1.html

  * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
    - shard-glk:          NOTRUN -> [SKIP][64] +273 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html

  * igt@gem_render_copy@yf-tiled-to-vebox-linear:
    - shard-dg2:          NOTRUN -> [SKIP][65] ([i915#5190] / [i915#8428]) +3 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@gem_render_copy@yf-tiled-to-vebox-linear.html
    - shard-mtlp:         NOTRUN -> [SKIP][66] ([i915#8428]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-1/igt@gem_render_copy@yf-tiled-to-vebox-linear.html

  * igt@gem_userptr_blits@coherency-sync:
    - shard-tglu-1:       NOTRUN -> [SKIP][67] ([i915#3297]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html

  * igt@gem_userptr_blits@create-destroy-unsync:
    - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#3297]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-4/igt@gem_userptr_blits@create-destroy-unsync.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-glk:          NOTRUN -> [SKIP][69] ([i915#3323])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk6/igt@gem_userptr_blits@dmabuf-sync.html
    - shard-rkl:          NOTRUN -> [SKIP][70] ([i915#3297] / [i915#3323])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][71] ([i915#3297])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-7/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-dg2:          NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4880])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@unsync-unmap:
    - shard-rkl:          NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap.html

  * igt@gen9_exec_parse@bb-chained:
    - shard-rkl:          NOTRUN -> [SKIP][74] ([i915#14544] / [i915#2527])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-tglu-1:       NOTRUN -> [SKIP][75] ([i915#2527] / [i915#2856]) +1 other test skip
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html
    - shard-dg1:          NOTRUN -> [SKIP][76] ([i915#2527])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-14/igt@gen9_exec_parse@bb-oversize.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-rkl:          NOTRUN -> [SKIP][77] ([i915#2527])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-5/igt@gen9_exec_parse@bb-secure.html

  * igt@gen9_exec_parse@cmd-crossing-page:
    - shard-tglu:         NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856]) +2 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-5/igt@gen9_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-dg2:          NOTRUN -> [SKIP][79] ([i915#2856])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-8/igt@gen9_exec_parse@secure-batches.html

  * igt@i915_drm_fdinfo@isolation@rcs0:
    - shard-dg1:          NOTRUN -> [SKIP][80] ([i915#14073]) +5 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-12/igt@i915_drm_fdinfo@isolation@rcs0.html
    - shard-mtlp:         NOTRUN -> [SKIP][81] ([i915#14073]) +6 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-2/igt@i915_drm_fdinfo@isolation@rcs0.html

  * igt@i915_drm_fdinfo@most-busy-check-all@vecs0:
    - shard-dg2:          NOTRUN -> [SKIP][82] ([i915#14073]) +15 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-5/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html

  * igt@i915_module_load@fault-injection@intel_connector_register:
    - shard-tglu:         NOTRUN -> [ABORT][83] ([i915#15342]) +1 other test abort
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-3/igt@i915_module_load@fault-injection@intel_connector_register.html
    - shard-glk11:        NOTRUN -> [ABORT][84] ([i915#15342]) +1 other test abort
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk11/igt@i915_module_load@fault-injection@intel_connector_register.html

  * igt@i915_module_load@fault-injection@uc_fw_rsa_data_create:
    - shard-tglu:         NOTRUN -> [SKIP][85] ([i915#15479]) +4 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-3/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html

  * igt@i915_module_load@reload-no-display:
    - shard-snb:          NOTRUN -> [DMESG-WARN][86] ([i915#14545])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-snb7/igt@i915_module_load@reload-no-display.html

  * igt@i915_module_load@resize-bar:
    - shard-tglu-1:       NOTRUN -> [SKIP][87] ([i915#6412])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@i915_module_load@resize-bar.html

  * igt@i915_pm_freq_api@freq-suspend:
    - shard-tglu-1:       NOTRUN -> [SKIP][88] ([i915#8399])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html

  * igt@i915_pm_freq_mult@media-freq@gt0:
    - shard-rkl:          NOTRUN -> [SKIP][89] ([i915#6590]) +1 other test skip
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html
    - shard-dg1:          NOTRUN -> [SKIP][90] ([i915#6590]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-14/igt@i915_pm_freq_mult@media-freq@gt0.html
    - shard-tglu:         NOTRUN -> [SKIP][91] ([i915#6590]) +1 other test skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-7/igt@i915_pm_freq_mult@media-freq@gt0.html

  * igt@i915_pm_freq_mult@media-freq@gt1:
    - shard-mtlp:         NOTRUN -> [SKIP][92] ([i915#6590]) +2 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-7/igt@i915_pm_freq_mult@media-freq@gt1.html

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - shard-rkl:          NOTRUN -> [SKIP][93] +19 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html

  * igt@i915_pm_rps@min-max-config-loaded:
    - shard-dg2:          NOTRUN -> [SKIP][94] ([i915#11681] / [i915#6621])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html

  * igt@i915_pm_rps@thresholds-park:
    - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#11681])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-8/igt@i915_pm_rps@thresholds-park.html
    - shard-dg1:          NOTRUN -> [SKIP][96] ([i915#11681])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-18/igt@i915_pm_rps@thresholds-park.html
    - shard-mtlp:         NOTRUN -> [SKIP][97] ([i915#11681])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-2/igt@i915_pm_rps@thresholds-park.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-dg2:          NOTRUN -> [DMESG-WARN][98] ([i915#14545])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@i915_suspend@basic-s3-without-i915.html
    - shard-dg1:          [PASS][99] -> [DMESG-WARN][100] ([i915#14545])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg1-14/igt@i915_suspend@basic-s3-without-i915.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-14/igt@i915_suspend@basic-s3-without-i915.html
    - shard-glk:          [PASS][101] -> [INCOMPLETE][102] ([i915#4817])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-glk3/igt@i915_suspend@basic-s3-without-i915.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk6/igt@i915_suspend@basic-s3-without-i915.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-rkl:          [PASS][103] -> [INCOMPLETE][104] ([i915#4817])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-5/igt@i915_suspend@fence-restore-untiled.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][105] ([i915#4817])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk3/igt@i915_suspend@fence-restore-untiled.html

  * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
    - shard-mtlp:         NOTRUN -> [SKIP][106] ([i915#4212])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-8/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
    - shard-dg2:          NOTRUN -> [SKIP][107] ([i915#4212]) +1 other test skip
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-1/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
    - shard-dg1:          NOTRUN -> [SKIP][108] ([i915#4212])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-15/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-tglu-1:       NOTRUN -> [SKIP][109] ([i915#12454] / [i915#12712])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_addfb_basic@no-handle:
    - shard-dg1:          [PASS][110] -> [DMESG-WARN][111] ([i915#4391] / [i915#4423])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg1-12/igt@kms_addfb_basic@no-handle.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-18/igt@kms_addfb_basic@no-handle.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-dg2:          [PASS][112] -> [FAIL][113] ([i915#14888]) +1 other test fail
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg2-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html

  * igt@kms_async_flips@async-flip-suspend-resume:
    - shard-rkl:          NOTRUN -> [ABORT][114] ([i915#15132]) +1 other test abort
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-1/igt@kms_async_flips@async-flip-suspend-resume.html
    - shard-glk:          NOTRUN -> [INCOMPLETE][115] ([i915#12761]) +1 other test incomplete
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk4/igt@kms_async_flips@async-flip-suspend-resume.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-rkl:          NOTRUN -> [SKIP][116] ([i915#9531])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-dg1:          NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
    - shard-mtlp:         [PASS][118] -> [FAIL][119] ([i915#5956]) +1 other test fail
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-mtlp-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-dg1:          NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +4 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-13/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-addfb-size-overflow:
    - shard-dg1:          NOTRUN -> [SKIP][121] ([i915#5286])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-tglu-1:       NOTRUN -> [SKIP][122] ([i915#5286])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-tglu:         NOTRUN -> [SKIP][123] ([i915#5286]) +4 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][124] ([i915#5286]) +5 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-rkl:          NOTRUN -> [SKIP][125] ([i915#14544] / [i915#5286])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#3828])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][127] ([i915#3638])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][128] +10 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-5/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-hflip:
    - shard-dg2:          NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +8 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
    - shard-dg1:          NOTRUN -> [SKIP][130] ([i915#4538]) +2 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][131] ([i915#6095]) +188 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][132] ([i915#10307] / [i915#10434] / [i915#6095])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][133] ([i915#12313]) +2 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-dg1:          NOTRUN -> [SKIP][134] ([i915#12313])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
    - shard-tglu:         NOTRUN -> [SKIP][135] ([i915#12313])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][136] ([i915#12313])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
    - shard-dg2:          NOTRUN -> [SKIP][137] ([i915#12313])
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][138] ([i915#10307] / [i915#6095]) +95 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][139] ([i915#14544] / [i915#6095]) +4 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][140] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][141] ([i915#6095]) +13 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][142] ([i915#15582]) +1 other test incomplete
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][143] ([i915#14098] / [i915#6095]) +50 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][144] ([i915#6095]) +59 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][145] ([i915#6095]) +19 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][146] ([i915#6095]) +24 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2:
    - shard-glk11:        NOTRUN -> [SKIP][147] +70 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk11/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][148] ([i915#6095]) +76 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-8/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-tglu:         NOTRUN -> [SKIP][149] ([i915#3742])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-6/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@degamma:
    - shard-dg2:          NOTRUN -> [SKIP][150] +8 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-8/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
    - shard-glk10:        NOTRUN -> [SKIP][151] +96 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk10/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +4 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-6/igt@kms_chamelium_frames@dp-frame-dump.html

  * igt@kms_chamelium_hpd@dp-hpd-after-suspend:
    - shard-tglu-1:       NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +1 other test skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html

  * igt@kms_chamelium_hpd@dp-hpd-storm-disable:
    - shard-tglu:         NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +3 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-5/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html

  * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
    - shard-rkl:          NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +5 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html

  * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
    - shard-dg1:          NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +1 other test skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-16/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
    - shard-mtlp:         NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html

  * igt@kms_content_protection@content-type-change:
    - shard-dg2:          NOTRUN -> [SKIP][158] ([i915#15865])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-6/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-tglu:         NOTRUN -> [SKIP][159] ([i915#15330] / [i915#3116] / [i915#3299])
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-rkl:          NOTRUN -> [SKIP][160] ([i915#15330] / [i915#3116]) +1 other test skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-0-suspend-resume:
    - shard-tglu-1:       NOTRUN -> [SKIP][161] ([i915#15330])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html

  * igt@kms_content_protection@legacy-hdcp14:
    - shard-rkl:          NOTRUN -> [SKIP][162] ([i915#15865]) +1 other test skip
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-2/igt@kms_content_protection@legacy-hdcp14.html

  * igt@kms_content_protection@mei-interface:
    - shard-tglu:         NOTRUN -> [SKIP][163] ([i915#15865])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-7/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@suspend-resume:
    - shard-tglu-1:       NOTRUN -> [SKIP][164] ([i915#15865])
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_content_protection@suspend-resume.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-rkl:          NOTRUN -> [SKIP][165] ([i915#3555]) +2 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-rkl:          [PASS][166] -> [FAIL][167] ([i915#13566]) +4 other tests fail
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-onscreen-256x85:
    - shard-tglu:         NOTRUN -> [FAIL][168] ([i915#13566]) +1 other test fail
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [FAIL][169] ([i915#13566]) +1 other test fail
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-random-32x10:
    - shard-tglu:         NOTRUN -> [SKIP][170] ([i915#3555])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-10/igt@kms_cursor_crc@cursor-random-32x10.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-rkl:          NOTRUN -> [SKIP][171] ([i915#13049]) +3 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][172] ([i915#13049]) +1 other test skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x512.html
    - shard-rkl:          NOTRUN -> [SKIP][173] ([i915#13049] / [i915#14544])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-tglu:         NOTRUN -> [SKIP][174] ([i915#13049])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [FAIL][175] ([i915#13566])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-tglu:         NOTRUN -> [SKIP][176] ([i915#4103]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][177] ([i915#14544] / [i915#4103])
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic:
    - shard-dg1:          [PASS][178] -> [DMESG-WARN][179] ([i915#4423]) +1 other test dmesg-warn
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg1-17/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-18/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-mtlp:         NOTRUN -> [SKIP][180] ([i915#9809]) +1 other test skip
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][181] ([i915#13046] / [i915#5354]) +3 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-tglu-1:       NOTRUN -> [SKIP][182] ([i915#4103])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-rkl:          NOTRUN -> [SKIP][183] ([i915#9723])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-tglu-1:       NOTRUN -> [SKIP][184] ([i915#9723])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-dg2:          NOTRUN -> [SKIP][185] ([i915#3555])
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
    - shard-rkl:          NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3804])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
    - shard-tglu:         NOTRUN -> [SKIP][187] ([i915#1769] / [i915#3555] / [i915#3804])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][188] ([i915#3804])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][189] ([i915#3804])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/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-dg2:          NOTRUN -> [SKIP][190] ([i915#13749])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-4/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-dg1:          NOTRUN -> [SKIP][191] ([i915#13749])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-19/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-tglu:         NOTRUN -> [SKIP][192] ([i915#13749])
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-3/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-mtlp:         NOTRUN -> [SKIP][193] ([i915#13749])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-4/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-dg2:          [PASS][194] -> [SKIP][195] ([i915#13707])
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-4/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-rkl:          NOTRUN -> [SKIP][196] ([i915#13707])
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-dg2:          NOTRUN -> [SKIP][197] ([i915#3555] / [i915#3840])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-5/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_dsc@dsc-with-bpc-formats:
    - shard-rkl:          NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-2/igt@kms_dsc@dsc-with-bpc-formats.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-tglu-1:       NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-rkl:          NOTRUN -> [SKIP][200] ([i915#3840] / [i915#9053])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_feature_discovery@display-3x:
    - shard-rkl:          NOTRUN -> [SKIP][201] ([i915#14544] / [i915#1839])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@psr1:
    - shard-tglu:         NOTRUN -> [SKIP][202] ([i915#658])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-2/igt@kms_feature_discovery@psr1.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2:          NOTRUN -> [SKIP][203] ([i915#658])
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-4/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][204] ([i915#9934]) +5 other tests skip
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][205] ([i915#12745] / [i915#4839])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk11/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][206] ([i915#12745])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk11/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][207] ([i915#9934]) +4 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-tglu:         NOTRUN -> [SKIP][208] ([i915#3637] / [i915#9934]) +3 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-2/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-dg1:          NOTRUN -> [SKIP][209] ([i915#9934]) +2 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-16/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
    - shard-mtlp:         NOTRUN -> [SKIP][210] ([i915#3637] / [i915#9934]) +1 other test skip
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-tglu-1:       NOTRUN -> [SKIP][211] ([i915#3637] / [i915#9934])
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@flip-vs-fences-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][212] ([i915#8381])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@kms_flip@flip-vs-fences-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][213] ([i915#15643])
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
    - shard-tglu:         NOTRUN -> [SKIP][214] ([i915#15643]) +2 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
    - shard-mtlp:         NOTRUN -> [SKIP][215] ([i915#15643]) +1 other test skip
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-dg1:          NOTRUN -> [SKIP][216] ([i915#15643]) +2 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][217] ([i915#14544] / [i915#15643])
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-dg2:          NOTRUN -> [SKIP][218] ([i915#15643]) +3 other tests skip
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][219] ([i915#15643]) +4 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
    - shard-dg2:          NOTRUN -> [SKIP][220] ([i915#15643] / [i915#5190])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][221] ([i915#15104] / [i915#15990])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
    - shard-dg2:          [PASS][222] -> [FAIL][223] ([i915#15389] / [i915#6880])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][224] ([i915#15990] / [i915#8708]) +10 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
    - shard-mtlp:         NOTRUN -> [SKIP][225] ([i915#15990] / [i915#8708]) +2 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-tglu-1:       NOTRUN -> [SKIP][226] +21 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-rkl:          NOTRUN -> [SKIP][227] ([i915#14544] / [i915#1825])
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][228] ([i915#10056])
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][229] ([i915#5439]) +1 other test skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][230] ([i915#15104] / [i915#15990])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
    - shard-rkl:          NOTRUN -> [SKIP][231] ([i915#15102]) +1 other test skip
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
    - shard-tglu:         NOTRUN -> [SKIP][232] ([i915#15102]) +15 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
    - shard-rkl:          NOTRUN -> [SKIP][233] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
    - shard-dg1:          NOTRUN -> [SKIP][234] +14 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-mtlp:         NOTRUN -> [SKIP][235] ([i915#15991] / [i915#1825]) +5 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
    - shard-dg1:          NOTRUN -> [SKIP][236] ([i915#15102]) +1 other test skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][237] ([i915#15102]) +1 other test skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][238] ([i915#15102] / [i915#3023]) +17 other tests skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
    - shard-dg1:          NOTRUN -> [SKIP][239] ([i915#15102] / [i915#3458]) +6 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][240] ([i915#15102] / [i915#3458]) +12 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-snb:          NOTRUN -> [SKIP][241] +109 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][242] ([i915#15991] / [i915#5354]) +11 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][243] ([i915#1825]) +19 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][244] ([i915#15990] / [i915#8708]) +7 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
    - shard-tglu-1:       NOTRUN -> [SKIP][245] ([i915#15102]) +10 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228])
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-8/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_hdr@static-swap:
    - shard-dg2:          [PASS][247] -> [SKIP][248] ([i915#3555] / [i915#8228]) +1 other test skip
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg2-10/igt@kms_hdr@static-swap.html
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][249] ([i915#15459])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-6/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-mtlp:         NOTRUN -> [SKIP][250] ([i915#13688])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-1/igt@kms_joiner@basic-max-non-joiner.html
    - shard-dg2:          NOTRUN -> [SKIP][251] ([i915#13688])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@kms_joiner@basic-max-non-joiner.html
    - shard-rkl:          NOTRUN -> [SKIP][252] ([i915#13688])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-4/igt@kms_joiner@basic-max-non-joiner.html
    - shard-tglu-1:       NOTRUN -> [SKIP][253] ([i915#13688])
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html
    - shard-dg1:          NOTRUN -> [SKIP][254] ([i915#13688])
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-14/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][255] ([i915#15458])
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-5/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][256] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-dg2:          NOTRUN -> [SKIP][257] ([i915#13705])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
    - shard-tglu-1:       NOTRUN -> [SKIP][258] ([i915#15709])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
    - shard-rkl:          NOTRUN -> [SKIP][259] ([i915#15709]) +5 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
    - shard-dg1:          NOTRUN -> [SKIP][260] ([i915#15709]) +2 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-18/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
    - shard-tglu:         NOTRUN -> [SKIP][261] ([i915#15709]) +1 other test skip
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-10/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
    - shard-mtlp:         NOTRUN -> [SKIP][262] ([i915#15709]) +1 other test skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier:
    - shard-dg2:          NOTRUN -> [SKIP][263] ([i915#15709]) +2 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
    - shard-tglu-1:       NOTRUN -> [SKIP][264] ([i915#15608]) +1 other test skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html

  * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
    - shard-dg1:          NOTRUN -> [SKIP][265] ([i915#15608]) +1 other test skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-19/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb:
    - shard-glk:          NOTRUN -> [FAIL][266] ([i915#10647] / [i915#12177])
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][267] ([i915#10647]) +1 other test fail
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-dg1:          NOTRUN -> [SKIP][268] ([i915#3555]) +2 other tests skip
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-12/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][269] ([i915#13958]) +1 other test skip
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-dg2:          NOTRUN -> [SKIP][270] ([i915#13958]) +1 other test skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-3/igt@kms_plane_multiple@2x-tiling-none.html
    - shard-dg1:          NOTRUN -> [SKIP][271] ([i915#13958])
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-15/igt@kms_plane_multiple@2x-tiling-none.html
    - shard-tglu:         NOTRUN -> [SKIP][272] ([i915#13958])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-none.html
    - shard-mtlp:         NOTRUN -> [SKIP][273] ([i915#13958])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-8/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-tglu-1:       NOTRUN -> [SKIP][274] ([i915#13958])
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-mtlp:         NOTRUN -> [SKIP][275] ([i915#14259])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html
    - shard-dg2:          NOTRUN -> [SKIP][276] ([i915#14259])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-1/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
    - shard-tglu-1:       NOTRUN -> [SKIP][277] ([i915#15329]) +4 other tests skip
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][278] ([i915#14544] / [i915#5354])
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][279] ([i915#5354])
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-13/igt@kms_pm_backlight@fade-with-dpms.html
    - shard-tglu:         NOTRUN -> [SKIP][280] ([i915#9812])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html
    - shard-dg2:          NOTRUN -> [SKIP][281] ([i915#5354])
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-5/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][282] ([i915#5354])
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-tglu:         NOTRUN -> [SKIP][283] ([i915#15948])
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-4/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][284] ([i915#15128])
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-dg1:          [PASS][285] -> [SKIP][286] ([i915#15073])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-19/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-rkl:          [PASS][287] -> [SKIP][288] ([i915#15073]) +1 other test skip
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-tglu:         NOTRUN -> [SKIP][289] ([i915#15073])
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
    - shard-mtlp:         NOTRUN -> [SKIP][290] ([i915#15073])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-glk:          NOTRUN -> [INCOMPLETE][291] ([i915#10553])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk8/igt@kms_pm_rpm@system-suspend-modeset.html
    - shard-rkl:          [PASS][292] -> [INCOMPLETE][293] ([i915#14419])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-8/igt@kms_pm_rpm@system-suspend-modeset.html
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_prime@basic-crc-vgem:
    - shard-dg1:          NOTRUN -> [SKIP][294] ([i915#6524])
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-18/igt@kms_prime@basic-crc-vgem.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-tglu:         NOTRUN -> [SKIP][295] ([i915#11520]) +3 other tests skip
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
    - shard-mtlp:         NOTRUN -> [SKIP][296] ([i915#12316]) +2 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-rkl:          NOTRUN -> [SKIP][297] ([i915#11520]) +5 other tests skip
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-dg2:          NOTRUN -> [SKIP][298] ([i915#11520]) +7 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
    - shard-glk11:        NOTRUN -> [SKIP][299] ([i915#11520])
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk11/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-snb:          NOTRUN -> [SKIP][300] ([i915#11520]) +3 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-dg1:          NOTRUN -> [SKIP][301] ([i915#11520]) +4 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-18/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-rkl:          NOTRUN -> [SKIP][302] ([i915#11520] / [i915#14544])
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-glk10:        NOTRUN -> [SKIP][303] ([i915#11520]) +2 other tests skip
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-tglu-1:       NOTRUN -> [SKIP][304] ([i915#11520])
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-glk:          NOTRUN -> [SKIP][305] ([i915#11520]) +12 other tests skip
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk5/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-dg2:          NOTRUN -> [SKIP][306] ([i915#9683])
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
    - shard-rkl:          NOTRUN -> [SKIP][307] ([i915#9683]) +1 other test skip
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html
    - shard-dg1:          NOTRUN -> [SKIP][308] ([i915#9683])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-14/igt@kms_psr2_su@page_flip-xrgb8888.html
    - shard-mtlp:         NOTRUN -> [SKIP][309] ([i915#4348])
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-1/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-pr-cursor-render:
    - shard-dg1:          NOTRUN -> [SKIP][310] ([i915#1072] / [i915#9732]) +8 other tests skip
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-18/igt@kms_psr@fbc-pr-cursor-render.html

  * igt@kms_psr@fbc-psr-basic:
    - shard-rkl:          NOTRUN -> [SKIP][311] ([i915#1072] / [i915#9732]) +13 other tests skip
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@kms_psr@fbc-psr-basic.html

  * igt@kms_psr@fbc-psr-no-drrs:
    - shard-tglu:         NOTRUN -> [SKIP][312] ([i915#9732]) +15 other tests skip
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-8/igt@kms_psr@fbc-psr-no-drrs.html

  * igt@kms_psr@fbc-psr2-cursor-plane-move:
    - shard-mtlp:         NOTRUN -> [SKIP][313] ([i915#9688]) +4 other tests skip
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-2/igt@kms_psr@fbc-psr2-cursor-plane-move.html

  * igt@kms_psr@psr-cursor-render:
    - shard-tglu-1:       NOTRUN -> [SKIP][314] ([i915#9732]) +5 other tests skip
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_psr@psr-cursor-render.html

  * igt@kms_psr@psr-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +13 other tests skip
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-4/igt@kms_psr@psr-suspend.html

  * igt@kms_psr@psr2-cursor-blt:
    - shard-rkl:          NOTRUN -> [SKIP][316] ([i915#1072] / [i915#14544] / [i915#9732])
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_psr@psr2-cursor-blt.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-rkl:          NOTRUN -> [SKIP][317] ([i915#15949])
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-tglu:         NOTRUN -> [SKIP][318] ([i915#15949])
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
    - shard-dg2:          NOTRUN -> [SKIP][319] ([i915#15949])
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-top:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][320] ([i915#15492])
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
    - shard-tglu-1:       NOTRUN -> [SKIP][321] ([i915#5289])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-dg1:          NOTRUN -> [SKIP][322] ([i915#5289])
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-dg2:          NOTRUN -> [SKIP][323] ([i915#12755] / [i915#15867])
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
    - shard-mtlp:         NOTRUN -> [SKIP][324] ([i915#12755] / [i915#15867])
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_selftest@drm_framebuffer:
    - shard-rkl:          NOTRUN -> [ABORT][325] ([i915#13179]) +1 other test abort
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@kms_selftest@drm_framebuffer.html
    - shard-glk:          NOTRUN -> [ABORT][326] ([i915#13179]) +1 other test abort
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk9/igt@kms_selftest@drm_framebuffer.html

  * igt@kms_setmode@basic@pipe-a-hdmi-a-1:
    - shard-snb:          [PASS][327] -> [FAIL][328] ([i915#15106]) +1 other test fail
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-snb4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html

  * igt@kms_setmode@basic@pipe-b-edp-1:
    - shard-mtlp:         [PASS][329] -> [FAIL][330] ([i915#15106]) +2 other tests fail
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html

  * igt@kms_setmode@basic@pipe-b-hdmi-a-2:
    - shard-rkl:          [PASS][331] -> [FAIL][332] ([i915#15106]) +2 other tests fail
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-3/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-4/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-tglu:         NOTRUN -> [SKIP][333] ([i915#8623])
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-5/igt@kms_tiled_display@basic-test-pattern.html
    - shard-glk:          NOTRUN -> [FAIL][334] ([i915#10959])
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-rkl:          NOTRUN -> [SKIP][335] ([i915#8623])
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-rkl:          [PASS][336] -> [INCOMPLETE][337] ([i915#12276]) +1 other test incomplete
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-suspend.html
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
    - shard-glk:          [PASS][338] -> [INCOMPLETE][339] ([i915#12276])
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-glk3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][340] ([i915#12276])
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html

  * igt@kms_vrr@flip-basic:
    - shard-dg2:          NOTRUN -> [SKIP][341] ([i915#15243] / [i915#3555])
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-6/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@max-min:
    - shard-rkl:          NOTRUN -> [SKIP][342] ([i915#9906])
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@kms_vrr@max-min.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-tglu-1:       NOTRUN -> [SKIP][343] ([i915#9906])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@perf@gen12-group-concurrent-oa-buffer-read:
    - shard-tglu:         [PASS][344] -> [FAIL][345] ([i915#10538])
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-tglu-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-5/igt@perf@gen12-group-concurrent-oa-buffer-read.html

  * igt@perf@unprivileged-single-ctx-counters:
    - shard-rkl:          NOTRUN -> [SKIP][346] ([i915#2433])
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html

  * igt@perf_pmu@busy-double-start@ccs0:
    - shard-dg2:          [PASS][347] -> [FAIL][348] ([i915#4349])
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg2-7/igt@perf_pmu@busy-double-start@ccs0.html
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-8/igt@perf_pmu@busy-double-start@ccs0.html

  * igt@perf_pmu@busy-double-start@vcs1:
    - shard-mtlp:         [PASS][349] -> [FAIL][350] ([i915#4349]) +1 other test fail
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-mtlp-2/igt@perf_pmu@busy-double-start@vcs1.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-3/igt@perf_pmu@busy-double-start@vcs1.html

  * igt@perf_pmu@module-unload:
    - shard-glk:          NOTRUN -> [ABORT][351] ([i915#15778])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk2/igt@perf_pmu@module-unload.html
    - shard-rkl:          NOTRUN -> [ABORT][352] ([i915#15778])
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-2/igt@perf_pmu@module-unload.html
    - shard-tglu-1:       NOTRUN -> [ABORT][353] ([i915#13029] / [i915#15778])
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-1/igt@perf_pmu@module-unload.html

  * igt@perf_pmu@most-busy-idle-check-all:
    - shard-dg2:          [PASS][354] -> [FAIL][355] ([i915#15997]) +1 other test fail
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg2-1/igt@perf_pmu@most-busy-idle-check-all.html
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@perf_pmu@most-busy-idle-check-all.html
    - shard-dg1:          [PASS][356] -> [FAIL][357] ([i915#15997]) +1 other test fail
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all.html
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-14/igt@perf_pmu@most-busy-idle-check-all.html
    - shard-mtlp:         [PASS][358] -> [FAIL][359] ([i915#15997]) +1 other test fail
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-mtlp-6/igt@perf_pmu@most-busy-idle-check-all.html
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all.html

  * igt@perf_pmu@rc6-all-gts:
    - shard-rkl:          NOTRUN -> [SKIP][360] ([i915#8516])
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html

  * igt@perf_pmu@rc6-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][361] ([i915#13356])
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk8/igt@perf_pmu@rc6-suspend.html
    - shard-rkl:          [PASS][362] -> [INCOMPLETE][363] ([i915#13520])
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-5/igt@perf_pmu@rc6-suspend.html
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@perf_pmu@rc6-suspend.html

  * igt@prime_vgem@basic-fence-read:
    - shard-dg2:          NOTRUN -> [SKIP][364] ([i915#3291] / [i915#3708])
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@prime_vgem@basic-fence-read.html

  * igt@prime_vgem@fence-write-hang:
    - shard-tglu:         NOTRUN -> [SKIP][365] +43 other tests skip
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-8/igt@prime_vgem@fence-write-hang.html
    - shard-mtlp:         NOTRUN -> [SKIP][366] ([i915#3708])
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-2/igt@prime_vgem@fence-write-hang.html
    - shard-dg2:          NOTRUN -> [SKIP][367] ([i915#3708])
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-8/igt@prime_vgem@fence-write-hang.html
    - shard-rkl:          NOTRUN -> [SKIP][368] ([i915#3708])
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@prime_vgem@fence-write-hang.html
    - shard-dg1:          NOTRUN -> [SKIP][369] ([i915#3708])
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-12/igt@prime_vgem@fence-write-hang.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-dg2:          NOTRUN -> [SKIP][370] ([i915#9917])
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-on.html

  
#### Possible fixes ####

  * igt@gem_eio@suspend:
    - shard-rkl:          [ABORT][371] ([i915#15131]) -> [PASS][372]
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-1/igt@gem_eio@suspend.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@gem_eio@suspend.html

  * igt@gem_exec_suspend@basic-s0:
    - shard-dg2:          [INCOMPLETE][373] ([i915#13356]) -> [PASS][374] +1 other test pass
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-rkl:          [INCOMPLETE][375] ([i915#13356]) -> [PASS][376] +1 other test pass
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-2/igt@gem_workarounds@suspend-resume-fd.html

  * igt@i915_selftest@live:
    - shard-mtlp:         [DMESG-FAIL][377] ([i915#12061] / [i915#15560]) -> [PASS][378]
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-mtlp-8/igt@i915_selftest@live.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-8/igt@i915_selftest@live.html

  * igt@i915_selftest@live@workarounds:
    - shard-mtlp:         [DMESG-FAIL][379] ([i915#12061]) -> [PASS][380]
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-mtlp-8/igt@i915_selftest@live@workarounds.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-8/igt@i915_selftest@live@workarounds.html

  * igt@i915_selftest@perf:
    - shard-dg2:          [DMESG-WARN][381] ([i915#14545]) -> [PASS][382]
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg2-7/igt@i915_selftest@perf.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-8/igt@i915_selftest@perf.html
    - shard-dg1:          [DMESG-WARN][383] ([i915#14545]) -> [PASS][384]
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg1-12/igt@i915_selftest@perf.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-12/igt@i915_selftest@perf.html
    - shard-snb:          [DMESG-WARN][385] ([i915#14545]) -> [PASS][386]
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-snb1/igt@i915_selftest@perf.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-snb1/igt@i915_selftest@perf.html

  * igt@i915_suspend@sysfs-reader:
    - shard-dg2:          [ABORT][387] ([i915#15140]) -> [PASS][388]
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg2-10/igt@i915_suspend@sysfs-reader.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-1/igt@i915_suspend@sysfs-reader.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
    - shard-glk:          [FAIL][389] ([i915#14888]) -> [PASS][390] +1 other test pass
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html

  * igt@kms_atomic_interruptible@legacy-pageflip:
    - shard-dg1:          [DMESG-WARN][391] ([i915#4423]) -> [PASS][392]
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg1-14/igt@kms_atomic_interruptible@legacy-pageflip.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-16/igt@kms_atomic_interruptible@legacy-pageflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-mtlp:         [FAIL][393] ([i915#15733] / [i915#5138]) -> [PASS][394]
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2:
    - shard-rkl:          [FAIL][395] ([i915#13566]) -> [PASS][396] +1 other test pass
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
    - shard-tglu:         [FAIL][397] ([i915#13566]) -> [PASS][398] +7 other tests pass
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-rkl:          [FAIL][399] ([i915#13027]) -> [PASS][400]
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
    - shard-tglu:         [FAIL][401] ([i915#13027]) -> [PASS][402] +1 other test pass
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-tglu-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-tglu-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_hdr@bpc-switch:
    - shard-rkl:          [SKIP][403] ([i915#3555] / [i915#8228]) -> [PASS][404]
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-2/igt@kms_hdr@bpc-switch.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_hdr@bpc-switch.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
    - shard-rkl:          [INCOMPLETE][405] ([i915#14412]) -> [PASS][406] +1 other test pass
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-rkl:          [SKIP][407] ([i915#15073]) -> [PASS][408]
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
    - shard-glk:          [INCOMPLETE][409] ([i915#12276]) -> [PASS][410]
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-glk9/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html

  
#### Warnings ####

  * igt@gem_exec_reloc@basic-cpu-gtt:
    - shard-rkl:          [SKIP][411] ([i915#14544] / [i915#3281]) -> [SKIP][412] ([i915#3281]) +2 other tests skip
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt.html

  * igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
    - shard-rkl:          [SKIP][413] ([i915#3281]) -> [SKIP][414] ([i915#14544] / [i915#3281]) +2 other tests skip
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html

  * igt@gem_pread@display:
    - shard-rkl:          [SKIP][415] ([i915#3282]) -> [SKIP][416] ([i915#14544] / [i915#3282]) +3 other tests skip
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-5/igt@gem_pread@display.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@gem_pread@display.html

  * igt@gem_pxp@hw-rejects-pxp-buffer:
    - shard-rkl:          [SKIP][417] ([i915#13717]) -> [SKIP][418] ([i915#13717] / [i915#14544])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-rkl:          [SKIP][419] ([i915#14544] / [i915#2527]) -> [SKIP][420] ([i915#2527])
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-rkl:          [SKIP][421] ([i915#14544] / [i915#5286]) -> [SKIP][422] ([i915#5286])
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-rkl:          [SKIP][423] ([i915#5286]) -> [SKIP][424] ([i915#14544] / [i915#5286])
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-90:
    - shard-rkl:          [SKIP][425] ([i915#3638]) -> [SKIP][426] ([i915#14544] / [i915#3638])
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-rkl:          [SKIP][427] ([i915#14544]) -> [SKIP][428]
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
    - shard-dg1:          [SKIP][429] ([i915#4423] / [i915#6095]) -> [SKIP][430] ([i915#6095]) +1 other test skip
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg1-17/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-19/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          [SKIP][431] ([i915#6095]) -> [SKIP][432] ([i915#14544] / [i915#6095]) +2 other tests skip
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
    - shard-rkl:          [SKIP][433] ([i915#14098] / [i915#6095]) -> [SKIP][434] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-rkl:          [SKIP][435] ([i915#3742]) -> [SKIP][436] ([i915#14544] / [i915#3742])
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-5/igt@kms_cdclk@plane-scaling.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-rkl:          [SKIP][437] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][438] ([i915#11151] / [i915#7828])
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
    - shard-rkl:          [SKIP][439] ([i915#11151] / [i915#7828]) -> [SKIP][440] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-rkl:          [SKIP][441] ([i915#15865]) -> [SKIP][442] ([i915#14544] / [i915#15865]) +1 other test skip
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-8/igt@kms_content_protection@atomic-dpms.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@legacy:
    - shard-dg2:          [FAIL][443] ([i915#7173]) -> [SKIP][444] ([i915#15865])
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg2-10/igt@kms_content_protection@legacy.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-8/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@mei-interface:
    - shard-dg1:          [SKIP][445] ([i915#9433]) -> [SKIP][446] ([i915#15865])
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg1-13/igt@kms_content_protection@mei-interface.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-16/igt@kms_content_protection@mei-interface.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-rkl:          [SKIP][447] ([i915#13049]) -> [SKIP][448] ([i915#13049] / [i915#14544])
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-rkl:          [SKIP][449] ([i915#4103]) -> [SKIP][450] ([i915#14544] / [i915#4103])
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-rkl:          [SKIP][451] -> [SKIP][452] ([i915#14544]) +6 other tests skip
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-rkl:          [SKIP][453] ([i915#14544] / [i915#4103]) -> [SKIP][454] ([i915#4103])
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-rkl:          [SKIP][455] ([i915#3840]) -> [SKIP][456] ([i915#14544] / [i915#3840])
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-rkl:          [SKIP][457] ([i915#9934]) -> [SKIP][458] ([i915#14544] / [i915#9934]) +2 other tests skip
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-glk:          [INCOMPLETE][459] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][460] ([i915#12745] / [i915#4839])
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-glk2/igt@kms_flip@2x-flip-vs-suspend.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk9/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-glk:          [INCOMPLETE][461] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][462] ([i915#12745] / [i915#4839] / [i915#6113])
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite:
    - shard-rkl:          [SKIP][463] ([i915#15102]) -> [SKIP][464] ([i915#14544] / [i915#15102]) +1 other test skip
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
    - shard-rkl:          [SKIP][465] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][466] ([i915#15102] / [i915#3023])
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt:
    - shard-rkl:          [SKIP][467] ([i915#15102] / [i915#3023]) -> [SKIP][468] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
    - shard-dg2:          [SKIP][469] ([i915#15102] / [i915#3458]) -> [SKIP][470] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
    - shard-rkl:          [SKIP][471] ([i915#14544] / [i915#15102]) -> [SKIP][472] ([i915#15102])
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu:
    - shard-dg1:          [SKIP][473] -> [SKIP][474] ([i915#4423])
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu.html
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-rkl:          [SKIP][475] ([i915#1825]) -> [SKIP][476] ([i915#14544] / [i915#1825]) +9 other tests skip
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt:
    - shard-rkl:          [SKIP][477] ([i915#14544] / [i915#1825]) -> [SKIP][478] ([i915#1825]) +7 other tests skip
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
    - shard-dg2:          [SKIP][479] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][480] ([i915#15102] / [i915#3458]) +3 other tests skip
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-rkl:          [SKIP][481] ([i915#15458]) -> [SKIP][482] ([i915#14544] / [i915#15458])
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-1/igt@kms_joiner@basic-ultra-joiner.html
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
    - shard-rkl:          [SKIP][483] ([i915#15709]) -> [SKIP][484] ([i915#14544] / [i915#15709])
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-rkl:          [SKIP][485] ([i915#14544] / [i915#5354]) -> [SKIP][486] ([i915#5354])
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-8/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_rpm@fences-dpms:
    - shard-dg1:          [SKIP][487] ([i915#4077]) -> [SKIP][488] ([i915#4077] / [i915#4423])
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg1-19/igt@kms_pm_rpm@fences-dpms.html
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg1-18/igt@kms_pm_rpm@fences-dpms.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
    - shard-rkl:          [SKIP][489] ([i915#11520] / [i915#14544]) -> [SKIP][490] ([i915#11520]) +1 other test skip
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
    - shard-rkl:          [SKIP][491] ([i915#11520]) -> [SKIP][492] ([i915#11520] / [i915#14544]) +4 other tests skip
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-7/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr@fbc-psr-suspend:
    - shard-rkl:          [SKIP][493] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][494] ([i915#1072] / [i915#9732]) +1 other test skip
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@kms_psr@fbc-psr-suspend.html
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-7/igt@kms_psr@fbc-psr-suspend.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - shard-rkl:          [SKIP][495] ([i915#1072] / [i915#9732]) -> [SKIP][496] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-2/igt@kms_psr@psr-sprite-plane-onoff.html
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          [SKIP][497] ([i915#15867]) -> [SKIP][498] ([i915#12755] / [i915#15867]) +1 other test skip
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-rkl:          [SKIP][499] ([i915#5289]) -> [SKIP][500] ([i915#14544] / [i915#5289])
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_scaling_modes@scaling-mode-none:
    - shard-rkl:          [SKIP][501] ([i915#14544] / [i915#3555]) -> [SKIP][502] ([i915#3555])
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-2/igt@kms_scaling_modes@scaling-mode-none.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-rkl:          [SKIP][503] ([i915#3555]) -> [SKIP][504] ([i915#14544] / [i915#3555])
   [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-2/igt@kms_setmode@basic-clone-single-crtc.html
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-rkl:          [SKIP][505] ([i915#14544] / [i915#9906]) -> [SKIP][506] ([i915#9906])
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
   [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-5/igt@kms_vrr@flip-basic-fastset.html

  * igt@perf_pmu@module-unload:
    - shard-mtlp:         [ABORT][507] ([i915#15778]) -> [INCOMPLETE][508] ([i915#13520])
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-mtlp-4/igt@perf_pmu@module-unload.html
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-mtlp-4/igt@perf_pmu@module-unload.html

  * igt@sriov_basic@bind-unbind-vf:
    - shard-rkl:          [SKIP][509] ([i915#9917]) -> [SKIP][510] ([i915#14544] / [i915#9917])
   [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18398/shard-rkl-8/igt@sriov_basic@bind-unbind-vf.html
   [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html

  
  [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
  [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
  [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
  [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
  [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
  [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
  [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
  [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
  [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
  [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
  [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
  [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
  [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
  [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [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#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
  [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
  [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#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
  [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
  [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
  [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
  [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
  [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
  [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
  [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
  [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
  [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
  [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
  [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
  [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
  [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
  [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
  [i915#15997]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15997
  [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#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#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#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
  [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
  [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
  [i915#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#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
  [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
  [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
  [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
  [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
  [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
  [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#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
  [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [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#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [i915#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
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_8881 -> IGTPW_15092
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_18398: 59b0faed1d239bc0f433999671c2d195bd62f9b8 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15092: 133ee94341a75e3bcaef96d667d144db6f7d7f7d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8881: aa5853ef5b379b1e4558218c21ef4caeae112184 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15092/index.html

[-- Attachment #2: Type: text/html, Size: 168792 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures
  2026-05-04  5:45 [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures Karthik B S
                   ` (2 preceding siblings ...)
  2026-05-04 10:41 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-05-05  6:34 ` Sebinraj, S
  2026-05-06  8:38   ` Karthik B S
  2026-05-05  7:02 ` Krzysztof Karas
  2026-05-06  4:38 ` Samala, Pranay
  5 siblings, 1 reply; 10+ messages in thread
From: Sebinraj, S @ 2026-05-05  6:34 UTC (permalink / raw)
  To: B S, Karthik, igt-dev@lists.freedesktop.org
  Cc: Samala, Pranay, Karas, Krzysztof, Santa, Carlos

[-- Attachment #1: Type: text/plain, Size: 5664 bytes --]

Hi Karthik,

Thanks for your patch here, it does address the test clean up hangs which can happen.
I have one minor observation though,

1. IMHO the global 'struct pending_fence_state' is accessed from a signal-handler context, marking it volatile avoids potential compiler register-caching issues.

Otherwise, the fix is correct and well-motivated, the active flag ordering around the NON_BLOCK commit is right and the exit handler cleanly
unblocks the kernel wait.

Feel free to add,
Reviewed-by: S Sebinraj <s.sebinraj@intel.com>

________________________________
From: B S, Karthik <karthik.b.s@intel.com>
Sent: Monday, May 4, 2026 11:15 AM
To: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>
Cc: Samala, Pranay <pranay.samala@intel.com>; B S, Karthik <karthik.b.s@intel.com>; Sebinraj, S <s.sebinraj@intel.com>; Karas, Krzysztof <krzysztof.karas@intel.com>
Subject: [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures

Track per-plane timeline/fence state across the in-flight NONBLOCK atomic
commit and install an exit handler to signal any still-unsignaled fences.
This prevents cleanup hangs when an assertion fires after commit
submission but before the test signals the blocking fence.

Cc: S Sebinraj <s.sebinraj@intel.com>
Cc: Krzysztof Karas <krzysztof.karas@intel.com>
Signed-off-by: Karthik B S <karthik.b.s@intel.com>
---
 tests/kms_explicit_fence.c | 58 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)

diff --git a/tests/kms_explicit_fence.c b/tests/kms_explicit_fence.c
index 2ec9bf39d..7ffdcb285 100644
--- a/tests/kms_explicit_fence.c
+++ b/tests/kms_explicit_fence.c
@@ -68,6 +68,42 @@ typedef struct {
         igt_pipe_crc_t *pipe_crc;
 } data_t;

+/*
+ * State tracked across the lifetime of an in-flight atomic commit that has
+ * IN_FENCEs attached. The exit handler uses this to unblock any pending
+ * commit if an assert hits between the commit and the point where
+ * the test would otherwise signal the unsignaled fence(s).
+ */
+static struct {
+       int timelines[NUM_PLANES];
+       bool needs_signal[NUM_PLANES];
+       bool active;
+} pending_fence_state = {
+       .timelines = { -1, -1, -1 },
+};
+
+static void signal_pending_fences(int sig)
+{
+       if (!pending_fence_state.active)
+               return;
+
+       for (int i = 0; i < NUM_PLANES; i++) {
+               if (pending_fence_state.timelines[i] < 0)
+                       continue;
+
+               if (pending_fence_state.needs_signal[i]) {
+                       /*
+                        * Best-effort: advance the timeline so the kernel
+                        * stops waiting on this IN_FENCE.
+                        */
+                       sw_sync_timeline_inc(pending_fence_state.timelines[i], 1);
+                       pending_fence_state.needs_signal[i] = false;
+               }
+       }
+
+       pending_fence_state.active = false;
+}
+
 static void setup_output(data_t *data)
 {
         igt_display_t *display = &data->display;
@@ -242,8 +278,14 @@ static void multiplane_atomic_fence_wait(data_t *data)

                 /* Attach IN_FENCE_FD to plane */
                 igt_plane_set_fence_fd(planes[i], fences[i]);
+
+               pending_fence_state.timelines[i] = timelines[i];
+               pending_fence_state.needs_signal[i] = !should_signal[i];
         }

+       /* Arm the exit handler before the NONBLOCK commit goes out. */
+       pending_fence_state.active = true;
+
         /* Swap overlay colors to detect scanout changes via CRC */
         igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
         igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
@@ -299,6 +341,7 @@ static void multiplane_atomic_fence_wait(data_t *data)
         igt_assert_crc_equal(&crc_before, &crc_after);

         /* Now signal the blocking fence (overlay2) */
+       pending_fence_state.needs_signal[PLANE_OVERLAY2_IDX] = false;
         sw_sync_timeline_inc(timelines[PLANE_OVERLAY2_IDX], 1);

         /* Wait for overlay2 fence to be signaled */
@@ -311,6 +354,12 @@ static void multiplane_atomic_fence_wait(data_t *data)
         igt_assert_eq(ret, 0);
         igt_assert_eq(sync_fence_status(out_fence), 1);

+       /*
+        * The pending atomic commit has now completed, so the exit handler
+        * no longer needs to rescue it.
+        */
+       pending_fence_state.active = false;
+
         /* Verify display has now updated (CRC should differ from baseline) */
         igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_final);

@@ -353,6 +402,13 @@ int igt_main()

                 data.pipe_crc = igt_pipe_crc_new(data.drm_fd, data.crtc->crtc_index,
                                                  IGT_PIPE_CRC_SOURCE_AUTO);
+
+               /*
+                * Make sure that on any failure mid-test, any unsignaled
+                * IN_FENCE that the kernel is still waiting on gets
+                * signaled so cleanup can complete instead of hanging.
+                */
+               igt_install_exit_handler(signal_pending_fences);
         }

         igt_describe("Test atomic commit with 3 planes (1 primary, 2 overlay) "
@@ -363,6 +419,8 @@ int igt_main()
                 multiplane_atomic_fence_wait(&data);

         igt_fixture() {
+               signal_pending_fences(0);
+
                 reset_display_state(&data);
                 igt_pipe_crc_free(data.pipe_crc);
                 cleanup_crtc(&data);
--
2.43.0


[-- Attachment #2: Type: text/html, Size: 12718 bytes --]

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures
  2026-05-04  5:45 [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures Karthik B S
                   ` (3 preceding siblings ...)
  2026-05-05  6:34 ` [PATCH i-g-t] " Sebinraj, S
@ 2026-05-05  7:02 ` Krzysztof Karas
  2026-05-06  8:41   ` Karthik B S
  2026-05-06  4:38 ` Samala, Pranay
  5 siblings, 1 reply; 10+ messages in thread
From: Krzysztof Karas @ 2026-05-05  7:02 UTC (permalink / raw)
  To: Karthik B S; +Cc: igt-dev, pranay.samala, S Sebinraj

Hi Karthik,

[...]

> +static struct {
> +	int timelines[NUM_PLANES];
> +	bool needs_signal[NUM_PLANES];
> +	bool active;
I wonder if this flag is needed. See below.

> +} pending_fence_state = {
> +	.timelines = { -1, -1, -1 },
> +};
> +
> +static void signal_pending_fences(int sig)
> +{
> +	if (!pending_fence_state.active)
> +		return;
The information about not needing to signal could be derived
from the fact that no timeline has been assigned.

> +
> +	for (int i = 0; i < NUM_PLANES; i++) {
> +		if (pending_fence_state.timelines[i] < 0)
> +			continue;
> +
> +		if (pending_fence_state.needs_signal[i]) {
> +			/*
> +			 * Best-effort: advance the timeline so the kernel
> +			 * stops waiting on this IN_FENCE.
> +			 */
> +			sw_sync_timeline_inc(pending_fence_state.timelines[i], 1);
> +			pending_fence_state.needs_signal[i] = false;
> +		}
> +	}
> +
> +	pending_fence_state.active = false;
> +}
> +
>  static void setup_output(data_t *data)
>  {
>  	igt_display_t *display = &data->display;
> @@ -242,8 +278,14 @@ static void multiplane_atomic_fence_wait(data_t *data)
>  
>  		/* Attach IN_FENCE_FD to plane */
>  		igt_plane_set_fence_fd(planes[i], fences[i]);
> +
> +		pending_fence_state.timelines[i] = timelines[i];
> +		pending_fence_state.needs_signal[i] = !should_signal[i];
>  	}
>  
> +	/* Arm the exit handler before the NONBLOCK commit goes out. */
> +	pending_fence_state.active = true;
Can "signal_pending_fences()" be called mid initialization of
"struct pending_fence_state"? If not, then this is truly
redundant.

> +
>  	/* Swap overlay colors to detect scanout changes via CRC */
>  	igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
>  	igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
> @@ -299,6 +341,7 @@ static void multiplane_atomic_fence_wait(data_t *data)
>  	igt_assert_crc_equal(&crc_before, &crc_after);
>  
>  	/* Now signal the blocking fence (overlay2) */
> +	pending_fence_state.needs_signal[PLANE_OVERLAY2_IDX] = false;
>  	sw_sync_timeline_inc(timelines[PLANE_OVERLAY2_IDX], 1);
>  
>  	/* Wait for overlay2 fence to be signaled */
> @@ -311,6 +354,12 @@ static void multiplane_atomic_fence_wait(data_t *data)
>  	igt_assert_eq(ret, 0);
>  	igt_assert_eq(sync_fence_status(out_fence), 1);
>  
> +	/*
> +	 * The pending atomic commit has now completed, so the exit handler
> +	 * no longer needs to rescue it.
> +	 */
> +	pending_fence_state.active = false;
> +
>  	/* Verify display has now updated (CRC should differ from baseline) */
>  	igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_final);
>  
> @@ -353,6 +402,13 @@ int igt_main()
>  
>  		data.pipe_crc = igt_pipe_crc_new(data.drm_fd, data.crtc->crtc_index,
>  						 IGT_PIPE_CRC_SOURCE_AUTO);
> +
> +		/*
> +		 * Make sure that on any failure mid-test, any unsignaled
> +		 * IN_FENCE that the kernel is still waiting on gets
> +		 * signaled so cleanup can complete instead of hanging.
> +		 */
> +		igt_install_exit_handler(signal_pending_fences);
>  	}
>  
>  	igt_describe("Test atomic commit with 3 planes (1 primary, 2 overlay) "
> @@ -363,6 +419,8 @@ int igt_main()
>  		multiplane_atomic_fence_wait(&data);
>  
>  	igt_fixture() {
> +		signal_pending_fences(0);
> +
You could skip this extra line.

>  		reset_display_state(&data);
>  		igt_pipe_crc_free(data.pipe_crc);
>  		cleanup_crtc(&data);
> -- 
> 2.43.0
> 

-- 
Best Regards,
Krzysztof

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures
  2026-05-04  5:45 [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures Karthik B S
                   ` (4 preceding siblings ...)
  2026-05-05  7:02 ` Krzysztof Karas
@ 2026-05-06  4:38 ` Samala, Pranay
  2026-05-06  8:42   ` Karthik B S
  5 siblings, 1 reply; 10+ messages in thread
From: Samala, Pranay @ 2026-05-06  4:38 UTC (permalink / raw)
  To: B S, Karthik, igt-dev@lists.freedesktop.org; +Cc: Sebinraj, S, Karas, Krzysztof

Hi Karthik,

> -----Original Message-----
> From: B S, Karthik <karthik.b.s@intel.com>
> Sent: Monday, May 4, 2026 11:15 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Samala, Pranay <pranay.samala@intel.com>; B S, Karthik
> <karthik.b.s@intel.com>; Sebinraj, S <s.sebinraj@intel.com>; Karas, Krzysztof
> <krzysztof.karas@intel.com>
> Subject: [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE
> waits on test failures
> 
> Track per-plane timeline/fence state across the in-flight NONBLOCK atomic
> commit and install an exit handler to signal any still-unsignaled fences.
> This prevents cleanup hangs when an assertion fires after commit submission
> but before the test signals the blocking fence.
> 
> Cc: S Sebinraj <s.sebinraj@intel.com>
> Cc: Krzysztof Karas <krzysztof.karas@intel.com>
> Signed-off-by: Karthik B S <karthik.b.s@intel.com>
> ---
>  tests/kms_explicit_fence.c | 58
> ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 58 insertions(+)
> 
> diff --git a/tests/kms_explicit_fence.c b/tests/kms_explicit_fence.c index
> 2ec9bf39d..7ffdcb285 100644
> --- a/tests/kms_explicit_fence.c
> +++ b/tests/kms_explicit_fence.c
> @@ -68,6 +68,42 @@ typedef struct {
>  	igt_pipe_crc_t *pipe_crc;
>  } data_t;
> 
> +/*
> + * State tracked across the lifetime of an in-flight atomic commit that
> +has
> + * IN_FENCEs attached. The exit handler uses this to unblock any
> +pending
> + * commit if an assert hits between the commit and the point where
> + * the test would otherwise signal the unsignaled fence(s).
> + */
> +static struct {
> +	int timelines[NUM_PLANES];
> +	bool needs_signal[NUM_PLANES];
> +	bool active;
> +} pending_fence_state = {
> +	.timelines = { -1, -1, -1 },
> +};
> +
> +static void signal_pending_fences(int sig) {
> +	if (!pending_fence_state.active)
> +		return;
> +
> +	for (int i = 0; i < NUM_PLANES; i++) {
> +		if (pending_fence_state.timelines[i] < 0)
> +			continue;
> +
> +		if (pending_fence_state.needs_signal[i]) {
> +			/*
> +			 * Best-effort: advance the timeline so the kernel
> +			 * stops waiting on this IN_FENCE.
> +			 */
> +
> 	sw_sync_timeline_inc(pending_fence_state.timelines[i], 1);
> +			pending_fence_state.needs_signal[i] = false;
> +		}
> +	}
> +
> +	pending_fence_state.active = false;
> +}
> +
>  static void setup_output(data_t *data)
>  {
>  	igt_display_t *display = &data->display; @@ -242,8 +278,14 @@
> static void multiplane_atomic_fence_wait(data_t *data)
> 
>  		/* Attach IN_FENCE_FD to plane */
>  		igt_plane_set_fence_fd(planes[i], fences[i]);
> +
> +		pending_fence_state.timelines[i] = timelines[i];
> +		pending_fence_state.needs_signal[i] = !should_signal[i];
>  	}
> 
> +	/* Arm the exit handler before the NONBLOCK commit goes out. */
> +	pending_fence_state.active = true;
> +
>  	/* Swap overlay colors to detect scanout changes via CRC */
>  	igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
>  	igt_plane_set_position(data->overlay1, OVERLAY1_POS_X,
> OVERLAY1_POS_Y); @@ -299,6 +341,7 @@ static void
> multiplane_atomic_fence_wait(data_t *data)
>  	igt_assert_crc_equal(&crc_before, &crc_after);
> 
>  	/* Now signal the blocking fence (overlay2) */
> +	pending_fence_state.needs_signal[PLANE_OVERLAY2_IDX] = false;
>  	sw_sync_timeline_inc(timelines[PLANE_OVERLAY2_IDX], 1);
> 
>  	/* Wait for overlay2 fence to be signaled */ @@ -311,6 +354,12 @@
> static void multiplane_atomic_fence_wait(data_t *data)
>  	igt_assert_eq(ret, 0);
>  	igt_assert_eq(sync_fence_status(out_fence), 1);
> 
> +	/*
> +	 * The pending atomic commit has now completed, so the exit
> handler
> +	 * no longer needs to rescue it.
> +	 */
> +	pending_fence_state.active = false;
> +

pending_fence_state.timelines[] retains stale fds after use. Consider resetting them to -1 in signal_pending_fences() after signaling, to avoid accidentally operating on a reused fd in edge cases.

Regards,
Pranay

>  	/* Verify display has now updated (CRC should differ from baseline)
> */
>  	igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_final);
> 
> @@ -353,6 +402,13 @@ int igt_main()
> 
>  		data.pipe_crc = igt_pipe_crc_new(data.drm_fd, data.crtc-
> >crtc_index,
> 
> IGT_PIPE_CRC_SOURCE_AUTO);
> +
> +		/*
> +		 * Make sure that on any failure mid-test, any unsignaled
> +		 * IN_FENCE that the kernel is still waiting on gets
> +		 * signaled so cleanup can complete instead of hanging.
> +		 */
> +		igt_install_exit_handler(signal_pending_fences);
>  	}
> 
>  	igt_describe("Test atomic commit with 3 planes (1 primary, 2 overlay)
> "
> @@ -363,6 +419,8 @@ int igt_main()
>  		multiplane_atomic_fence_wait(&data);
> 
>  	igt_fixture() {
> +		signal_pending_fences(0);
> +
>  		reset_display_state(&data);
>  		igt_pipe_crc_free(data.pipe_crc);
>  		cleanup_crtc(&data);
> --
> 2.43.0


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures
  2026-05-05  6:34 ` [PATCH i-g-t] " Sebinraj, S
@ 2026-05-06  8:38   ` Karthik B S
  0 siblings, 0 replies; 10+ messages in thread
From: Karthik B S @ 2026-05-06  8:38 UTC (permalink / raw)
  To: Sebinraj, S, igt-dev@lists.freedesktop.org
  Cc: Samala, Pranay, Karas, Krzysztof, Santa, Carlos

[-- Attachment #1: Type: text/plain, Size: 6704 bytes --]

Hi Sebinraj,


On 5/5/2026 12:04 PM, Sebinraj, S wrote:
> Hi Karthik,
>
> Thanks for your patch here, it does address the test clean up hangs 
> which can happen.
> I have one minor observation though,
>
> 1. IMHO the global 'struct pending_fence_state' is accessed from a 
> signal-handler context, marking it volatile avoids potential compiler 
> register-caching issues.

Thank you for the review.


IMHO, this shouldn't be a problem as we are using an atexit handler. Is 
it okay to keep as is?


Thanks and Regards,
Karthik.B.S

>
> Otherwise, the fix is correct and well-motivated, the active flag 
> ordering around the NON_BLOCK commit is right and the exit handler cleanly
> unblocks the kernel wait.
>
> Feel free to add,
> Reviewed-by: S Sebinraj <s.sebinraj@intel.com>
>
> ------------------------------------------------------------------------
> *From:* B S, Karthik <karthik.b.s@intel.com>
> *Sent:* Monday, May 4, 2026 11:15 AM
> *To:* igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>
> *Cc:* Samala, Pranay <pranay.samala@intel.com>; B S, Karthik 
> <karthik.b.s@intel.com>; Sebinraj, S <s.sebinraj@intel.com>; Karas, 
> Krzysztof <krzysztof.karas@intel.com>
> *Subject:* [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending 
> IN_FENCE waits on test failures
>
> Track per-plane timeline/fence state across the in-flight NONBLOCK atomic
> commit and install an exit handler to signal any still-unsignaled fences.
> This prevents cleanup hangs when an assertion fires after commit
> submission but before the test signals the blocking fence.
>
> Cc: S Sebinraj <s.sebinraj@intel.com>
> Cc: Krzysztof Karas <krzysztof.karas@intel.com>
> Signed-off-by: Karthik B S <karthik.b.s@intel.com>
> ---
>  tests/kms_explicit_fence.c | 58 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 58 insertions(+)
>
> diff --git a/tests/kms_explicit_fence.c b/tests/kms_explicit_fence.c
> index 2ec9bf39d..7ffdcb285 100644
> --- a/tests/kms_explicit_fence.c
> +++ b/tests/kms_explicit_fence.c
> @@ -68,6 +68,42 @@ typedef struct {
>          igt_pipe_crc_t *pipe_crc;
>  } data_t;
>
> +/*
> + * State tracked across the lifetime of an in-flight atomic commit 
> that has
> + * IN_FENCEs attached. The exit handler uses this to unblock any pending
> + * commit if an assert hits between the commit and the point where
> + * the test would otherwise signal the unsignaled fence(s).
> + */
> +static struct {
> +       int timelines[NUM_PLANES];
> +       bool needs_signal[NUM_PLANES];
> +       bool active;
> +} pending_fence_state = {
> +       .timelines = { -1, -1, -1 },
> +};
> +
> +static void signal_pending_fences(int sig)
> +{
> +       if (!pending_fence_state.active)
> +               return;
> +
> +       for (int i = 0; i < NUM_PLANES; i++) {
> +               if (pending_fence_state.timelines[i] < 0)
> +                       continue;
> +
> +               if (pending_fence_state.needs_signal[i]) {
> +                       /*
> +                        * Best-effort: advance the timeline so the kernel
> +                        * stops waiting on this IN_FENCE.
> +                        */
> + sw_sync_timeline_inc(pending_fence_state.timelines[i], 1);
> +                       pending_fence_state.needs_signal[i] = false;
> +               }
> +       }
> +
> +       pending_fence_state.active = false;
> +}
> +
>  static void setup_output(data_t *data)
>  {
>          igt_display_t *display = &data->display;
> @@ -242,8 +278,14 @@ static void multiplane_atomic_fence_wait(data_t 
> *data)
>
>                  /* Attach IN_FENCE_FD to plane */
>                  igt_plane_set_fence_fd(planes[i], fences[i]);
> +
> +               pending_fence_state.timelines[i] = timelines[i];
> +               pending_fence_state.needs_signal[i] = !should_signal[i];
>          }
>
> +       /* Arm the exit handler before the NONBLOCK commit goes out. */
> +       pending_fence_state.active = true;
> +
>          /* Swap overlay colors to detect scanout changes via CRC */
>          igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
>          igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, 
> OVERLAY1_POS_Y);
> @@ -299,6 +341,7 @@ static void multiplane_atomic_fence_wait(data_t *data)
>          igt_assert_crc_equal(&crc_before, &crc_after);
>
>          /* Now signal the blocking fence (overlay2) */
> +       pending_fence_state.needs_signal[PLANE_OVERLAY2_IDX] = false;
>          sw_sync_timeline_inc(timelines[PLANE_OVERLAY2_IDX], 1);
>
>          /* Wait for overlay2 fence to be signaled */
> @@ -311,6 +354,12 @@ static void multiplane_atomic_fence_wait(data_t 
> *data)
>          igt_assert_eq(ret, 0);
>          igt_assert_eq(sync_fence_status(out_fence), 1);
>
> +       /*
> +        * The pending atomic commit has now completed, so the exit 
> handler
> +        * no longer needs to rescue it.
> +        */
> +       pending_fence_state.active = false;
> +
>          /* Verify display has now updated (CRC should differ from 
> baseline) */
>          igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, 
> &crc_final);
>
> @@ -353,6 +402,13 @@ int igt_main()
>
>                  data.pipe_crc = igt_pipe_crc_new(data.drm_fd, 
> data.crtc->crtc_index,
> IGT_PIPE_CRC_SOURCE_AUTO);
> +
> +               /*
> +                * Make sure that on any failure mid-test, any unsignaled
> +                * IN_FENCE that the kernel is still waiting on gets
> +                * signaled so cleanup can complete instead of hanging.
> +                */
> +               igt_install_exit_handler(signal_pending_fences);
>          }
>
>          igt_describe("Test atomic commit with 3 planes (1 primary, 2 
> overlay) "
> @@ -363,6 +419,8 @@ int igt_main()
>                  multiplane_atomic_fence_wait(&data);
>
>          igt_fixture() {
> +               signal_pending_fences(0);
> +
>                  reset_display_state(&data);
>                  igt_pipe_crc_free(data.pipe_crc);
>                  cleanup_crtc(&data);
> --
> 2.43.0
>

[-- Attachment #2: Type: text/html, Size: 15608 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures
  2026-05-05  7:02 ` Krzysztof Karas
@ 2026-05-06  8:41   ` Karthik B S
  0 siblings, 0 replies; 10+ messages in thread
From: Karthik B S @ 2026-05-06  8:41 UTC (permalink / raw)
  To: Krzysztof Karas; +Cc: igt-dev, pranay.samala, S Sebinraj

Hi Krzysztof,

On 5/5/2026 12:32 PM, Krzysztof Karas wrote:
> Hi Karthik,
>
> [...]
>
>> +static struct {
>> +	int timelines[NUM_PLANES];
>> +	bool needs_signal[NUM_PLANES];
>> +	bool active;
> I wonder if this flag is needed. See below.
>
>> +} pending_fence_state = {
>> +	.timelines = { -1, -1, -1 },
>> +};
>> +
>> +static void signal_pending_fences(int sig)
>> +{
>> +	if (!pending_fence_state.active)
>> +		return;
> The information about not needing to signal could be derived
> from the fact that no timeline has been assigned.

Thank you for the review.

Agreed, will fix this in v2.

>
>> +
>> +	for (int i = 0; i < NUM_PLANES; i++) {
>> +		if (pending_fence_state.timelines[i] < 0)
>> +			continue;
>> +
>> +		if (pending_fence_state.needs_signal[i]) {
>> +			/*
>> +			 * Best-effort: advance the timeline so the kernel
>> +			 * stops waiting on this IN_FENCE.
>> +			 */
>> +			sw_sync_timeline_inc(pending_fence_state.timelines[i], 1);
>> +			pending_fence_state.needs_signal[i] = false;
>> +		}
>> +	}
>> +
>> +	pending_fence_state.active = false;
>> +}
>> +
>>   static void setup_output(data_t *data)
>>   {
>>   	igt_display_t *display = &data->display;
>> @@ -242,8 +278,14 @@ static void multiplane_atomic_fence_wait(data_t *data)
>>   
>>   		/* Attach IN_FENCE_FD to plane */
>>   		igt_plane_set_fence_fd(planes[i], fences[i]);
>> +
>> +		pending_fence_state.timelines[i] = timelines[i];
>> +		pending_fence_state.needs_signal[i] = !should_signal[i];
>>   	}
>>   
>> +	/* Arm the exit handler before the NONBLOCK commit goes out. */
>> +	pending_fence_state.active = true;
> Can "signal_pending_fences()" be called mid initialization of
> "struct pending_fence_state"? If not, then this is truly
> redundant.
Agreed, this is redundant. Will remove this variable.
>
>> +
>>   	/* Swap overlay colors to detect scanout changes via CRC */
>>   	igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
>>   	igt_plane_set_position(data->overlay1, OVERLAY1_POS_X, OVERLAY1_POS_Y);
>> @@ -299,6 +341,7 @@ static void multiplane_atomic_fence_wait(data_t *data)
>>   	igt_assert_crc_equal(&crc_before, &crc_after);
>>   
>>   	/* Now signal the blocking fence (overlay2) */
>> +	pending_fence_state.needs_signal[PLANE_OVERLAY2_IDX] = false;
>>   	sw_sync_timeline_inc(timelines[PLANE_OVERLAY2_IDX], 1);
>>   
>>   	/* Wait for overlay2 fence to be signaled */
>> @@ -311,6 +354,12 @@ static void multiplane_atomic_fence_wait(data_t *data)
>>   	igt_assert_eq(ret, 0);
>>   	igt_assert_eq(sync_fence_status(out_fence), 1);
>>   
>> +	/*
>> +	 * The pending atomic commit has now completed, so the exit handler
>> +	 * no longer needs to rescue it.
>> +	 */
>> +	pending_fence_state.active = false;
>> +
>>   	/* Verify display has now updated (CRC should differ from baseline) */
>>   	igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_final);
>>   
>> @@ -353,6 +402,13 @@ int igt_main()
>>   
>>   		data.pipe_crc = igt_pipe_crc_new(data.drm_fd, data.crtc->crtc_index,
>>   						 IGT_PIPE_CRC_SOURCE_AUTO);
>> +
>> +		/*
>> +		 * Make sure that on any failure mid-test, any unsignaled
>> +		 * IN_FENCE that the kernel is still waiting on gets
>> +		 * signaled so cleanup can complete instead of hanging.
>> +		 */
>> +		igt_install_exit_handler(signal_pending_fences);
>>   	}
>>   
>>   	igt_describe("Test atomic commit with 3 planes (1 primary, 2 overlay) "
>> @@ -363,6 +419,8 @@ int igt_main()
>>   		multiplane_atomic_fence_wait(&data);
>>   
>>   	igt_fixture() {
>> +		signal_pending_fences(0);
>> +
> You could skip this extra line.

Will update this in v2.

Thanks and Regards,
Karthik.B.S
>
>>   		reset_display_state(&data);
>>   		igt_pipe_crc_free(data.pipe_crc);
>>   		cleanup_crtc(&data);
>> -- 
>> 2.43.0
>>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures
  2026-05-06  4:38 ` Samala, Pranay
@ 2026-05-06  8:42   ` Karthik B S
  0 siblings, 0 replies; 10+ messages in thread
From: Karthik B S @ 2026-05-06  8:42 UTC (permalink / raw)
  To: Samala, Pranay, igt-dev@lists.freedesktop.org
  Cc: Sebinraj, S, Karas, Krzysztof

Hi Pranay,

On 5/6/2026 10:08 AM, Samala, Pranay wrote:
> Hi Karthik,
>
>> -----Original Message-----
>> From: B S, Karthik <karthik.b.s@intel.com>
>> Sent: Monday, May 4, 2026 11:15 AM
>> To: igt-dev@lists.freedesktop.org
>> Cc: Samala, Pranay <pranay.samala@intel.com>; B S, Karthik
>> <karthik.b.s@intel.com>; Sebinraj, S <s.sebinraj@intel.com>; Karas, Krzysztof
>> <krzysztof.karas@intel.com>
>> Subject: [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE
>> waits on test failures
>>
>> Track per-plane timeline/fence state across the in-flight NONBLOCK atomic
>> commit and install an exit handler to signal any still-unsignaled fences.
>> This prevents cleanup hangs when an assertion fires after commit submission
>> but before the test signals the blocking fence.
>>
>> Cc: S Sebinraj <s.sebinraj@intel.com>
>> Cc: Krzysztof Karas <krzysztof.karas@intel.com>
>> Signed-off-by: Karthik B S <karthik.b.s@intel.com>
>> ---
>>   tests/kms_explicit_fence.c | 58
>> ++++++++++++++++++++++++++++++++++++++
>>   1 file changed, 58 insertions(+)
>>
>> diff --git a/tests/kms_explicit_fence.c b/tests/kms_explicit_fence.c index
>> 2ec9bf39d..7ffdcb285 100644
>> --- a/tests/kms_explicit_fence.c
>> +++ b/tests/kms_explicit_fence.c
>> @@ -68,6 +68,42 @@ typedef struct {
>>   	igt_pipe_crc_t *pipe_crc;
>>   } data_t;
>>
>> +/*
>> + * State tracked across the lifetime of an in-flight atomic commit that
>> +has
>> + * IN_FENCEs attached. The exit handler uses this to unblock any
>> +pending
>> + * commit if an assert hits between the commit and the point where
>> + * the test would otherwise signal the unsignaled fence(s).
>> + */
>> +static struct {
>> +	int timelines[NUM_PLANES];
>> +	bool needs_signal[NUM_PLANES];
>> +	bool active;
>> +} pending_fence_state = {
>> +	.timelines = { -1, -1, -1 },
>> +};
>> +
>> +static void signal_pending_fences(int sig) {
>> +	if (!pending_fence_state.active)
>> +		return;
>> +
>> +	for (int i = 0; i < NUM_PLANES; i++) {
>> +		if (pending_fence_state.timelines[i] < 0)
>> +			continue;
>> +
>> +		if (pending_fence_state.needs_signal[i]) {
>> +			/*
>> +			 * Best-effort: advance the timeline so the kernel
>> +			 * stops waiting on this IN_FENCE.
>> +			 */
>> +
>> 	sw_sync_timeline_inc(pending_fence_state.timelines[i], 1);
>> +			pending_fence_state.needs_signal[i] = false;
>> +		}
>> +	}
>> +
>> +	pending_fence_state.active = false;
>> +}
>> +
>>   static void setup_output(data_t *data)
>>   {
>>   	igt_display_t *display = &data->display; @@ -242,8 +278,14 @@
>> static void multiplane_atomic_fence_wait(data_t *data)
>>
>>   		/* Attach IN_FENCE_FD to plane */
>>   		igt_plane_set_fence_fd(planes[i], fences[i]);
>> +
>> +		pending_fence_state.timelines[i] = timelines[i];
>> +		pending_fence_state.needs_signal[i] = !should_signal[i];
>>   	}
>>
>> +	/* Arm the exit handler before the NONBLOCK commit goes out. */
>> +	pending_fence_state.active = true;
>> +
>>   	/* Swap overlay colors to detect scanout changes via CRC */
>>   	igt_plane_set_fb(data->overlay1, &data->overlay2_fb);
>>   	igt_plane_set_position(data->overlay1, OVERLAY1_POS_X,
>> OVERLAY1_POS_Y); @@ -299,6 +341,7 @@ static void
>> multiplane_atomic_fence_wait(data_t *data)
>>   	igt_assert_crc_equal(&crc_before, &crc_after);
>>
>>   	/* Now signal the blocking fence (overlay2) */
>> +	pending_fence_state.needs_signal[PLANE_OVERLAY2_IDX] = false;
>>   	sw_sync_timeline_inc(timelines[PLANE_OVERLAY2_IDX], 1);
>>
>>   	/* Wait for overlay2 fence to be signaled */ @@ -311,6 +354,12 @@
>> static void multiplane_atomic_fence_wait(data_t *data)
>>   	igt_assert_eq(ret, 0);
>>   	igt_assert_eq(sync_fence_status(out_fence), 1);
>>
>> +	/*
>> +	 * The pending atomic commit has now completed, so the exit
>> handler
>> +	 * no longer needs to rescue it.
>> +	 */
>> +	pending_fence_state.active = false;
>> +
> pending_fence_state.timelines[] retains stale fds after use. Consider resetting them to -1 in signal_pending_fences() after signaling, to avoid accidentally operating on a reused fd in edge cases.

Thank you for the review.

Agreed, will add this in v2.

Thanks and Regards,
Karthik.B.S
>
> Regards,
> Pranay
>
>>   	/* Verify display has now updated (CRC should differ from baseline)
>> */
>>   	igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc_final);
>>
>> @@ -353,6 +402,13 @@ int igt_main()
>>
>>   		data.pipe_crc = igt_pipe_crc_new(data.drm_fd, data.crtc-
>>> crtc_index,
>> IGT_PIPE_CRC_SOURCE_AUTO);
>> +
>> +		/*
>> +		 * Make sure that on any failure mid-test, any unsignaled
>> +		 * IN_FENCE that the kernel is still waiting on gets
>> +		 * signaled so cleanup can complete instead of hanging.
>> +		 */
>> +		igt_install_exit_handler(signal_pending_fences);
>>   	}
>>
>>   	igt_describe("Test atomic commit with 3 planes (1 primary, 2 overlay)
>> "
>> @@ -363,6 +419,8 @@ int igt_main()
>>   		multiplane_atomic_fence_wait(&data);
>>
>>   	igt_fixture() {
>> +		signal_pending_fences(0);
>> +
>>   		reset_display_state(&data);
>>   		igt_pipe_crc_free(data.pipe_crc);
>>   		cleanup_crtc(&data);
>> --
>> 2.43.0

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2026-05-06  8:43 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-04  5:45 [PATCH i-g-t] tests/kms_explicit_fence: Rescue pending IN_FENCE waits on test failures Karthik B S
2026-05-04  7:27 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-05-04  7:28 ` ✓ i915.CI.BAT: " Patchwork
2026-05-04 10:41 ` ✗ i915.CI.Full: failure " Patchwork
2026-05-05  6:34 ` [PATCH i-g-t] " Sebinraj, S
2026-05-06  8:38   ` Karthik B S
2026-05-05  7:02 ` Krzysztof Karas
2026-05-06  8:41   ` Karthik B S
2026-05-06  4:38 ` Samala, Pranay
2026-05-06  8:42   ` Karthik B S

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox