All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes
@ 2022-05-17  1:37 Jessica Zhang
  2022-05-17  2:17 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev4) Patchwork
                   ` (6 more replies)
  0 siblings, 7 replies; 18+ messages in thread
From: Jessica Zhang @ 2022-05-17  1:37 UTC (permalink / raw)
  To: igt-dev; +Cc: robdclark, petri.latvala, quic_aravindh

Currently, IGT populates pipe->planes using possible_crtcs and assumes
that the first primary plane it encounters is the one being actively
used by the pipe.

This is not always true in cases where there are multiple possible
primary planes. This will cause problems whenever IGT calls
drmModePageFlip since drmModePageFlip will use the primary plane
assigned to the pipe by the driver to perform the page flip [1]. So a
mismatch between the primary plane used by IGT and the driver can cause
the page flip to fail.

To fix this, let's implement a helper method to get the primary plane
that's being assigned to the pipe by the driver. We can then call it
during igt_display_require() and, if there's a mismatch between
pipe->plane_primary and the assigned primary plane's index, we can swap
the unused primary plane with the driver-assigned primary plane

[1]
https://gitlab.freedesktop.org/drm/msm/-/blob/msm-next/drivers/gpu/drm/drm_plane.c#L1234

Changes since v1:
- Instead of swapping the pointers of the planes within the array, we
  can just change the value of pipe->plane_primary.

Changes since v2:
- Reverted `if (type == DRM_PLANE_TYPE_PRIMARY)` conditional then added
  a nested if statement to increment num_primary_planes if plane type is
  primary.

Changes since v3:
- Created helper method igt_pipe_has_valid_output and added a check for
  if pipe has valid output before getting the output of a pipe to get
  the assigned primary plane
- Reverted back to using igt_swap to swap the order of the primary
  planes within the pipe->planes array. Some kms_* tests use
  igt_output_get_plane(output, 0) to get the primary plane, so this will
  avoid regressions in those tests.
- Updated the plane->index of the primary planes that are being swapped.

Suggested-by: Rob Clark <robdclark@chromium.org>
Signed-off-by: Jessica Zhang <quic_jesszhan@quicinc.com>
---
 lib/igt_kms.c | 110 ++++++++++++++++++++++++++++++++++++++++++++++----
 lib/igt_kms.h |   1 +
 2 files changed, 103 insertions(+), 8 deletions(-)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 7838ff283b62..a97e0b72d6cf 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -751,6 +751,52 @@ igt_fill_pipe_props(igt_display_t *display, igt_pipe_t *pipe,
 	drmModeFreeObjectProperties(props);
 }
 
+static igt_plane_t *igt_get_assigned_primary(igt_output_t *output, igt_pipe_t *pipe)
+{
+	int drm_fd = output->display->drm_fd;
+	drmModeModeInfo *mode;
+	struct igt_fb fb;
+	igt_plane_t *plane = NULL;
+	uint32_t crtc_id;
+	int i;
+
+	mode = igt_output_get_mode(output);
+
+	igt_create_color_fb(drm_fd, mode->hdisplay, mode->vdisplay,
+						DRM_FORMAT_XRGB8888,
+						DRM_FORMAT_MOD_LINEAR,
+						1.0, 1.0, 1.0, &fb);
+
+	crtc_id = pipe->crtc_id;
+
+	/*
+	 * Do a legacy SETCRTC to start things off, so that we know that
+	 * the kernel will pick the correct primary plane and attach it
+	 * to the CRTC. This lets us handle the case that there are
+	 * multiple primary planes (one per CRTC), but which can *also*
+	 * be attached to other CRTCs
+	 */
+	igt_assert(drmModeSetCrtc(output->display->drm_fd, crtc_id, fb.fb_id,
+							  0, 0, &output->id, 1, mode) == 0);
+
+	for(i = 0; i < pipe->n_planes; i++) {
+		if (pipe->planes[i].type != DRM_PLANE_TYPE_PRIMARY)
+			continue;
+
+		if (igt_plane_get_prop(&pipe->planes[i], IGT_PLANE_CRTC_ID) != crtc_id)
+			continue;
+
+		plane = &pipe->planes[i];
+		break;
+	}
+
+	/* Removing the FB will also shut down the display for us: */
+	igt_remove_fb(drm_fd, &fb);
+	igt_assert_f(plane, "Valid assigned primary plane for CRTC_ID %d not found.\n", crtc_id);
+
+	return plane;
+}
+
 /**
  * kmstest_pipe_name:
  * @pipe: display pipe
@@ -2150,6 +2196,18 @@ __get_crtc_mask_for_pipe(drmModeRes *resources, igt_pipe_t *pipe)
 	return (1 << offset);
 }
 
+static bool igt_pipe_has_valid_output(igt_display_t *display, enum pipe pipe)
+{
+	igt_output_t *output;
+
+	igt_require_pipe(display, pipe);
+
+	for_each_valid_output_on_pipe(display, pipe, output)
+		return true;
+
+	return false;
+}
+
 /**
  * igt_display_require:
  * @display: a pointer to an #igt_display_t structure
@@ -2272,6 +2330,7 @@ void igt_display_require(igt_display_t *display, int drm_fd)
 		pipe->plane_cursor = -1;
 		pipe->plane_primary = -1;
 		pipe->planes = NULL;
+		pipe->num_primary_planes = 0;
 
 		igt_fill_pipe_props(display, pipe, IGT_NUM_CRTC_PROPS, igt_crtc_prop_names);
 
@@ -2306,12 +2365,20 @@ void igt_display_require(igt_display_t *display, int drm_fd)
 				plane = &pipe->planes[0];
 				plane->index = 0;
 				pipe->plane_primary = 0;
+				pipe->num_primary_planes++;
 			} else if (type == DRM_PLANE_TYPE_CURSOR && pipe->plane_cursor == -1) {
 				plane = &pipe->planes[last_plane];
 				plane->index = last_plane;
 				pipe->plane_cursor = last_plane;
 				display->has_cursor_plane = true;
 			} else {
+				/*
+				 * Increment num_primary_planes for any extra
+				 * primary plane found.
+				 */
+				if (type == DRM_PLANE_TYPE_PRIMARY)
+					pipe->num_primary_planes++;
+
 				plane = &pipe->planes[p];
 				plane->index = p++;
 			}
@@ -2392,6 +2459,39 @@ void igt_display_require(igt_display_t *display, int drm_fd)
 out:
 	LOG_UNINDENT(display);
 
+	for_each_pipe(display, i) {
+		igt_pipe_t *pipe = &display->pipes[i];
+
+		if (!igt_pipe_has_valid_output(display, i))
+			continue;
+
+		igt_output_t *output = igt_get_single_output_for_pipe(display, i);
+
+		if (pipe->num_primary_planes > 1) {
+			igt_plane_t *primary = &pipe->planes[pipe->plane_primary];
+			igt_plane_t *assigned_primary = igt_get_assigned_primary(output, pipe);
+			int assigned_primary_index = assigned_primary->index;
+
+			/*
+			 * If the driver-assigned primary plane isn't at the
+			 * pipe->plane_primary index, swap it with the plane
+			 * that's currently at the plane_primary index and
+			 * update plane->index accordingly.
+			 *
+			 * This way, we can preserve pipe->plane_primary as 0
+			 * so that tests that assume pipe->plane_primary is always 0
+			 * won't break.
+			 */
+			if (assigned_primary_index != pipe->plane_primary) {
+				assigned_primary->index = pipe->plane_primary;
+				primary->index = assigned_primary_index;
+
+				igt_swap(pipe->planes[assigned_primary_index],
+						pipe->planes[pipe->plane_primary]);
+			}
+		}
+	}
+
 	if (display->n_pipes && display->n_outputs)
 		igt_enable_connectors(drm_fd);
 	else
@@ -2438,14 +2538,8 @@ void igt_display_require_output(igt_display_t *display)
  */
 void igt_display_require_output_on_pipe(igt_display_t *display, enum pipe pipe)
 {
-	igt_output_t *output;
-
-	igt_require_pipe(display, pipe);
-
-	for_each_valid_output_on_pipe(display, pipe, output)
-		return;
-
-	igt_skip("No valid connector found on pipe %s\n", kmstest_pipe_name(pipe));
+	if (!igt_pipe_has_valid_output(display, pipe))
+		igt_skip("No valid connector found on pipe %s\n", kmstest_pipe_name(pipe));
 }
 
 /**
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index e9ecd21e9824..4949b7b39e18 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -383,6 +383,7 @@ struct igt_pipe {
 	bool enabled;
 
 	int n_planes;
+	int num_primary_planes;
 	int plane_cursor;
 	int plane_primary;
 	igt_plane_t *planes;
-- 
2.31.0

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

* [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev4)
  2022-05-17  1:37 [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes Jessica Zhang
@ 2022-05-17  2:17 ` Patchwork
  2022-05-17 17:33 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev5) Patchwork
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2022-05-17  2:17 UTC (permalink / raw)
  To: Jessica Zhang; +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev4)
URL   : https://patchwork.freedesktop.org/series/103897/
State : failure

== Summary ==

CI Bug Log - changes from IGT_6474 -> IGTPW_7114
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_7114 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_7114, please notify your bug team 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_7114/index.html

Participating hosts (41 -> 43)
------------------------------

  Additional (3): bat-dg2-8 fi-rkl-11600 bat-dg2-9 
  Missing    (1): bat-jsl-2 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_suspend@basic-s2idle-without-i915:
    - fi-cfl-8109u:       [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6474/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@i915_suspend@basic-s3-without-i915:
    - {bat-dg2-8}:        NOTRUN -> [SKIP][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_huc_copy@huc-copy:
    - fi-rkl-11600:       NOTRUN -> [SKIP][4] ([i915#2190])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@basic:
    - fi-rkl-11600:       NOTRUN -> [SKIP][5] ([i915#4613]) +3 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-rkl-11600/igt@gem_lmem_swapping@basic.html

  * igt@gem_tiled_pread_basic:
    - fi-rkl-11600:       NOTRUN -> [SKIP][6] ([i915#3282])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-rkl-11600/igt@gem_tiled_pread_basic.html

  * igt@i915_pm_backlight@basic-brightness:
    - fi-rkl-11600:       NOTRUN -> [SKIP][7] ([i915#3012])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-rkl-11600/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_pm_rpm@module-reload:
    - fi-cfl-8109u:       [PASS][8] -> [DMESG-FAIL][9] ([i915#62])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6474/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@gem_contexts:
    - fi-bdw-5557u:       [PASS][10] -> [INCOMPLETE][11] ([i915#5502] / [i915#5801])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6474/fi-bdw-5557u/igt@i915_selftest@live@gem_contexts.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-bdw-5557u/igt@i915_selftest@live@gem_contexts.html

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-bsw-nick:        [PASS][12] -> [DMESG-FAIL][13] ([i915#5334])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6474/fi-bsw-nick/igt@i915_selftest@live@gt_heartbeat.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-bsw-nick/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@gtt:
    - fi-bdw-5557u:       [PASS][14] -> [DMESG-FAIL][15] ([i915#3674])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6474/fi-bdw-5557u/igt@i915_selftest@live@gtt.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-bdw-5557u/igt@i915_selftest@live@gtt.html

  * igt@i915_selftest@live@memory_region:
    - fi-cfl-8109u:       [PASS][16] -> [DMESG-WARN][17] ([i915#5904]) +11 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6474/fi-cfl-8109u/igt@i915_selftest@live@memory_region.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-cfl-8109u/igt@i915_selftest@live@memory_region.html

  * igt@i915_suspend@basic-s3-without-i915:
    - fi-rkl-11600:       NOTRUN -> [INCOMPLETE][18] ([i915#5982])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_busy@basic@flip:
    - bat-adlp-4:         [PASS][19] -> [DMESG-WARN][20] ([i915#3576])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6474/bat-adlp-4/igt@kms_busy@basic@flip.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/bat-adlp-4/igt@kms_busy@basic@flip.html

  * igt@kms_chamelium@dp-crc-fast:
    - fi-rkl-11600:       NOTRUN -> [SKIP][21] ([fdo#111827]) +7 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-rkl-11600/igt@kms_chamelium@dp-crc-fast.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - fi-rkl-11600:       NOTRUN -> [SKIP][22] ([i915#4070] / [i915#4103]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - fi-rkl-11600:       NOTRUN -> [SKIP][23] ([fdo#109285] / [i915#4098])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b:
    - fi-cfl-8109u:       [PASS][24] -> [DMESG-WARN][25] ([i915#62]) +15 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6474/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-rkl-11600:       NOTRUN -> [SKIP][26] ([i915#4070] / [i915#533])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-rkl-11600/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_psr@primary_mmap_gtt:
    - fi-rkl-11600:       NOTRUN -> [SKIP][27] ([i915#1072]) +3 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-rkl-11600/igt@kms_psr@primary_mmap_gtt.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - fi-rkl-11600:       NOTRUN -> [SKIP][28] ([i915#3555] / [i915#4098])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-userptr:
    - fi-rkl-11600:       NOTRUN -> [SKIP][29] ([i915#3301] / [i915#3708])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-rkl-11600/igt@prime_vgem@basic-userptr.html

  * igt@prime_vgem@basic-write:
    - fi-rkl-11600:       NOTRUN -> [SKIP][30] ([i915#3291] / [i915#3708]) +2 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-rkl-11600/igt@prime_vgem@basic-write.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s0@smem:
    - {fi-ehl-2}:         [DMESG-WARN][31] ([i915#5122]) -> [PASS][32]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6474/fi-ehl-2/igt@gem_exec_suspend@basic-s0@smem.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/fi-ehl-2/igt@gem_exec_suspend@basic-s0@smem.html

  * igt@i915_selftest@live@hangcheck:
    - bat-dg1-5:          [DMESG-FAIL][33] ([i915#4494] / [i915#4957]) -> [PASS][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6474/bat-dg1-5/igt@i915_selftest@live@hangcheck.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/bat-dg1-5/igt@i915_selftest@live@hangcheck.html

  * igt@kms_busy@basic@modeset:
    - bat-adlp-4:         [DMESG-WARN][35] ([i915#3576]) -> [PASS][36] +1 similar issue
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6474/bat-adlp-4/igt@kms_busy@basic@modeset.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/bat-adlp-4/igt@kms_busy@basic@modeset.html

  * igt@kms_flip@basic-flip-vs-modeset@b-edp1:
    - {bat-adlp-6}:       [DMESG-WARN][37] ([i915#3576]) -> [PASS][38] +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6474/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@b-edp1.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@b-edp1.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
  [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595
  [i915#3674]: https://gitlab.freedesktop.org/drm/intel/issues/3674
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
  [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
  [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5502]: https://gitlab.freedesktop.org/drm/intel/issues/5502
  [i915#5537]: https://gitlab.freedesktop.org/drm/intel/issues/5537
  [i915#5763]: https://gitlab.freedesktop.org/drm/intel/issues/5763
  [i915#5801]: https://gitlab.freedesktop.org/drm/intel/issues/5801
  [i915#5879]: https://gitlab.freedesktop.org/drm/intel/issues/5879
  [i915#5885]: https://gitlab.freedesktop.org/drm/intel/issues/5885
  [i915#5904]: https://gitlab.freedesktop.org/drm/intel/issues/5904
  [i915#5950]: https://gitlab.freedesktop.org/drm/intel/issues/5950
  [i915#5982]: https://gitlab.freedesktop.org/drm/intel/issues/5982
  [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6474 -> IGTPW_7114

  CI-20190529: 20190529
  CI_DRM_11661: f0d63dbb9c4ebcb646fd41c0e810d60ff7c7d11e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7114: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7114/index.html
  IGT_6474: f4731438344390afe165ac41ee9e2a2e77e3d932 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev5)
  2022-05-17  1:37 [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes Jessica Zhang
  2022-05-17  2:17 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev4) Patchwork
@ 2022-05-17 17:33 ` Patchwork
  2022-05-17 19:45 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2022-05-17 17:33 UTC (permalink / raw)
  To: Jessica Zhang; +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev5)
URL   : https://patchwork.freedesktop.org/series/103897/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11666 -> IGTPW_7125
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (41 -> 39)
------------------------------

  Additional (1): fi-skl-guc 
  Missing    (3): bat-dg2-8 bat-jsl-2 bat-dg2-9 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_lmem_swapping@basic:
    - fi-skl-guc:         NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#4613]) +3 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/fi-skl-guc/igt@gem_lmem_swapping@basic.html

  * igt@i915_selftest@live@gem:
    - fi-blb-e6850:       NOTRUN -> [DMESG-FAIL][2] ([i915#4528])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/fi-blb-e6850/igt@i915_selftest@live@gem.html

  * igt@i915_selftest@live@hangcheck:
    - bat-dg1-5:          [PASS][3] -> [DMESG-FAIL][4] ([i915#4494] / [i915#4957])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/bat-dg1-5/igt@i915_selftest@live@hangcheck.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/bat-dg1-5/igt@i915_selftest@live@hangcheck.html
    - fi-hsw-4770:        [PASS][5] -> [INCOMPLETE][6] ([i915#4785])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html
    - fi-snb-2600:        [PASS][7] -> [INCOMPLETE][8] ([i915#3921])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/fi-snb-2600/igt@i915_selftest@live@hangcheck.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/fi-snb-2600/igt@i915_selftest@live@hangcheck.html

  * igt@kms_chamelium@dp-crc-fast:
    - fi-skl-guc:         NOTRUN -> [SKIP][9] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/fi-skl-guc/igt@kms_chamelium@dp-crc-fast.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - fi-skl-guc:         NOTRUN -> [SKIP][10] ([fdo#109271]) +11 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/fi-skl-guc/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-skl-guc:         NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#533])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/fi-skl-guc/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@runner@aborted:
    - fi-hsw-4770:        NOTRUN -> [FAIL][12] ([fdo#109271] / [i915#4312] / [i915#5594])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/fi-hsw-4770/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@hangcheck:
    - bat-dg1-6:          [DMESG-FAIL][13] ([i915#4494] / [i915#4957]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/bat-dg1-6/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@live@requests:
    - fi-blb-e6850:       [DMESG-FAIL][15] ([i915#4528]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/fi-blb-e6850/igt@i915_selftest@live@requests.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/fi-blb-e6850/igt@i915_selftest@live@requests.html

  * igt@i915_selftest@live@reset:
    - {fi-jsl-1}:         [INCOMPLETE][17] -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/fi-jsl-1/igt@i915_selftest@live@reset.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/fi-jsl-1/igt@i915_selftest@live@reset.html

  * igt@kms_flip@basic-flip-vs-modeset@b-edp1:
    - {bat-adlp-6}:       [DMESG-WARN][19] ([i915#3576]) -> [PASS][20] +2 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@b-edp1.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@b-edp1.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1759]: https://gitlab.freedesktop.org/drm/intel/issues/1759
  [i915#2373]: https://gitlab.freedesktop.org/drm/intel/issues/2373
  [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
  [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
  [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785
  [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5594]: https://gitlab.freedesktop.org/drm/intel/issues/5594
  [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6476 -> IGTPW_7125

  CI-20190529: 20190529
  CI_DRM_11666: 73bb9fa49db3df15c6024a743a48139b1fcdcf7e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7125: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/index.html
  IGT_6476: 08aa9296163b94cf4c529fc890ae3e90e21c3cdb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev5)
  2022-05-17  1:37 [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes Jessica Zhang
  2022-05-17  2:17 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev4) Patchwork
  2022-05-17 17:33 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev5) Patchwork
@ 2022-05-17 19:45 ` Patchwork
  2022-05-18  0:38 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6) Patchwork
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2022-05-17 19:45 UTC (permalink / raw)
  To: Jessica Zhang; +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev5)
URL   : https://patchwork.freedesktop.org/series/103897/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_11666_full -> IGTPW_7125_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_7125_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_7125_full, please notify your bug team 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_7125/index.html

Participating hosts (11 -> 8)
------------------------------

  Missing    (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_color@pipe-c-deep-color:
    - shard-tglb:         NOTRUN -> [SKIP][1] +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb1/igt@kms_color@pipe-c-deep-color.html

  * igt@kms_vblank@pipe-b-ts-continuation-suspend:
    - shard-kbl:          [PASS][2] -> [INCOMPLETE][3]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl6/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@kms_color@pipe-c-deep-color:
    - {shard-tglu}:       NOTRUN -> [SKIP][4] +2 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglu-2/igt@kms_color@pipe-c-deep-color.html

  * {igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1}:
    - shard-tglb:         NOTRUN -> [SKIP][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb7/igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ccs@block-copy-inplace:
    - shard-tglb:         NOTRUN -> [SKIP][6] ([i915#3555] / [i915#5325])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb7/igt@gem_ccs@block-copy-inplace.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-iclb:         NOTRUN -> [SKIP][7] ([i915#5327])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb7/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_create@create-massive:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][8] ([i915#4991])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl1/igt@gem_create@create-massive.html

  * igt@gem_ctx_persistence@engines-hostile:
    - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +1 similar issue
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-snb7/igt@gem_ctx_persistence@engines-hostile.html

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

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         NOTRUN -> [FAIL][11] ([i915#5784])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb2/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][12] ([i915#5076] / [i915#5614])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl3/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          NOTRUN -> [FAIL][13] ([i915#2846])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl3/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [PASS][14] -> [FAIL][15] ([i915#2842]) +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-apl:          [PASS][16] -> [FAIL][17] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][18] ([i915#2842]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb3/igt@gem_exec_fair@basic-none-vip@rcs0.html
    - shard-iclb:         NOTRUN -> [FAIL][19] ([i915#2842])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-none@rcs0:
    - shard-glk:          [PASS][20] -> [FAIL][21] ([i915#2842])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-glk5/igt@gem_exec_fair@basic-none@rcs0.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-glk8/igt@gem_exec_fair@basic-none@rcs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-tglb:         NOTRUN -> [SKIP][22] ([fdo#109313])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-apl:          NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#4613])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl7/igt@gem_lmem_swapping@heavy-verify-multi.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-kbl:          NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#4613]) +3 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][25] ([i915#4613]) +3 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-iclb:         NOTRUN -> [SKIP][26] ([i915#4613]) +2 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb3/igt@gem_lmem_swapping@smem-oom.html

  * igt@gem_pxp@create-protected-buffer:
    - shard-iclb:         NOTRUN -> [SKIP][27] ([i915#4270]) +2 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb8/igt@gem_pxp@create-protected-buffer.html

  * igt@gem_pxp@regular-baseline-src-copy-readible:
    - shard-tglb:         NOTRUN -> [SKIP][28] ([i915#4270]) +4 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb1/igt@gem_pxp@regular-baseline-src-copy-readible.html

  * igt@gem_render_copy@y-tiled-to-vebox-linear:
    - shard-iclb:         NOTRUN -> [SKIP][29] ([i915#768]) +1 similar issue
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb1/igt@gem_render_copy@y-tiled-to-vebox-linear.html

  * igt@gem_spin_batch@user-each:
    - shard-apl:          [PASS][30] -> [FAIL][31] ([i915#2898])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-apl3/igt@gem_spin_batch@user-each.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl2/igt@gem_spin_batch@user-each.html

  * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
    - shard-iclb:         NOTRUN -> [SKIP][32] ([i915#3297]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html

  * igt@gem_userptr_blits@readonly-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([i915#3297])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb5/igt@gem_userptr_blits@readonly-unsync.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-iclb:         NOTRUN -> [FAIL][34] ([i915#3318])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb5/igt@gem_userptr_blits@vma-merge.html
    - shard-kbl:          NOTRUN -> [FAIL][35] ([i915#3318])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl7/igt@gem_userptr_blits@vma-merge.html
    - shard-tglb:         NOTRUN -> [FAIL][36] ([i915#3318])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb7/igt@gem_userptr_blits@vma-merge.html

  * igt@gen7_exec_parse@batch-without-end:
    - shard-iclb:         NOTRUN -> [SKIP][37] ([fdo#109289]) +3 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb4/igt@gen7_exec_parse@batch-without-end.html

  * igt@gen7_exec_parse@cmd-crossing-page:
    - shard-tglb:         NOTRUN -> [SKIP][38] ([fdo#109289]) +8 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb8/igt@gen7_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-tglb:         NOTRUN -> [SKIP][39] ([i915#2527] / [i915#2856]) +2 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb1/igt@gen9_exec_parse@allowed-single.html
    - shard-apl:          [PASS][40] -> [DMESG-WARN][41] ([i915#5566] / [i915#716])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-apl3/igt@gen9_exec_parse@allowed-single.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl4/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@bb-chained:
    - shard-iclb:         NOTRUN -> [SKIP][42] ([i915#2856]) +1 similar issue
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb2/igt@gen9_exec_parse@bb-chained.html

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - shard-iclb:         NOTRUN -> [SKIP][43] ([fdo#109293] / [fdo#109506])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
    - shard-tglb:         NOTRUN -> [SKIP][44] ([fdo#109506] / [i915#2411])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html

  * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-snb:          NOTRUN -> [SKIP][45] ([fdo#109271]) +75 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-snb2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-iclb:         NOTRUN -> [SKIP][46] ([fdo#110892])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb8/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb6/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@i915_query@query-topology-unsupported:
    - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#109302])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb4/igt@i915_query@query-topology-unsupported.html
    - shard-tglb:         NOTRUN -> [SKIP][49] ([fdo#109302])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb7/igt@i915_query@query-topology-unsupported.html

  * igt@i915_suspend@forcewake:
    - shard-snb:          [PASS][50] -> [SKIP][51] ([fdo#109271]) +2 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-snb5/igt@i915_suspend@forcewake.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-snb5/igt@i915_suspend@forcewake.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([i915#3826])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
    - shard-iclb:         NOTRUN -> [SKIP][53] ([i915#3826])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([i915#5286]) +7 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb7/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-iclb:         NOTRUN -> [SKIP][55] ([i915#5286]) +5 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb2/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-glk:          NOTRUN -> [SKIP][56] ([fdo#109271]) +36 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-glk1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][57] ([fdo#110725] / [fdo#111614]) +3 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#111614]) +3 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-tglb:         NOTRUN -> [SKIP][59] ([fdo#111615]) +5 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-apl:          NOTRUN -> [SKIP][60] ([fdo#109271]) +157 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#110723])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-iclb:         NOTRUN -> [SKIP][62] ([i915#2705])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb3/igt@kms_big_joiner@invalid-modeset.html
    - shard-tglb:         NOTRUN -> [SKIP][63] ([i915#2705])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb1/igt@kms_big_joiner@invalid-modeset.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#3886]) +4 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl6/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#3886]) +8 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl3/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][66] ([i915#3689] / [i915#3886]) +5 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb7/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][67] ([fdo#109278]) +35 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb5/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html

  * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][68] ([fdo#111615] / [i915#3689]) +11 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb5/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109278] / [i915#3886]) +3 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb6/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
    - shard-glk:          NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#3886])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-glk2/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][71] ([i915#3689]) +5 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb3/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html

  * igt@kms_chamelium@vga-hpd-for-each-pipe:
    - shard-apl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [fdo#111827]) +7 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl2/igt@kms_chamelium@vga-hpd-for-each-pipe.html
    - shard-glk:          NOTRUN -> [SKIP][73] ([fdo#109271] / [fdo#111827]) +2 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-glk9/igt@kms_chamelium@vga-hpd-for-each-pipe.html

  * igt@kms_color_chamelium@pipe-a-ctm-red-to-blue:
    - shard-iclb:         NOTRUN -> [SKIP][74] ([fdo#109284] / [fdo#111827]) +13 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb3/igt@kms_color_chamelium@pipe-a-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-b-ctm-0-75:
    - shard-tglb:         NOTRUN -> [SKIP][75] ([fdo#109284] / [fdo#111827]) +15 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb3/igt@kms_color_chamelium@pipe-b-ctm-0-75.html

  * igt@kms_color_chamelium@pipe-c-ctm-0-25:
    - shard-kbl:          NOTRUN -> [SKIP][76] ([fdo#109271] / [fdo#111827]) +16 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl4/igt@kms_color_chamelium@pipe-c-ctm-0-25.html

  * igt@kms_color_chamelium@pipe-d-ctm-0-25:
    - shard-iclb:         NOTRUN -> [SKIP][77] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb6/igt@kms_color_chamelium@pipe-d-ctm-0-25.html

  * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue:
    - shard-snb:          NOTRUN -> [SKIP][78] ([fdo#109271] / [fdo#111827]) +2 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-snb5/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html

  * igt@kms_content_protection@atomic:
    - shard-apl:          NOTRUN -> [TIMEOUT][79] ([i915#1319])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl7/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-iclb:         NOTRUN -> [SKIP][80] ([i915#3116])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb7/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@lic:
    - shard-tglb:         NOTRUN -> [SKIP][81] ([i915#1063]) +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb7/igt@kms_content_protection@lic.html
    - shard-kbl:          NOTRUN -> [TIMEOUT][82] ([i915#1319])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl4/igt@kms_content_protection@lic.html

  * igt@kms_content_protection@mei_interface:
    - shard-iclb:         NOTRUN -> [SKIP][83] ([fdo#109300] / [fdo#111066]) +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb4/igt@kms_content_protection@mei_interface.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][84] ([i915#3359]) +9 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][85] ([i915#3319]) +2 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb7/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][86] ([fdo#109278] / [fdo#109279]) +4 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb6/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html

  * igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen:
    - shard-kbl:          NOTRUN -> [SKIP][87] ([fdo#109271]) +272 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl4/igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][88] ([fdo#109279] / [i915#3359]) +5 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x170-offscreen.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#4103])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
    - shard-iclb:         [PASS][90] -> [FAIL][91] ([i915#5072])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-iclb4/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-iclb:         NOTRUN -> [SKIP][92] ([fdo#109274] / [fdo#109278]) +2 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_dp_tiled_display@basic-test-pattern:
    - shard-iclb:         NOTRUN -> [SKIP][93] ([i915#426])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb5/igt@kms_dp_tiled_display@basic-test-pattern.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-4tiled:
    - shard-iclb:         NOTRUN -> [SKIP][94] ([i915#5287])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb8/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-4tiled.html
    - shard-tglb:         NOTRUN -> [SKIP][95] ([i915#5287])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-4tiled.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          NOTRUN -> [INCOMPLETE][96] ([i915#180] / [i915#1982])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-iclb:         NOTRUN -> [SKIP][97] ([fdo#109274]) +8 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb4/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@2x-flip-vs-rmfb:
    - shard-tglb:         NOTRUN -> [SKIP][98] ([fdo#109274] / [fdo#111825]) +11 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb3/igt@kms_flip@2x-flip-vs-rmfb.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
    - shard-apl:          [PASS][99] -> [DMESG-WARN][100] ([i915#180]) +3 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-apl:          NOTRUN -> [DMESG-WARN][101] ([i915#180]) +2 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl6/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_flip@plain-flip-fb-recreate@a-edp1:
    - shard-iclb:         [PASS][102] -> [DMESG-WARN][103] ([i915#1888])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-iclb3/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb1/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-tglb:         NOTRUN -> [SKIP][104] ([i915#2587]) +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-glk:          [PASS][105] -> [FAIL][106] ([i915#4911])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-glk7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
    - shard-iclb:         NOTRUN -> [SKIP][107] ([fdo#109280]) +37 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-kbl:          [PASS][108] -> [DMESG-WARN][109] ([i915#180]) +1 similar issue
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
    - shard-tglb:         NOTRUN -> [SKIP][110] ([fdo#109280] / [fdo#111825]) +49 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-tglb:         NOTRUN -> [SKIP][111] ([i915#1839])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-iclb:         NOTRUN -> [SKIP][112] ([i915#1839])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-apl:          NOTRUN -> [FAIL][113] ([fdo#108145] / [i915#265])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> [FAIL][114] ([fdo#108145] / [i915#265]) +2 similar issues
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_lowres@pipe-a-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][115] ([i915#5288])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb7/igt@kms_plane_lowres@pipe-a-tiling-4.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-iclb:         NOTRUN -> [SKIP][116] ([i915#3536]) +2 similar issues
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_plane_lowres@pipe-b-tiling-y:
    - shard-tglb:         NOTRUN -> [SKIP][117] ([i915#3536]) +3 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb5/igt@kms_plane_lowres@pipe-b-tiling-y.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][118] ([fdo#111615] / [fdo#112054])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb8/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_plane_scaling@downscale-with-rotation-factor-0-75@pipe-b-edp-1-downscale-with-rotation:
    - shard-tglb:         NOTRUN -> [SKIP][119] ([i915#5176]) +3 similar issues
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb8/igt@kms_plane_scaling@downscale-with-rotation-factor-0-75@pipe-b-edp-1-downscale-with-rotation.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1-planes-upscale-downscale:
    - shard-tglb:         NOTRUN -> [SKIP][120] ([i915#5235]) +3 similar issues
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1-planes-upscale-downscale.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale:
    - shard-iclb:         NOTRUN -> [SKIP][121] ([i915#5235]) +2 similar issues
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
    - shard-apl:          NOTRUN -> [SKIP][122] ([fdo#109271] / [i915#658]) +1 similar issue
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-kbl:          NOTRUN -> [SKIP][123] ([fdo#109271] / [i915#658]) +3 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
    - shard-iclb:         NOTRUN -> [SKIP][124] ([fdo#111068] / [i915#658])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
    - shard-tglb:         NOTRUN -> [SKIP][125] ([i915#2920])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-tglb:         NOTRUN -> [SKIP][126] ([i915#1911])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb3/igt@kms_psr2_su@page_flip-nv12.html
    - shard-iclb:         NOTRUN -> [FAIL][127] ([i915#5939])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb2/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         NOTRUN -> [SKIP][128] ([fdo#109441]) +3 similar issues
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb6/igt@kms_psr@psr2_sprite_plane_move.html
    - shard-tglb:         NOTRUN -> [FAIL][129] ([i915#132] / [i915#3467]) +2 similar issues
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb2/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_psr@psr2_suspend:
    - shard-iclb:         [PASS][130] -> [SKIP][131] ([fdo#109441]) +1 similar issue
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-iclb2/igt@kms_psr@psr2_suspend.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb6/igt@kms_psr@psr2_suspend.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-tglb:         NOTRUN -> [SKIP][132] ([fdo#111615] / [i915#5289])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-iclb:         NOTRUN -> [SKIP][133] ([i915#3555]) +3 similar issues
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb3/igt@kms_setmode@invalid-clone-single-crtc.html
    - shard-tglb:         NOTRUN -> [SKIP][134] ([i915#3555]) +1 similar issue
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb1/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_sysfs_edid_timing:
    - shard-apl:          NOTRUN -> [FAIL][135] ([IGT#2])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl7/igt@kms_sysfs_edid_timing.html
    - shard-kbl:          NOTRUN -> [FAIL][136] ([IGT#2])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl1/igt@kms_sysfs_edid_timing.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-apl:          NOTRUN -> [SKIP][137] ([fdo#109271] / [i915#533]) +2 similar issues
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl6/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@nouveau_crc@pipe-a-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][138] ([i915#2530]) +3 similar issues
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb4/igt@nouveau_crc@pipe-a-source-rg.html
    - shard-tglb:         NOTRUN -> [SKIP][139] ([i915#2530]) +4 similar issues
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb7/igt@nouveau_crc@pipe-a-source-rg.html

  * igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
    - shard-iclb:         NOTRUN -> [SKIP][140] ([fdo#109291]) +7 similar issues
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb8/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html

  * igt@prime_nv_pcopy@test3_2:
    - shard-tglb:         NOTRUN -> [SKIP][141] ([fdo#109291]) +8 similar issues
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb6/igt@prime_nv_pcopy@test3_2.html

  * igt@syncobj_timeline@invalid-transfer-non-existent-point:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][142] ([i915#5098])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl7/igt@syncobj_timeline@invalid-transfer-non-existent-point.html
    - shard-tglb:         NOTRUN -> [DMESG-WARN][143] ([i915#5098])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb8/igt@syncobj_timeline@invalid-transfer-non-existent-point.html

  * igt@sysfs_clients@sema-10:
    - shard-tglb:         NOTRUN -> [SKIP][144] ([i915#2994]) +4 similar issues
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb7/igt@sysfs_clients@sema-10.html
    - shard-kbl:          NOTRUN -> [SKIP][145] ([fdo#109271] / [i915#2994]) +4 similar issues
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl4/igt@sysfs_clients@sema-10.html

  * igt@sysfs_clients@split-10:
    - shard-iclb:         NOTRUN -> [SKIP][146] ([i915#2994]) +3 similar issues
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb3/igt@sysfs_clients@split-10.html

  
#### Possible fixes ####

  * igt@gem_eio@in-flight-10ms:
    - shard-tglb:         [TIMEOUT][147] ([i915#3063]) -> [PASS][148]
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-tglb2/igt@gem_eio@in-flight-10ms.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb3/igt@gem_eio@in-flight-10ms.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - {shard-tglu}:       [FAIL][149] ([i915#2842]) -> [PASS][150]
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_flush@basic-uc-pro-default:
    - shard-snb:          [SKIP][151] ([fdo#109271]) -> [PASS][152] +2 similar issues
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-snb6/igt@gem_exec_flush@basic-uc-pro-default.html
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-snb7/igt@gem_exec_flush@basic-uc-pro-default.html

  * igt@gem_exec_whisper@basic-queues-forked-all:
    - shard-glk:          [DMESG-WARN][153] ([i915#118]) -> [PASS][154]
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-glk3/igt@gem_exec_whisper@basic-queues-forked-all.html
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-glk7/igt@gem_exec_whisper@basic-queues-forked-all.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-apl:          [DMESG-WARN][155] ([i915#180]) -> [PASS][156] +2 similar issues
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-apl7/igt@gem_workarounds@suspend-resume-context.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl7/igt@gem_workarounds@suspend-resume-context.html

  * igt@i915_selftest@live@gt_heartbeat:
    - shard-kbl:          [DMESG-FAIL][157] ([i915#5334]) -> [PASS][158]
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl1/igt@i915_selftest@live@gt_heartbeat.html
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl3/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@hangcheck:
    - shard-tglb:         [DMESG-WARN][159] ([i915#5591]) -> [PASS][160]
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-tglb5/igt@i915_selftest@live@hangcheck.html
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb6/igt@i915_selftest@live@hangcheck.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [FAIL][161] ([i915#2346] / [i915#533]) -> [PASS][162]
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_dsc@basic-dsc-enable@edp-1-pipe-a:
    - shard-tglb:         [FAIL][163] ([i915#1385]) -> [PASS][164] +3 similar issues
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-tglb3/igt@kms_dsc@basic-dsc-enable@edp-1-pipe-a.html
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-tglb1/igt@kms_dsc@basic-dsc-enable@edp-1-pipe-a.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2:
    - shard-glk:          [FAIL][165] ([i915#2122]) -> [PASS][166]
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1:
    - shard-apl:          [FAIL][167] ([i915#79]) -> [PASS][168]
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-kbl:          [DMESG-WARN][169] ([i915#180]) -> [PASS][170] +2 similar issues
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_psr@psr2_basic:
    - shard-iclb:         [SKIP][171] ([fdo#109441]) -> [PASS][172] +1 similar issue
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-iclb3/igt@kms_psr@psr2_basic.html
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb2/igt@kms_psr@psr2_basic.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel:
    - shard-iclb:         [DMESG-WARN][173] ([i915#5614]) -> [SKIP][174] ([i915#4525]) +1 similar issue
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-iclb2/igt@gem_exec_balancer@parallel.html
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb5/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_balancer@parallel-keep-submit-fence:
    - shard-iclb:         [SKIP][175] ([i915#4525]) -> [DMESG-WARN][176] ([i915#5614])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-iclb8/igt@gem_exec_balancer@parallel-keep-submit-fence.html
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb2/igt@gem_exec_balancer@parallel-keep-submit-fence.html

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-iclb:         [DMESG-FAIL][177] ([i915#5614]) -> [SKIP][178] ([i915#4525])
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb3/igt@gem_exec_balancer@parallel-ordering.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-iclb:         [SKIP][179] ([i915#2920]) -> [SKIP][180] ([fdo#111068] / [i915#658]) +1 similar issue
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][181], [FAIL][182], [FAIL][183], [FAIL][184], [FAIL][185], [FAIL][186], [FAIL][187], [FAIL][188], [FAIL][189], [FAIL][190], [FAIL][191], [FAIL][192]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][193], [FAIL][194], [FAIL][195], [FAIL][196], [FAIL][197], [FAIL][198], [FAIL][199], [FAIL][200], [FAIL][201], [FAIL][202], [FAIL][203]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl6/igt@runner@aborted.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl4/igt@runner@aborted.html
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl7/igt@runner@aborted.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl1/igt@runner@aborted.html
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl4/igt@runner@aborted.html
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl7/igt@runner@aborted.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl7/igt@runner@aborted.html
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl1/igt@runner@aborted.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl7/igt@runner@aborted.html
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl7/igt@runner@aborted.html
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl1/igt@runner@aborted.html
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11666/shard-kbl3/igt@runner@aborted.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl4/igt@runner@aborted.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl3/igt@runner@aborted.html
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl4/igt@runner@aborted.html
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl1/igt@runner@aborted.html
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl1/igt@runner@aborted.html
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl6/igt@runner@aborted.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl7/igt@runner@aborted.html
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl7/igt@runner@aborted.html
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl4/igt@runner@aborted.html
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl7/igt@runner@aborted.html
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/shard-kbl6/igt@runner@aborted.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#110892]: https://bugs.freedesktop.org/show_bug.cgi?id=110892
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1385]: https://gitlab.freedesktop.org/drm/intel/issues/1385
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2898]: https://gitlab.freedesktop.org/drm/intel/issues/2898
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4911]: https://gitlab.freedesktop.org/drm/intel/issues/4911
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5072]: https://gitlab.freedesktop.org/drm/intel/issues/5072
  [i915#5076]: https://gitlab.freedesktop.org/drm/intel/issues/5076
  [i915#5098]: https://gitlab.freedesktop.org/drm/intel/issues/5098
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#5939]: https://gitlab.freedesktop.org/drm/intel/issues/5939
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6476 -> IGTPW_7125
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_11666: 73bb9fa49db3df15c6024a743a48139b1fcdcf7e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7125: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7125/index.html
  IGT_6476: 08aa9296163b94cf4c529fc890ae3e90e21c3cdb @ 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_7125/index.html

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6)
  2022-05-17  1:37 [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes Jessica Zhang
                   ` (2 preceding siblings ...)
  2022-05-17 19:45 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-05-18  0:38 ` Patchwork
  2022-05-18  8:16 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2022-05-18  0:38 UTC (permalink / raw)
  To: Jessica Zhang; +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6)
URL   : https://patchwork.freedesktop.org/series/103897/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11669 -> IGTPW_7127
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (39 -> 40)
------------------------------

  Additional (3): fi-hsw-4770 bat-jsl-2 bat-dg2-9 
  Missing    (2): fi-kbl-soraka fi-snb-2600 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_huc_copy@huc-copy:
    - fi-hsw-4770:        NOTRUN -> [SKIP][1] ([fdo#109271]) +9 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/fi-hsw-4770/igt@gem_huc_copy@huc-copy.html

  * igt@i915_pm_backlight@basic-brightness:
    - fi-hsw-4770:        NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#3012])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_selftest@live@hangcheck:
    - bat-dg1-5:          NOTRUN -> [DMESG-FAIL][3] ([i915#4494] / [i915#4957])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/bat-dg1-5/igt@i915_selftest@live@hangcheck.html
    - fi-bdw-5557u:       NOTRUN -> [INCOMPLETE][4] ([i915#3921])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/fi-bdw-5557u/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@live@vma:
    - fi-tgl-1115g4:      [PASS][5] -> [DMESG-WARN][6] ([i915#2867]) +16 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/fi-tgl-1115g4/igt@i915_selftest@live@vma.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/fi-tgl-1115g4/igt@i915_selftest@live@vma.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - bat-dg1-5:          NOTRUN -> [INCOMPLETE][7] ([i915#6011])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/bat-dg1-5/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-hsw-4770:        NOTRUN -> [SKIP][8] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-hsw-4770:        NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#533])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_psr@primary_mmap_gtt:
    - fi-hsw-4770:        NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#1072]) +3 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/fi-hsw-4770/igt@kms_psr@primary_mmap_gtt.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_engines:
    - bat-dg1-5:          [INCOMPLETE][11] ([i915#4418]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/bat-dg1-5/igt@i915_selftest@live@gt_engines.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/bat-dg1-5/igt@i915_selftest@live@gt_engines.html

  * igt@i915_selftest@live@gtt:
    - fi-bdw-5557u:       [INCOMPLETE][13] ([i915#5685]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/fi-bdw-5557u/igt@i915_selftest@live@gtt.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/fi-bdw-5557u/igt@i915_selftest@live@gtt.html

  * igt@kms_addfb_basic@unused-offsets:
    - {bat-adlm-1}:       [DMESG-WARN][15] ([i915#4391]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/bat-adlm-1/igt@kms_addfb_basic@unused-offsets.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/bat-adlm-1/igt@kms_addfb_basic@unused-offsets.html

  * igt@kms_flip@basic-flip-vs-modeset@a-edp1:
    - {bat-adlp-6}:       [DMESG-WARN][17] ([i915#3576]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html

  
#### Warnings ####

  * igt@gem_exec_suspend@basic-s0@smem:
    - fi-tgl-1115g4:      [DMESG-WARN][19] ([i915#5122]) -> [DMESG-WARN][20] ([i915#2867] / [i915#5122])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0@smem.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0@smem.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
  [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
  [i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418
  [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
  [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5685]: https://gitlab.freedesktop.org/drm/intel/issues/5685
  [i915#5763]: https://gitlab.freedesktop.org/drm/intel/issues/5763
  [i915#5801]: https://gitlab.freedesktop.org/drm/intel/issues/5801
  [i915#5879]: https://gitlab.freedesktop.org/drm/intel/issues/5879
  [i915#5885]: https://gitlab.freedesktop.org/drm/intel/issues/5885
  [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903
  [i915#6011]: https://gitlab.freedesktop.org/drm/intel/issues/6011


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6478 -> IGTPW_7127

  CI-20190529: 20190529
  CI_DRM_11669: 3c90017b789c05dd9548205b2fa3bb05d7890be3 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7127: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/index.html
  IGT_6478: 7c3ceb08b633a66f77f42e596593de394da5dccc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6)
  2022-05-17  1:37 [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes Jessica Zhang
                   ` (3 preceding siblings ...)
  2022-05-18  0:38 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6) Patchwork
@ 2022-05-18  8:16 ` Patchwork
       [not found]   ` <934c60df-1293-38d1-408e-ab1bb2c88ec6@quicinc.com>
  2022-05-20  1:21 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  2022-05-23 12:36 ` [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes Petri Latvala
  6 siblings, 1 reply; 18+ messages in thread
From: Patchwork @ 2022-05-18  8:16 UTC (permalink / raw)
  To: Jessica Zhang; +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6)
URL   : https://patchwork.freedesktop.org/series/103897/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_11669_full -> IGTPW_7127_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_7127_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_7127_full, please notify your bug team 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_7127/index.html

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

  Missing    (5): pig-kbl-iris pig-glk-j5005 pig-skl-6260u shard-rkl shard-dg1 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_plane@plane-position-hole-dpms@pipe-a-planes:
    - shard-kbl:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@kms_plane@plane-position-hole-dpms@pipe-a-planes.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane@plane-position-hole-dpms@pipe-a-planes.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@display-3x:
    - shard-iclb:         NOTRUN -> [SKIP][3] ([i915#1839])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@feature_discovery@display-3x.html
    - shard-tglb:         NOTRUN -> [SKIP][4] ([i915#1839])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@feature_discovery@display-3x.html

  * igt@gem_ccs@block-copy-uncompressed:
    - shard-iclb:         NOTRUN -> [SKIP][5] ([i915#5327]) +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@gem_ccs@block-copy-uncompressed.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-tglb:         NOTRUN -> [SKIP][6] ([i915#3555] / [i915#5325])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - shard-apl:          [PASS][7] -> [DMESG-WARN][8] ([i915#180]) +4 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_ctx_persistence@file:
    - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb7/igt@gem_ctx_persistence@file.html

  * igt@gem_ctx_sseu@engines:
    - shard-tglb:         NOTRUN -> [SKIP][10] ([i915#280])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gem_ctx_sseu@engines.html

  * igt@gem_eio@in-flight-contexts-1us:
    - shard-iclb:         [PASS][11] -> [TIMEOUT][12] ([i915#3070])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb4/igt@gem_eio@in-flight-contexts-1us.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_eio@in-flight-contexts-1us.html
    - shard-tglb:         [PASS][13] -> [TIMEOUT][14] ([i915#3063])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-tglb6/igt@gem_eio@in-flight-contexts-1us.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@gem_eio@in-flight-contexts-1us.html

  * igt@gem_eio@kms:
    - shard-tglb:         NOTRUN -> [FAIL][15] ([i915#5784])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@gem_eio@kms.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-kbl:          [PASS][16] -> [FAIL][17] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-glk:          [PASS][18] -> [FAIL][19] ([i915#2842])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk1/igt@gem_exec_fair@basic-none-share@rcs0.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][20] ([i915#2842])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-iclb:         [PASS][21] -> [FAIL][22] ([i915#2842])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][23] -> [FAIL][24] ([i915#2849])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-iclb:         NOTRUN -> [SKIP][25] ([fdo#109313])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
    - shard-tglb:         NOTRUN -> [SKIP][26] ([fdo#109313])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_exec_flush@basic-batch-kernel-default-uc:
    - shard-snb:          [PASS][27] -> [SKIP][28] ([fdo#109271]) +2 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb2/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html

  * igt@gem_exec_params@no-bsd:
    - shard-tglb:         NOTRUN -> [SKIP][29] ([fdo#109283])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@gem_exec_params@no-bsd.html
    - shard-iclb:         NOTRUN -> [SKIP][30] ([fdo#109283])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@gem_exec_params@no-bsd.html

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-glk:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@gem_lmem_swapping@parallel-multi.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-kbl:          NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#4613]) +3 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][33] ([i915#4613]) +3 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-apl:          NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#4613]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@verify:
    - shard-iclb:         NOTRUN -> [SKIP][35] ([i915#4613]) +1 similar issue
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@gem_lmem_swapping@verify.html

  * igt@gem_media_vme:
    - shard-tglb:         NOTRUN -> [SKIP][36] ([i915#284])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@gem_media_vme.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-apl:          NOTRUN -> [WARN][37] ([i915#2658])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@protected-raw-src-copy-not-readible:
    - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#4270]) +2 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@gem_pxp@protected-raw-src-copy-not-readible.html

  * igt@gem_pxp@reject-modify-context-protection-off-1:
    - shard-iclb:         NOTRUN -> [SKIP][39] ([i915#4270]) +2 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@gem_pxp@reject-modify-context-protection-off-1.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([i915#768]) +2 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html

  * igt@gem_softpin@evict-single-offset:
    - shard-kbl:          NOTRUN -> [FAIL][41] ([i915#4171])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl6/igt@gem_softpin@evict-single-offset.html
    - shard-glk:          NOTRUN -> [FAIL][42] ([i915#4171])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@gem_softpin@evict-single-offset.html
    - shard-apl:          NOTRUN -> [FAIL][43] ([i915#4171])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@gem_softpin@evict-single-offset.html

  * igt@gem_softpin@evict-snoop:
    - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109312])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_softpin@evict-snoop.html
    - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109312])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-apl:          NOTRUN -> [FAIL][46] ([i915#3318])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@gem_userptr_blits@vma-merge.html

  * igt@gen7_exec_parse@basic-offset:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([fdo#109289]) +4 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gen7_exec_parse@basic-offset.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-iclb:         NOTRUN -> [SKIP][48] ([i915#2856]) +2 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#2527] / [i915#2856]) +1 similar issue
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@gen9_exec_parse@bb-oversize.html

  * igt@i915_pm_backlight@bad-brightness:
    - shard-glk:          NOTRUN -> [SKIP][50] ([fdo#109271]) +80 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@i915_pm_backlight@bad-brightness.html

  * igt@i915_pm_backlight@fade_with_dpms:
    - shard-kbl:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#92])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@i915_pm_backlight@fade_with_dpms.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([i915#1904])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-kbl:          NOTRUN -> [FAIL][53] ([i915#454])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         NOTRUN -> [FAIL][54] ([i915#454]) +1 similar issue
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-iclb:         [PASS][55] -> [SKIP][56] ([i915#4281])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb4/igt@i915_pm_dc@dc9-dpms.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#111644] / [i915#1397] / [i915#2411])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@i915_pm_rpm@system-suspend:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][58] ([i915#62] / [i915#92]) +5 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@i915_pm_rpm@system-suspend.html

  * igt@i915_selftest@live@hangcheck:
    - shard-snb:          [PASS][59] -> [INCOMPLETE][60] ([i915#3921])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb6/igt@i915_selftest@live@hangcheck.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb6/igt@i915_selftest@live@hangcheck.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-kbl:          NOTRUN -> [SKIP][61] ([fdo#109271]) +240 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-addfb-size-overflow:
    - shard-iclb:         NOTRUN -> [SKIP][62] ([i915#5286]) +4 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_big_fb@4-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglb:         NOTRUN -> [SKIP][63] ([i915#5286]) +5 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][64] ([fdo#111614]) +3 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#110725] / [fdo#111614]) +3 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-snb:          NOTRUN -> [SKIP][66] ([fdo#109271]) +143 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-tglb:         NOTRUN -> [SKIP][67] ([fdo#111615]) +8 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
    - shard-iclb:         NOTRUN -> [SKIP][68] ([fdo#110723]) +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#3886]) +5 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#3886]) +2 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
    - shard-iclb:         NOTRUN -> [SKIP][71] ([fdo#109278] / [i915#3886]) +4 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#3886]) +4 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#3689] / [i915#3886]) +4 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][74] ([fdo#111615] / [i915#3689]) +9 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][75] ([i915#3689]) +9 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-apl:          NOTRUN -> [SKIP][76] ([fdo#109271]) +186 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@plane-scaling:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([i915#3742])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium@hdmi-audio:
    - shard-iclb:         NOTRUN -> [SKIP][78] ([fdo#109284] / [fdo#111827]) +13 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_chamelium@hdmi-audio.html

  * igt@kms_chamelium@hdmi-crc-nonplanar-formats:
    - shard-glk:          NOTRUN -> [SKIP][79] ([fdo#109271] / [fdo#111827]) +7 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@kms_chamelium@hdmi-crc-nonplanar-formats.html

  * igt@kms_chamelium@hdmi-hpd-for-each-pipe:
    - shard-kbl:          NOTRUN -> [SKIP][80] ([fdo#109271] / [fdo#111827]) +23 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html

  * igt@kms_chamelium@vga-hpd-for-each-pipe:
    - shard-apl:          NOTRUN -> [SKIP][81] ([fdo#109271] / [fdo#111827]) +14 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@kms_chamelium@vga-hpd-for-each-pipe.html

  * igt@kms_color@pipe-d-ctm-blue-to-red:
    - shard-iclb:         NOTRUN -> [SKIP][82] ([fdo#109278] / [i915#1149])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_color@pipe-d-ctm-blue-to-red.html

  * igt@kms_color_chamelium@pipe-a-ctm-0-25:
    - shard-snb:          NOTRUN -> [SKIP][83] ([fdo#109271] / [fdo#111827]) +5 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb4/igt@kms_color_chamelium@pipe-a-ctm-0-25.html

  * igt@kms_color_chamelium@pipe-b-ctm-0-75:
    - shard-tglb:         NOTRUN -> [SKIP][84] ([fdo#109284] / [fdo#111827]) +23 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_color_chamelium@pipe-b-ctm-0-75.html

  * igt@kms_content_protection@atomic:
    - shard-kbl:          NOTRUN -> [TIMEOUT][85] ([i915#1319]) +1 similar issue
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][86] ([i915#1063])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@kms_content_protection@atomic-dpms.html
    - shard-iclb:         NOTRUN -> [SKIP][87] ([fdo#109300] / [fdo#111066])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb5/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@srm:
    - shard-apl:          NOTRUN -> [TIMEOUT][88] ([i915#1319])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl2/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#3359]) +7 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#3319]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-512x512-random:
    - shard-iclb:         NOTRUN -> [SKIP][91] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_cursor_crc@pipe-b-cursor-512x512-random.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][92] ([fdo#109279] / [i915#3359] / [i915#5691])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html
    - shard-kbl:          NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#5691])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][94] ([fdo#109279] / [i915#3359]) +5 similar issues
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-iclb:         NOTRUN -> [SKIP][95] ([fdo#109274] / [fdo#109278]) +5 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [PASS][96] -> [FAIL][97] ([i915#2346])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@pipe-d-torture-bo:
    - shard-kbl:          NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#533])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglb:         NOTRUN -> [SKIP][99] ([i915#4103]) +1 similar issue
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@edp-1-pipe-a:
    - shard-iclb:         NOTRUN -> [SKIP][100] ([i915#6029])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@edp-1-pipe-a.html
    - shard-tglb:         NOTRUN -> [SKIP][101] ([i915#6029])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@edp-1-pipe-a.html

  * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
    - shard-tglb:         NOTRUN -> [SKIP][102] ([i915#3528])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-iclb:         NOTRUN -> [SKIP][103] ([i915#3528])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][104] ([i915#5287]) +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled.html
    - shard-iclb:         NOTRUN -> [SKIP][105] ([i915#5287])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [PASS][106] -> [FAIL][107] ([i915#4767])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl8/igt@kms_fbcon_fbt@fbc-suspend.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-kbl:          NOTRUN -> [FAIL][108] ([i915#4767])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-tglb:         NOTRUN -> [SKIP][109] ([fdo#109274] / [fdo#111825]) +14 similar issues
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-iclb:         NOTRUN -> [SKIP][110] ([fdo#109274]) +5 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
    - shard-snb:          [PASS][111] -> [INCOMPLETE][112] ([i915#4839])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
    - shard-apl:          NOTRUN -> [DMESG-WARN][113] ([i915#180]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-tglb:         NOTRUN -> [SKIP][114] ([i915#2587]) +1 similar issue
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
    - shard-iclb:         NOTRUN -> [SKIP][115] ([i915#3701])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
    - shard-kbl:          [PASS][116] -> [DMESG-WARN][117] ([i915#62] / [i915#92]) +7 similar issues
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
    - shard-iclb:         NOTRUN -> [SKIP][118] ([fdo#109280]) +22 similar issues
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-iclb:         NOTRUN -> [SKIP][119] ([i915#5438]) +1 similar issue
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-tglb:         NOTRUN -> [SKIP][120] ([fdo#109280] / [fdo#111825]) +39 similar issues
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][121] ([i915#5439]) +1 similar issue
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_invalid_mode@clock-too-high:
    - shard-tglb:         NOTRUN -> [SKIP][122] ([i915#4278])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_invalid_mode@clock-too-high.html

  * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
    - shard-iclb:         NOTRUN -> [SKIP][123] ([fdo#109289]) +4 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html

  * igt@kms_plane@plane-position-hole-dpms@pipe-b-planes:
    - shard-kbl:          [PASS][124] -> [SKIP][125] ([fdo#109271] / [i915#92])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@kms_plane@plane-position-hole-dpms@pipe-b-planes.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane@plane-position-hole-dpms@pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-glk:          NOTRUN -> [FAIL][126] ([fdo#108145] / [i915#265])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
    - shard-apl:          NOTRUN -> [FAIL][127] ([fdo#108145] / [i915#265])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> [FAIL][128] ([fdo#108145] / [i915#265]) +2 similar issues
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max:
    - shard-iclb:         NOTRUN -> [SKIP][129] ([fdo#109278]) +36 similar issues
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb5/igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max.html

  * igt@kms_plane_lowres@pipe-b-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][130] ([i915#5288]) +1 similar issue
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-4.html

  * igt@kms_plane_lowres@pipe-c-tiling-yf:
    - shard-iclb:         NOTRUN -> [SKIP][131] ([i915#3536])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_plane_lowres@pipe-c-tiling-yf.html

  * igt@kms_plane_lowres@pipe-d-tiling-y:
    - shard-tglb:         NOTRUN -> [SKIP][132] ([i915#3536]) +1 similar issue
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_plane_lowres@pipe-d-tiling-y.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][133] ([fdo#111615] / [fdo#112054]) +1 similar issue
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_plane_scaling@planes-upscale-20x20@pipe-b-dp-1-planes-upscale:
    - shard-kbl:          [PASS][134] -> [DMESG-WARN][135] ([i915#180] / [i915#62] / [i915#92]) +1 similar issue
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl6/igt@kms_plane_scaling@planes-upscale-20x20@pipe-b-dp-1-planes-upscale.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane_scaling@planes-upscale-20x20@pipe-b-dp-1-planes-upscale.html

  * igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-a-edp-1-upscale-with-rotation:
    - shard-iclb:         NOTRUN -> [SKIP][136] ([i915#5176]) +5 similar issues
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-a-edp-1-upscale-with-rotation.html

  * igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-b-edp-1-upscale-with-rotation:
    - shard-tglb:         NOTRUN -> [SKIP][137] ([i915#5176]) +7 similar issues
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-b-edp-1-upscale-with-rotation.html

  * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
    - shard-iclb:         NOTRUN -> [SKIP][138] ([fdo#111068] / [i915#658])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
    - shard-kbl:          NOTRUN -> [SKIP][139] ([fdo#109271] / [i915#658]) +2 similar issues
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
    - shard-tglb:         NOTRUN -> [SKIP][140] ([i915#2920])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-tglb:         NOTRUN -> [SKIP][141] ([i915#1911])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr2_cursor_mmap_gtt:
    - shard-iclb:         NOTRUN -> [SKIP][142] ([fdo#109441])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_gtt.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-tglb:         NOTRUN -> [FAIL][143] ([i915#132] / [i915#3467]) +2 similar issues
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [PASS][144] -> [SKIP][145] ([fdo#109441]) +2 similar issues
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-tglb:         NOTRUN -> [SKIP][146] ([i915#5519])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-tglb:         [PASS][147] -> [SKIP][148] ([i915#5519])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-tglb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-tglb:         NOTRUN -> [SKIP][149] ([i915#5289])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a:
    - shard-tglb:         NOTRUN -> [SKIP][150] ([i915#5030]) +3 similar issues
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a.html

  * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-c:
    - shard-iclb:         NOTRUN -> [SKIP][151] ([i915#5030]) +2 similar issues
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-c.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-iclb:         NOTRUN -> [SKIP][152] ([i915#3555]) +2 similar issues
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_sysfs_edid_timing:
    - shard-apl:          NOTRUN -> [FAIL][153] ([IGT#2])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@kms_sysfs_edid_timing.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-apl:          NOTRUN -> [SKIP][154] ([fdo#109271] / [i915#533])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@kms_vrr@flip-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][155] ([i915#3555]) +2 similar issues
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_vrr@flip-dpms.html

  * igt@nouveau_crc@pipe-a-ctx-flip-detection:
    - shard-iclb:         NOTRUN -> [SKIP][156] ([i915#2530]) +1 similar issue
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@nouveau_crc@pipe-a-ctx-flip-detection.html

  * igt@nouveau_crc@pipe-d-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][157] ([fdo#109278] / [i915#2530])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@nouveau_crc@pipe-d-source-rg.html
    - shard-tglb:         NOTRUN -> [SKIP][158] ([i915#2530]) +2 similar issues
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@nouveau_crc@pipe-d-source-rg.html

  * igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
    - shard-iclb:         NOTRUN -> [SKIP][159] ([fdo#109291]) +1 similar issue
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html
    - shard-tglb:         NOTRUN -> [SKIP][160] ([fdo#109291]) +2 similar issues
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html

  * igt@prime_vgem@coherency-gtt:
    - shard-tglb:         NOTRUN -> [SKIP][161] ([fdo#111656])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@prime_vgem@coherency-gtt.html
    - shard-iclb:         NOTRUN -> [SKIP][162] ([fdo#109292])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@prime_vgem@coherency-gtt.html

  * igt@prime_vgem@fence-read-hang:
    - shard-tglb:         NOTRUN -> [SKIP][163] ([fdo#109295]) +1 similar issue
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@prime_vgem@fence-read-hang.html

  * igt@sysfs_clients@fair-0:
    - shard-tglb:         NOTRUN -> [SKIP][164] ([i915#2994]) +1 similar issue
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@sysfs_clients@fair-0.html

  * igt@sysfs_clients@fair-1:
    - shard-apl:          NOTRUN -> [SKIP][165] ([fdo#109271] / [i915#2994]) +3 similar issues
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl2/igt@sysfs_clients@fair-1.html

  * igt@sysfs_clients@sema-25:
    - shard-iclb:         NOTRUN -> [SKIP][166] ([i915#2994]) +1 similar issue
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@sysfs_clients@sema-25.html
    - shard-kbl:          NOTRUN -> [SKIP][167] ([fdo#109271] / [i915#2994]) +1 similar issue
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@sysfs_clients@sema-25.html
    - shard-glk:          NOTRUN -> [SKIP][168] ([fdo#109271] / [i915#2994])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk3/igt@sysfs_clients@sema-25.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-iclb:         NOTRUN -> [SKIP][169] ([fdo#109307])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@tools_test@sysfs_l3_parity.html
    - shard-tglb:         NOTRUN -> [SKIP][170] ([fdo#109307])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@tools_test@sysfs_l3_parity.html

  
#### Possible fixes ####

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [TIMEOUT][171] ([i915#3070]) -> [PASS][172]
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb8/igt@gem_eio@unwedge-stress.html
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-iclb:         [FAIL][173] ([i915#2842]) -> [PASS][174]
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs0.html
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-kbl:          [FAIL][175] ([i915#2842]) -> [PASS][176] +1 similar issue
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html
    - shard-glk:          [FAIL][177] ([i915#2842]) -> [PASS][178] +3 similar issues
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk6/igt@gem_exec_fair@basic-pace@vecs0.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk4/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_exec_flush@basic-wb-rw-before-default:
    - shard-snb:          [SKIP][179] ([fdo#109271]) -> [PASS][180] +1 similar issue
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb6/igt@gem_exec_flush@basic-wb-rw-before-default.html
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb7/igt@gem_exec_flush@basic-wb-rw-before-default.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [DMESG-WARN][181] ([i915#180]) -> [PASS][182] +2 similar issues
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-iclb:         [FAIL][183] ([i915#2346]) -> [PASS][184]
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
    - shard-iclb:         [SKIP][185] ([i915#3701]) -> [PASS][186]
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html

  * igt@kms_plane_cursor@pipe-b-viewport-size-128:
    - shard-glk:          [DMESG-WARN][187] ([i915#118]) -> [PASS][188]
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk1/igt@kms_plane_cursor@pipe-b-viewport-size-128.html
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@kms_plane_cursor@pipe-b-viewport-size-128.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1-planes-upscale-downscale:
    - shard-iclb:         [SKIP][189] ([i915#5235]) -> [PASS][190] +2 similar issues
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1-planes-upscale-downscale.html
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1-planes-upscale-downscale.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
    - shard-glk:          [DMESG-FAIL][191] ([i915#118]) -> [PASS][192] +1 similar issue
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html

  * igt@sysfs_heartbeat_interval@mixed@vcs0:
    - shard-glk:          [WARN][193] ([i915#4055]) -> [PASS][194]
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk2/igt@sysfs_heartbeat_interval@mixed@vcs0.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@sysfs_heartbeat_interval@mixed@vcs0.html

  * igt@sysfs_heartbeat_interval@mixed@vecs0:
    - shard-glk:          [FAIL][195] ([i915#1731]) -> [PASS][196]
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk2/igt@sysfs_heartbeat_interval@mixed@vecs0.html
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@sysfs_heartbeat_interval@mixed@vecs0.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-iclb:         [SKIP][197] ([i915#4525]) -> [DMESG-WARN][198] ([i915#5614])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-iclb:         [DMESG-WARN][199] ([i915#5614]) -> [SKIP][200] ([i915#4525])
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb4/igt@gem_exec_balancer@parallel-keep-in-fence.html
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
    - shard-kbl:          [SKIP][201] ([fdo#109271] / [i915#3886]) -> [SKIP][202] ([fdo#109271] / [i915#3886] / [i915#92])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_color_chamelium@pipe-d-ctm-green-to-red:
    - shard-kbl:          [SKIP][203] ([fdo#109271] / [fdo#111827]) -> [SKIP][204] ([fdo#109271] / [fdo#111827] / [i915#92]) +2 similar issues
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html

  * igt@kms_plane_scaling@planes-upscale-20x20@pipe-c-dp-1-planes-upscale:
    - shard-kbl:          [SKIP][205] ([fdo#109271]) -> [SKIP][206] ([fdo#109271] / [i915#92]) +9 similar issues
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl6/igt@kms_plane_scaling@planes-upscale-20x20@pipe-c-dp-1-planes-upscale.html
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane_scaling@planes-upscale-20x20@pipe-c-dp-1-planes-upscale.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
    - shard-iclb:         [SKIP][207] ([i915#658]) -> [SKIP][208] ([i915#2920])
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb1/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][209], [FAIL][210], [FAIL][211], [FAIL][212], [FAIL][213], [FAIL][214], [FAIL][215], [FAIL][216]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][217], [FAIL][218], [FAIL][219], [FAIL][220], [FAIL][221], [FAIL][222], [FAIL][223], [FAIL][224]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl4/igt@runner@aborted.html
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl2/igt@runner@aborted.html
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@runner@aborted.html
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@runner@aborted.html
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@runner@aborted.html
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl2/igt@runner@aborted.html
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl6/igt@runner@aborted.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl3/igt@runner@aborted.html
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@runner@aborted.html
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@runner@aborted.html
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl8/igt@runner@aborted.html
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@runner@aborted.html
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1904]: https://gitlab.freedesktop.org/drm/intel/issues/1904
  [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
  [i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3464]: https://gitlab.freedesktop.org/drm/intel/issues/3464
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
  [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
  [i915#4055]: https://gitlab.freedesktop.org/drm/intel/issues/4055
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839
  [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
  [i915#4941]: https://gitlab.freedesktop.org/drm/intel/issues/4941
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
  [i915#5076]: https://gitlab.freedesktop.org/drm/intel/issues/5076
  [i915#5098]: https://gitlab.freedesktop.org/drm/intel/issues/5098
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5438]: https://gitlab.freedesktop.org/drm/intel/issues/5438
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5501]: https://gitlab.freedesktop.org/drm/intel/issues/5501
  [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614
  [i915#5691]: https://gitlab.freedesktop.org/drm/intel/issues/5691
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903
  [i915#6029]: https://gitlab.freedesktop.org/drm/intel/issues/6029
  [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6478 -> IGTPW_7127
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_11669: 3c90017b789c05dd9548205b2fa3bb05d7890be3 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7127: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/index.html
  IGT_6478: 7c3ceb08b633a66f77f42e596593de394da5dccc @ 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_7127/index.html

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

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

* Re: [igt-dev] Fwd: ✗ Fi.CI.IGT: failure for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6)
       [not found]   ` <934c60df-1293-38d1-408e-ab1bb2c88ec6@quicinc.com>
@ 2022-05-19 20:44     ` Jessica Zhang
  2022-05-20  1:48       ` Vudum, Lakshminarayana
  2022-06-05  2:26       ` Dixit, Ashutosh
  0 siblings, 2 replies; 18+ messages in thread
From: Jessica Zhang @ 2022-05-19 20:44 UTC (permalink / raw)
  To: lakshminarayana.vudum; +Cc: igt-dev



On 5/19/2022 1:34 PM, Jessica Zhang wrote:
> Hi Lakshmi,
> 
> I looked into this regression, but it doesn't seem to be related to my 
> patch. Can you help take a look at it?

+ cc: igt-dev list

> 
> Thanks,
> Jessica Zhang
> 
> 
> -------- Forwarded Message --------
> Subject: ✗ Fi.CI.IGT: failure for lib/igt_kms: Set pipe->plane_primary 
> to driver-assigned primary plane when there are multiple possible 
> primary planes (rev6)
> Date: Wed, 18 May 2022 08:16:27 +0000
> From: Patchwork <patchwork@emeril.freedesktop.org>
> Reply-To: igt-dev@lists.freedesktop.org
> To: Jessica Zhang <quic_jesszhan@quicinc.com>
> CC: igt-dev@lists.freedesktop.org
> 
> == Series Details ==
> 
> Series: lib/igt_kms: Set pipe->plane_primary to driver-assigned primary 
> plane when there are multiple possible primary planes (rev6)
> URL   : https://patchwork.freedesktop.org/series/103897/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_11669_full -> IGTPW_7127_full
> ====================================================
> 
> Summary
> -------
> 
>    **FAILURE**
> 
>    Serious unknown changes coming with IGTPW_7127_full absolutely need 
> to be
>    verified manually.
>      If you think the reported changes have nothing to do with the changes
>    introduced in IGTPW_7127_full, please notify your bug team 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_7127/index.html
> 
> Participating hosts (13 -> 8)
> ------------------------------
> 
>    Missing    (5): pig-kbl-iris pig-glk-j5005 pig-skl-6260u shard-rkl 
> shard-dg1
> Possible new issues
> -------------------
> 
>    Here are the unknown changes that may have been introduced in 
> IGTPW_7127_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>    * igt@kms_plane@plane-position-hole-dpms@pipe-a-planes:
>      - shard-kbl:          [PASS][1] -> [FAIL][2]
>     [1]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@kms_plane@plane-position-hole-dpms@pipe-a-planes.html 
> 
>     [2]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane@plane-position-hole-dpms@pipe-a-planes.html 
> 
> 
>    Known issues
> ------------
> 
>    Here are the changes found in IGTPW_7127_full that come from known 
> issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>    * igt@feature_discovery@display-3x:
>      - shard-iclb:         NOTRUN -> [SKIP][3] ([i915#1839])
>     [3]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@feature_discovery@display-3x.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][4] ([i915#1839])
>     [4]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@feature_discovery@display-3x.html 
> 
> 
>    * igt@gem_ccs@block-copy-uncompressed:
>      - shard-iclb:         NOTRUN -> [SKIP][5] ([i915#5327]) +1 similar 
> issue
>     [5]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@gem_ccs@block-copy-uncompressed.html 
> 
> 
>    * igt@gem_ccs@ctrl-surf-copy:
>      - shard-tglb:         NOTRUN -> [SKIP][6] ([i915#3555] / [i915#5325])
>     [6]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gem_ccs@ctrl-surf-copy.html 
> 
> 
>    * igt@gem_ctx_isolation@preservation-s3@bcs0:
>      - shard-apl:          [PASS][7] -> [DMESG-WARN][8] ([i915#180]) +4 
> similar issues
>     [7]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html 
> 
>     [8]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@gem_ctx_isolation@preservation-s3@bcs0.html 
> 
> 
>    * igt@gem_ctx_persistence@file:
>      - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099])
>     [9]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb7/igt@gem_ctx_persistence@file.html 
> 
> 
>    * igt@gem_ctx_sseu@engines:
>      - shard-tglb:         NOTRUN -> [SKIP][10] ([i915#280])
>     [10]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gem_ctx_sseu@engines.html 
> 
> 
>    * igt@gem_eio@in-flight-contexts-1us:
>      - shard-iclb:         [PASS][11] -> [TIMEOUT][12] ([i915#3070])
>     [11]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb4/igt@gem_eio@in-flight-contexts-1us.html 
> 
>     [12]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_eio@in-flight-contexts-1us.html 
> 
>      - shard-tglb:         [PASS][13] -> [TIMEOUT][14] ([i915#3063])
>     [13]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-tglb6/igt@gem_eio@in-flight-contexts-1us.html 
> 
>     [14]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@gem_eio@in-flight-contexts-1us.html 
> 
> 
>    * igt@gem_eio@kms:
>      - shard-tglb:         NOTRUN -> [FAIL][15] ([i915#5784])
>     [15]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@gem_eio@kms.html 
> 
> 
>    * igt@gem_exec_fair@basic-none-rrul@rcs0:
>      - shard-kbl:          [PASS][16] -> [FAIL][17] ([i915#2842])
>     [16]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@gem_exec_fair@basic-none-rrul@rcs0.html 
> 
>     [17]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html 
> 
> 
>    * igt@gem_exec_fair@basic-none-share@rcs0:
>      - shard-glk:          [PASS][18] -> [FAIL][19] ([i915#2842])
>     [18]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk1/igt@gem_exec_fair@basic-none-share@rcs0.html 
> 
>     [19]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@gem_exec_fair@basic-none-share@rcs0.html 
> 
> 
>    * igt@gem_exec_fair@basic-pace-share@rcs0:
>      - shard-tglb:         NOTRUN -> [FAIL][20] ([i915#2842])
>     [20]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html 
> 
> 
>    * igt@gem_exec_fair@basic-pace-solo@rcs0:
>      - shard-iclb:         [PASS][21] -> [FAIL][22] ([i915#2842])
>     [21]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html 
> 
>     [22]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_exec_fair@basic-pace-solo@rcs0.html 
> 
> 
>    * igt@gem_exec_fair@basic-throttle@rcs0:
>      - shard-iclb:         [PASS][23] -> [FAIL][24] ([i915#2849])
>     [23]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html 
> 
>     [24]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html 
> 
> 
>    * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
>      - shard-iclb:         NOTRUN -> [SKIP][25] ([fdo#109313])
>     [25]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][26] ([fdo#109313])
>     [26]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html 
> 
> 
>    * igt@gem_exec_flush@basic-batch-kernel-default-uc:
>      - shard-snb:          [PASS][27] -> [SKIP][28] ([fdo#109271]) +2 
> similar issues
>     [27]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb2/igt@gem_exec_flush@basic-batch-kernel-default-uc.html 
> 
>     [28]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html 
> 
> 
>    * igt@gem_exec_params@no-bsd:
>      - shard-tglb:         NOTRUN -> [SKIP][29] ([fdo#109283])
>     [29]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@gem_exec_params@no-bsd.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][30] ([fdo#109283])
>     [30]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@gem_exec_params@no-bsd.html 
> 
> 
>    * igt@gem_lmem_swapping@parallel-multi:
>      - shard-glk:          NOTRUN -> [SKIP][31] ([fdo#109271] / 
> [i915#4613])
>     [31]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@gem_lmem_swapping@parallel-multi.html 
> 
> 
>    * igt@gem_lmem_swapping@parallel-random-verify-ccs:
>      - shard-kbl:          NOTRUN -> [SKIP][32] ([fdo#109271] / 
> [i915#4613]) +3 similar issues
>     [32]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][33] ([i915#4613]) +3 similar 
> issues
>     [33]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html 
> 
> 
>    * igt@gem_lmem_swapping@random-engines:
>      - shard-apl:          NOTRUN -> [SKIP][34] ([fdo#109271] / 
> [i915#4613]) +1 similar issue
>     [34]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@gem_lmem_swapping@random-engines.html 
> 
> 
>    * igt@gem_lmem_swapping@verify:
>      - shard-iclb:         NOTRUN -> [SKIP][35] ([i915#4613]) +1 similar 
> issue
>     [35]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@gem_lmem_swapping@verify.html 
> 
> 
>    * igt@gem_media_vme:
>      - shard-tglb:         NOTRUN -> [SKIP][36] ([i915#284])
>     [36]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@gem_media_vme.html 
> 
> 
>    * igt@gem_pwrite@basic-exhaustion:
>      - shard-apl:          NOTRUN -> [WARN][37] ([i915#2658])
>     [37]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@gem_pwrite@basic-exhaustion.html 
> 
> 
>    * igt@gem_pxp@protected-raw-src-copy-not-readible:
>      - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#4270]) +2 similar 
> issues
>     [38]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@gem_pxp@protected-raw-src-copy-not-readible.html 
> 
> 
>    * igt@gem_pxp@reject-modify-context-protection-off-1:
>      - shard-iclb:         NOTRUN -> [SKIP][39] ([i915#4270]) +2 similar 
> issues
>     [39]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@gem_pxp@reject-modify-context-protection-off-1.html 
> 
> 
>    * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
>      - shard-iclb:         NOTRUN -> [SKIP][40] ([i915#768]) +2 similar 
> issues
>     [40]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html 
> 
> 
>    * igt@gem_softpin@evict-single-offset:
>      - shard-kbl:          NOTRUN -> [FAIL][41] ([i915#4171])
>     [41]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl6/igt@gem_softpin@evict-single-offset.html 
> 
>      - shard-glk:          NOTRUN -> [FAIL][42] ([i915#4171])
>     [42]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@gem_softpin@evict-single-offset.html 
> 
>      - shard-apl:          NOTRUN -> [FAIL][43] ([i915#4171])
>     [43]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@gem_softpin@evict-single-offset.html 
> 
> 
>    * igt@gem_softpin@evict-snoop:
>      - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109312])
>     [44]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_softpin@evict-snoop.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109312])
>     [45]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@gem_softpin@evict-snoop.html 
> 
> 
>    * igt@gem_userptr_blits@vma-merge:
>      - shard-apl:          NOTRUN -> [FAIL][46] ([i915#3318])
>     [46]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@gem_userptr_blits@vma-merge.html 
> 
> 
>    * igt@gen7_exec_parse@basic-offset:
>      - shard-tglb:         NOTRUN -> [SKIP][47] ([fdo#109289]) +4 
> similar issues
>     [47]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gen7_exec_parse@basic-offset.html 
> 
> 
>    * igt@gen9_exec_parse@batch-invalid-length:
>      - shard-iclb:         NOTRUN -> [SKIP][48] ([i915#2856]) +2 similar 
> issues
>     [48]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@gen9_exec_parse@batch-invalid-length.html 
> 
> 
>    * igt@gen9_exec_parse@bb-oversize:
>      - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#2527] / 
> [i915#2856]) +1 similar issue
>     [49]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@gen9_exec_parse@bb-oversize.html 
> 
> 
>    * igt@i915_pm_backlight@bad-brightness:
>      - shard-glk:          NOTRUN -> [SKIP][50] ([fdo#109271]) +80 
> similar issues
>     [50]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@i915_pm_backlight@bad-brightness.html 
> 
> 
>    * igt@i915_pm_backlight@fade_with_dpms:
>      - shard-kbl:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#92])
>     [51]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@i915_pm_backlight@fade_with_dpms.html 
> 
> 
>    * igt@i915_pm_dc@dc3co-vpb-simulation:
>      - shard-tglb:         NOTRUN -> [SKIP][52] ([i915#1904])
>     [52]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@i915_pm_dc@dc3co-vpb-simulation.html 
> 
> 
>    * igt@i915_pm_dc@dc6-dpms:
>      - shard-kbl:          NOTRUN -> [FAIL][53] ([i915#454])
>     [53]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html 
> 
> 
>    * igt@i915_pm_dc@dc6-psr:
>      - shard-tglb:         NOTRUN -> [FAIL][54] ([i915#454]) +1 similar 
> issue
>     [54]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@i915_pm_dc@dc6-psr.html 
> 
> 
>    * igt@i915_pm_dc@dc9-dpms:
>      - shard-iclb:         [PASS][55] -> [SKIP][56] ([i915#4281])
>     [55]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb4/igt@i915_pm_dc@dc9-dpms.html 
> 
>     [56]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html 
> 
> 
>    * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
>      - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#111644] / 
> [i915#1397] / [i915#2411])
>     [57]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html 
> 
> 
>    * igt@i915_pm_rpm@system-suspend:
>      - shard-kbl:          NOTRUN -> [DMESG-WARN][58] ([i915#62] / 
> [i915#92]) +5 similar issues
>     [58]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@i915_pm_rpm@system-suspend.html 
> 
> 
>    * igt@i915_selftest@live@hangcheck:
>      - shard-snb:          [PASS][59] -> [INCOMPLETE][60] ([i915#3921])
>     [59]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb6/igt@i915_selftest@live@hangcheck.html 
> 
>     [60]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb6/igt@i915_selftest@live@hangcheck.html 
> 
> 
>    * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
>      - shard-kbl:          NOTRUN -> [SKIP][61] ([fdo#109271]) +240 
> similar issues
>     [61]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html 
> 
> 
>    * igt@kms_big_fb@4-tiled-addfb-size-overflow:
>      - shard-iclb:         NOTRUN -> [SKIP][62] ([i915#5286]) +4 similar 
> issues
>     [62]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_big_fb@4-tiled-addfb-size-overflow.html 
> 
> 
>    * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
>      - shard-tglb:         NOTRUN -> [SKIP][63] ([i915#5286]) +5 similar 
> issues
>     [63]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html 
> 
> 
>    * igt@kms_big_fb@linear-16bpp-rotate-270:
>      - shard-tglb:         NOTRUN -> [SKIP][64] ([fdo#111614]) +3 
> similar issues
>     [64]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_big_fb@linear-16bpp-rotate-270.html 
> 
> 
>    * igt@kms_big_fb@linear-64bpp-rotate-90:
>      - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#110725] / 
> [fdo#111614]) +3 similar issues
>     [65]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_big_fb@linear-64bpp-rotate-90.html 
> 
> 
>    * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>      - shard-snb:          NOTRUN -> [SKIP][66] ([fdo#109271]) +143 
> similar issues
>     [66]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html 
> 
> 
>    * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
>      - shard-tglb:         NOTRUN -> [SKIP][67] ([fdo#111615]) +8 
> similar issues
>     [67]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][68] ([fdo#110723]) +1 
> similar issue
>     [68]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html 
> 
> 
>    * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
>      - shard-kbl:          NOTRUN -> [SKIP][69] ([fdo#109271] / 
> [i915#3886]) +5 similar issues
>     [69]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html 
> 
> 
>    * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
>      - shard-glk:          NOTRUN -> [SKIP][70] ([fdo#109271] / 
> [i915#3886]) +2 similar issues
>     [70]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][71] ([fdo#109278] / 
> [i915#3886]) +4 similar issues
>     [71]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html 
> 
> 
>    * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
>      - shard-apl:          NOTRUN -> [SKIP][72] ([fdo#109271] / 
> [i915#3886]) +4 similar issues
>     [72]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#3689] / 
> [i915#3886]) +4 similar issues
>     [73]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html 
> 
> 
>    * igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs:
>      - shard-tglb:         NOTRUN -> [SKIP][74] ([fdo#111615] / 
> [i915#3689]) +9 similar issues
>     [74]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs.html 
> 
> 
>    * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
>      - shard-tglb:         NOTRUN -> [SKIP][75] ([i915#3689]) +9 similar 
> issues
>     [75]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html 
> 
> 
>    * igt@kms_cdclk@mode-transition:
>      - shard-apl:          NOTRUN -> [SKIP][76] ([fdo#109271]) +186 
> similar issues
>     [76]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@kms_cdclk@mode-transition.html 
> 
> 
>    * igt@kms_cdclk@plane-scaling:
>      - shard-tglb:         NOTRUN -> [SKIP][77] ([i915#3742])
>     [77]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_cdclk@plane-scaling.html 
> 
> 
>    * igt@kms_chamelium@hdmi-audio:
>      - shard-iclb:         NOTRUN -> [SKIP][78] ([fdo#109284] / 
> [fdo#111827]) +13 similar issues
>     [78]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_chamelium@hdmi-audio.html 
> 
> 
>    * igt@kms_chamelium@hdmi-crc-nonplanar-formats:
>      - shard-glk:          NOTRUN -> [SKIP][79] ([fdo#109271] / 
> [fdo#111827]) +7 similar issues
>     [79]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@kms_chamelium@hdmi-crc-nonplanar-formats.html 
> 
> 
>    * igt@kms_chamelium@hdmi-hpd-for-each-pipe:
>      - shard-kbl:          NOTRUN -> [SKIP][80] ([fdo#109271] / 
> [fdo#111827]) +23 similar issues
>     [80]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html 
> 
> 
>    * igt@kms_chamelium@vga-hpd-for-each-pipe:
>      - shard-apl:          NOTRUN -> [SKIP][81] ([fdo#109271] / 
> [fdo#111827]) +14 similar issues
>     [81]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@kms_chamelium@vga-hpd-for-each-pipe.html 
> 
> 
>    * igt@kms_color@pipe-d-ctm-blue-to-red:
>      - shard-iclb:         NOTRUN -> [SKIP][82] ([fdo#109278] / 
> [i915#1149])
>     [82]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_color@pipe-d-ctm-blue-to-red.html 
> 
> 
>    * igt@kms_color_chamelium@pipe-a-ctm-0-25:
>      - shard-snb:          NOTRUN -> [SKIP][83] ([fdo#109271] / 
> [fdo#111827]) +5 similar issues
>     [83]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb4/igt@kms_color_chamelium@pipe-a-ctm-0-25.html 
> 
> 
>    * igt@kms_color_chamelium@pipe-b-ctm-0-75:
>      - shard-tglb:         NOTRUN -> [SKIP][84] ([fdo#109284] / 
> [fdo#111827]) +23 similar issues
>     [84]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_color_chamelium@pipe-b-ctm-0-75.html 
> 
> 
>    * igt@kms_content_protection@atomic:
>      - shard-kbl:          NOTRUN -> [TIMEOUT][85] ([i915#1319]) +1 
> similar issue
>     [85]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_content_protection@atomic.html 
> 
> 
>    * igt@kms_content_protection@atomic-dpms:
>      - shard-tglb:         NOTRUN -> [SKIP][86] ([i915#1063])
>     [86]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@kms_content_protection@atomic-dpms.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][87] ([fdo#109300] / 
> [fdo#111066])
>     [87]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb5/igt@kms_content_protection@atomic-dpms.html 
> 
> 
>    * igt@kms_content_protection@srm:
>      - shard-apl:          NOTRUN -> [TIMEOUT][88] ([i915#1319])
>     [88]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl2/igt@kms_content_protection@srm.html 
> 
> 
>    * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen:
>      - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#3359]) +7 similar 
> issues
>     [89]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html 
> 
> 
>    * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen:
>      - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#3319]) +1 similar 
> issue
>     [90]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html 
> 
> 
>    * igt@kms_cursor_crc@pipe-b-cursor-512x512-random:
>      - shard-iclb:         NOTRUN -> [SKIP][91] ([fdo#109278] / 
> [fdo#109279]) +1 similar issue
>     [91]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_cursor_crc@pipe-b-cursor-512x512-random.html 
> 
> 
>    * igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding:
>      - shard-tglb:         NOTRUN -> [SKIP][92] ([fdo#109279] / 
> [i915#3359] / [i915#5691])
>     [92]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html 
> 
>      - shard-kbl:          NOTRUN -> [SKIP][93] ([fdo#109271] / 
> [i915#5691])
>     [93]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html 
> 
> 
>    * igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen:
>      - shard-tglb:         NOTRUN -> [SKIP][94] ([fdo#109279] / 
> [i915#3359]) +5 similar issues
>     [94]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen.html 
> 
> 
>    * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
>      - shard-iclb:         NOTRUN -> [SKIP][95] ([fdo#109274] / 
> [fdo#109278]) +5 similar issues
>     [95]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html 
> 
> 
>    * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>      - shard-glk:          [PASS][96] -> [FAIL][97] ([i915#2346])
>     [96]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html 
> 
>     [97]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html 
> 
> 
>    * igt@kms_cursor_legacy@pipe-d-torture-bo:
>      - shard-kbl:          NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#533])
>     [98]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html 
> 
> 
>    * 
> igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>      - shard-tglb:         NOTRUN -> [SKIP][99] ([i915#4103]) +1 similar 
> issue
>     [99]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html 
> 
> 
>    * igt@kms_dither@fb-8bpc-vs-panel-6bpc@edp-1-pipe-a:
>      - shard-iclb:         NOTRUN -> [SKIP][100] ([i915#6029])
>     [100]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@edp-1-pipe-a.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][101] ([i915#6029])
>     [101]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@edp-1-pipe-a.html 
> 
> 
>    * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
>      - shard-tglb:         NOTRUN -> [SKIP][102] ([i915#3528])
>     [102]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][103] ([i915#3528])
>     [103]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html 
> 
> 
>    * igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled:
>      - shard-tglb:         NOTRUN -> [SKIP][104] ([i915#5287]) +1 
> similar issue
>     [104]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][105] ([i915#5287])
>     [105]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled.html 
> 
> 
>    * igt@kms_fbcon_fbt@fbc-suspend:
>      - shard-apl:          [PASS][106] -> [FAIL][107] ([i915#4767])
>     [106]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl8/igt@kms_fbcon_fbt@fbc-suspend.html 
> 
>     [107]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html 
> 
>      - shard-kbl:          NOTRUN -> [FAIL][108] ([i915#4767])
>     [108]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html 
> 
> 
>    * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
>      - shard-tglb:         NOTRUN -> [SKIP][109] ([fdo#109274] / 
> [fdo#111825]) +14 similar issues
>     [109]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html 
> 
> 
>    * igt@kms_flip@2x-nonexisting-fb:
>      - shard-iclb:         NOTRUN -> [SKIP][110] ([fdo#109274]) +5 
> similar issues
>     [110]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_flip@2x-nonexisting-fb.html 
> 
> 
>    * igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
>      - shard-snb:          [PASS][111] -> [INCOMPLETE][112] ([i915#4839])
>     [111]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html 
> 
>     [112]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html 
> 
> 
>    * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
>      - shard-apl:          NOTRUN -> [DMESG-WARN][113] ([i915#180]) +1 
> similar issue
>     [113]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html 
> 
> 
>    * 
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
>      - shard-tglb:         NOTRUN -> [SKIP][114] ([i915#2587]) +1 
> similar issue
>     [114]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][115] ([i915#3701])
>     [115]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html 
> 
> 
>    * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
>      - shard-kbl:          [PASS][116] -> [DMESG-WARN][117] ([i915#62] / 
> [i915#92]) +7 similar issues
>     [116]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html 
> 
>     [117]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html 
> 
> 
>    * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
>      - shard-iclb:         NOTRUN -> [SKIP][118] ([fdo#109280]) +22 
> similar issues
>     [118]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html 
> 
> 
>    * igt@kms_frontbuffer_tracking@fbc-tiling-4:
>      - shard-iclb:         NOTRUN -> [SKIP][119] ([i915#5438]) +1 
> similar issue
>     [119]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html 
> 
> 
>    * 
> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
>      - shard-tglb:         NOTRUN -> [SKIP][120] ([fdo#109280] / 
> [fdo#111825]) +39 similar issues
>     [120]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html 
> 
> 
>    * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
>      - shard-tglb:         NOTRUN -> [SKIP][121] ([i915#5439]) +1 
> similar issue
>     [121]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html 
> 
> 
>    * igt@kms_invalid_mode@clock-too-high:
>      - shard-tglb:         NOTRUN -> [SKIP][122] ([i915#4278])
>     [122]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_invalid_mode@clock-too-high.html 
> 
> 
>    * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
>      - shard-iclb:         NOTRUN -> [SKIP][123] ([fdo#109289]) +4 
> similar issues
>     [123]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html 
> 
> 
>    * igt@kms_plane@plane-position-hole-dpms@pipe-b-planes:
>      - shard-kbl:          [PASS][124] -> [SKIP][125] ([fdo#109271] / 
> [i915#92])
>     [124]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@kms_plane@plane-position-hole-dpms@pipe-b-planes.html 
> 
>     [125]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane@plane-position-hole-dpms@pipe-b-planes.html 
> 
> 
>    * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
>      - shard-glk:          NOTRUN -> [FAIL][126] ([fdo#108145] / 
> [i915#265])
>     [126]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html 
> 
>      - shard-apl:          NOTRUN -> [FAIL][127] ([fdo#108145] / 
> [i915#265])
>     [127]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html 
> 
> 
>    * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
>      - shard-kbl:          NOTRUN -> [FAIL][128] ([fdo#108145] / 
> [i915#265]) +2 similar issues
>     [128]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html 
> 
> 
>    * igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max:
>      - shard-iclb:         NOTRUN -> [SKIP][129] ([fdo#109278]) +36 
> similar issues
>     [129]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb5/igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max.html 
> 
> 
>    * igt@kms_plane_lowres@pipe-b-tiling-4:
>      - shard-tglb:         NOTRUN -> [SKIP][130] ([i915#5288]) +1 
> similar issue
>     [130]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-4.html 
> 
> 
>    * igt@kms_plane_lowres@pipe-c-tiling-yf:
>      - shard-iclb:         NOTRUN -> [SKIP][131] ([i915#3536])
>     [131]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_plane_lowres@pipe-c-tiling-yf.html 
> 
> 
>    * igt@kms_plane_lowres@pipe-d-tiling-y:
>      - shard-tglb:         NOTRUN -> [SKIP][132] ([i915#3536]) +1 
> similar issue
>     [132]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_plane_lowres@pipe-d-tiling-y.html 
> 
> 
>    * igt@kms_plane_lowres@pipe-d-tiling-yf:
>      - shard-tglb:         NOTRUN -> [SKIP][133] ([fdo#111615] / 
> [fdo#112054]) +1 similar issue
>     [133]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@kms_plane_lowres@pipe-d-tiling-yf.html 
> 
> 
>    * igt@kms_plane_scaling@planes-upscale-20x20@pipe-b-dp-1-planes-upscale:
>      - shard-kbl:          [PASS][134] -> [DMESG-WARN][135] ([i915#180] 
> / [i915#62] / [i915#92]) +1 similar issue
>     [134]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl6/igt@kms_plane_scaling@planes-upscale-20x20@pipe-b-dp-1-planes-upscale.html 
> 
>     [135]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane_scaling@planes-upscale-20x20@pipe-b-dp-1-planes-upscale.html 
> 
> 
>    * 
> igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-a-edp-1-upscale-with-rotation: 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][136] ([i915#5176]) +5 
> similar issues
>     [136]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-a-edp-1-upscale-with-rotation.html 
> 
> 
>    * 
> igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-b-edp-1-upscale-with-rotation: 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][137] ([i915#5176]) +7 
> similar issues
>     [137]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-b-edp-1-upscale-with-rotation.html 
> 
> 
>    * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
>      - shard-iclb:         NOTRUN -> [SKIP][138] ([fdo#111068] / 
> [i915#658])
>     [138]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html 
> 
>      - shard-kbl:          NOTRUN -> [SKIP][139] ([fdo#109271] / 
> [i915#658]) +2 similar issues
>     [139]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][140] ([i915#2920])
>     [140]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html 
> 
> 
>    * igt@kms_psr2_su@page_flip-nv12:
>      - shard-tglb:         NOTRUN -> [SKIP][141] ([i915#1911])
>     [141]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_psr2_su@page_flip-nv12.html 
> 
> 
>    * igt@kms_psr@psr2_cursor_mmap_gtt:
>      - shard-iclb:         NOTRUN -> [SKIP][142] ([fdo#109441])
>     [142]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_gtt.html 
> 
> 
>    * igt@kms_psr@psr2_sprite_blt:
>      - shard-tglb:         NOTRUN -> [FAIL][143] ([i915#132] / 
> [i915#3467]) +2 similar issues
>     [143]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_psr@psr2_sprite_blt.html 
> 
> 
>    * igt@kms_psr@psr2_sprite_plane_move:
>      - shard-iclb:         [PASS][144] -> [SKIP][145] ([fdo#109441]) +2 
> similar issues
>     [144]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html 
> 
>     [145]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html 
> 
> 
>    * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>      - shard-tglb:         NOTRUN -> [SKIP][146] ([i915#5519])
>     [146]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html 
> 
> 
>    * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
>      - shard-tglb:         [PASS][147] -> [SKIP][148] ([i915#5519])
>     [147]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-tglb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html 
> 
>     [148]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html 
> 
> 
>    * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
>      - shard-tglb:         NOTRUN -> [SKIP][149] ([i915#5289])
>     [149]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html 
> 
> 
>    * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a:
>      - shard-tglb:         NOTRUN -> [SKIP][150] ([i915#5030]) +3 
> similar issues
>     [150]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a.html 
> 
> 
>    * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-c:
>      - shard-iclb:         NOTRUN -> [SKIP][151] ([i915#5030]) +2 
> similar issues
>     [151]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-c.html 
> 
> 
>    * igt@kms_setmode@invalid-clone-single-crtc-stealing:
>      - shard-iclb:         NOTRUN -> [SKIP][152] ([i915#3555]) +2 
> similar issues
>     [152]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html 
> 
> 
>    * igt@kms_sysfs_edid_timing:
>      - shard-apl:          NOTRUN -> [FAIL][153] ([IGT#2])
>     [153]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@kms_sysfs_edid_timing.html 
> 
> 
>    * igt@kms_vblank@pipe-d-wait-idle:
>      - shard-apl:          NOTRUN -> [SKIP][154] ([fdo#109271] / 
> [i915#533])
>     [154]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@kms_vblank@pipe-d-wait-idle.html 
> 
> 
>    * igt@kms_vrr@flip-dpms:
>      - shard-tglb:         NOTRUN -> [SKIP][155] ([i915#3555]) +2 
> similar issues
>     [155]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_vrr@flip-dpms.html 
> 
> 
>    * igt@nouveau_crc@pipe-a-ctx-flip-detection:
>      - shard-iclb:         NOTRUN -> [SKIP][156] ([i915#2530]) +1 
> similar issue
>     [156]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@nouveau_crc@pipe-a-ctx-flip-detection.html 
> 
> 
>    * igt@nouveau_crc@pipe-d-source-rg:
>      - shard-iclb:         NOTRUN -> [SKIP][157] ([fdo#109278] / 
> [i915#2530])
>     [157]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@nouveau_crc@pipe-d-source-rg.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][158] ([i915#2530]) +2 
> similar issues
>     [158]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@nouveau_crc@pipe-d-source-rg.html 
> 
> 
>    * igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
>      - shard-iclb:         NOTRUN -> [SKIP][159] ([fdo#109291]) +1 
> similar issue
>     [159]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][160] ([fdo#109291]) +2 
> similar issues
>     [160]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html 
> 
> 
>    * igt@prime_vgem@coherency-gtt:
>      - shard-tglb:         NOTRUN -> [SKIP][161] ([fdo#111656])
>     [161]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@prime_vgem@coherency-gtt.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][162] ([fdo#109292])
>     [162]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@prime_vgem@coherency-gtt.html 
> 
> 
>    * igt@prime_vgem@fence-read-hang:
>      - shard-tglb:         NOTRUN -> [SKIP][163] ([fdo#109295]) +1 
> similar issue
>     [163]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@prime_vgem@fence-read-hang.html 
> 
> 
>    * igt@sysfs_clients@fair-0:
>      - shard-tglb:         NOTRUN -> [SKIP][164] ([i915#2994]) +1 
> similar issue
>     [164]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@sysfs_clients@fair-0.html 
> 
> 
>    * igt@sysfs_clients@fair-1:
>      - shard-apl:          NOTRUN -> [SKIP][165] ([fdo#109271] / 
> [i915#2994]) +3 similar issues
>     [165]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl2/igt@sysfs_clients@fair-1.html 
> 
> 
>    * igt@sysfs_clients@sema-25:
>      - shard-iclb:         NOTRUN -> [SKIP][166] ([i915#2994]) +1 
> similar issue
>     [166]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@sysfs_clients@sema-25.html 
> 
>      - shard-kbl:          NOTRUN -> [SKIP][167] ([fdo#109271] / 
> [i915#2994]) +1 similar issue
>     [167]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@sysfs_clients@sema-25.html 
> 
>      - shard-glk:          NOTRUN -> [SKIP][168] ([fdo#109271] / 
> [i915#2994])
>     [168]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk3/igt@sysfs_clients@sema-25.html 
> 
> 
>    * igt@tools_test@sysfs_l3_parity:
>      - shard-iclb:         NOTRUN -> [SKIP][169] ([fdo#109307])
>     [169]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@tools_test@sysfs_l3_parity.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][170] ([fdo#109307])
>     [170]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@tools_test@sysfs_l3_parity.html 
> 
> 
>    #### Possible fixes ####
> 
>    * igt@gem_eio@unwedge-stress:
>      - shard-iclb:         [TIMEOUT][171] ([i915#3070]) -> [PASS][172]
>     [171]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb8/igt@gem_eio@unwedge-stress.html 
> 
>     [172]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_eio@unwedge-stress.html 
> 
> 
>    * igt@gem_exec_fair@basic-pace@vcs0:
>      - shard-iclb:         [FAIL][173] ([i915#2842]) -> [PASS][174]
>     [173]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs0.html 
> 
>     [174]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_exec_fair@basic-pace@vcs0.html 
> 
> 
>    * igt@gem_exec_fair@basic-pace@vecs0:
>      - shard-kbl:          [FAIL][175] ([i915#2842]) -> [PASS][176] +1 
> similar issue
>     [175]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html 
> 
>     [176]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html 
> 
>      - shard-glk:          [FAIL][177] ([i915#2842]) -> [PASS][178] +3 
> similar issues
>     [177]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk6/igt@gem_exec_fair@basic-pace@vecs0.html 
> 
>     [178]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk4/igt@gem_exec_fair@basic-pace@vecs0.html 
> 
> 
>    * igt@gem_exec_flush@basic-wb-rw-before-default:
>      - shard-snb:          [SKIP][179] ([fdo#109271]) -> [PASS][180] +1 
> similar issue
>     [179]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb6/igt@gem_exec_flush@basic-wb-rw-before-default.html 
> 
>     [180]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb7/igt@gem_exec_flush@basic-wb-rw-before-default.html 
> 
> 
>    * igt@i915_suspend@fence-restore-tiled2untiled:
>      - shard-apl:          [DMESG-WARN][181] ([i915#180]) -> [PASS][182] 
> +2 similar issues
>     [181]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html 
> 
>     [182]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html 
> 
> 
>    * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>      - shard-iclb:         [FAIL][183] ([i915#2346]) -> [PASS][184]
>     [183]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html 
> 
>     [184]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html 
> 
> 
>    * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
>      - shard-iclb:         [SKIP][185] ([i915#3701]) -> [PASS][186]
>     [185]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html 
> 
>     [186]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html 
> 
> 
>    * igt@kms_plane_cursor@pipe-b-viewport-size-128:
>      - shard-glk:          [DMESG-WARN][187] ([i915#118]) -> [PASS][188]
>     [187]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk1/igt@kms_plane_cursor@pipe-b-viewport-size-128.html 
> 
>     [188]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@kms_plane_cursor@pipe-b-viewport-size-128.html 
> 
> 
>    * 
> igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1-planes-upscale-downscale: 
> 
>      - shard-iclb:         [SKIP][189] ([i915#5235]) -> [PASS][190] +2 
> similar issues
>     [189]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1-planes-upscale-downscale.html 
> 
>     [190]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1-planes-upscale-downscale.html 
> 
> 
>    * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
>      - shard-glk:          [DMESG-FAIL][191] ([i915#118]) -> [PASS][192] 
> +1 similar issue
>     [191]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html 
> 
>     [192]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html 
> 
> 
>    * igt@sysfs_heartbeat_interval@mixed@vcs0:
>      - shard-glk:          [WARN][193] ([i915#4055]) -> [PASS][194]
>     [193]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk2/igt@sysfs_heartbeat_interval@mixed@vcs0.html 
> 
>     [194]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@sysfs_heartbeat_interval@mixed@vcs0.html 
> 
> 
>    * igt@sysfs_heartbeat_interval@mixed@vecs0:
>      - shard-glk:          [FAIL][195] ([i915#1731]) -> [PASS][196]
>     [195]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk2/igt@sysfs_heartbeat_interval@mixed@vecs0.html 
> 
>     [196]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@sysfs_heartbeat_interval@mixed@vecs0.html 
> 
> 
>    #### Warnings ####
> 
>    * igt@gem_exec_balancer@parallel-bb-first:
>      - shard-iclb:         [SKIP][197] ([i915#4525]) -> 
> [DMESG-WARN][198] ([i915#5614])
>     [197]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html 
> 
>     [198]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@gem_exec_balancer@parallel-bb-first.html 
> 
> 
>    * igt@gem_exec_balancer@parallel-keep-in-fence:
>      - shard-iclb:         [DMESG-WARN][199] ([i915#5614]) -> 
> [SKIP][200] ([i915#4525])
>     [199]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb4/igt@gem_exec_balancer@parallel-keep-in-fence.html 
> 
>     [200]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html 
> 
> 
>    * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
>      - shard-kbl:          [SKIP][201] ([fdo#109271] / [i915#3886]) -> 
> [SKIP][202] ([fdo#109271] / [i915#3886] / [i915#92])
>     [201]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html 
> 
>     [202]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html 
> 
> 
>    * igt@kms_color_chamelium@pipe-d-ctm-green-to-red:
>      - shard-kbl:          [SKIP][203] ([fdo#109271] / [fdo#111827]) -> 
> [SKIP][204] ([fdo#109271] / [fdo#111827] / [i915#92]) +2 similar issues
>     [203]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html 
> 
>     [204]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html 
> 
> 
>    * igt@kms_plane_scaling@planes-upscale-20x20@pipe-c-dp-1-planes-upscale:
>      - shard-kbl:          [SKIP][205] ([fdo#109271]) -> [SKIP][206] 
> ([fdo#109271] / [i915#92]) +9 similar issues
>     [205]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl6/igt@kms_plane_scaling@planes-upscale-20x20@pipe-c-dp-1-planes-upscale.html 
> 
>     [206]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane_scaling@planes-upscale-20x20@pipe-c-dp-1-planes-upscale.html 
> 
> 
>    * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
>      - shard-iclb:         [SKIP][207] ([i915#658]) -> [SKIP][208] 
> ([i915#2920])
>     [207]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb1/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html 
> 
>     [208]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html 
> 
> 
>    * igt@runner@aborted:
>      - shard-apl:          ([FAIL][209], [FAIL][210], [FAIL][211], 
> [FAIL][212], [FAIL][213], [FAIL][214], [FAIL][215], [FAIL][216]) 
> ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][217], 
> [FAIL][218], [FAIL][219], [FAIL][220], [FAIL][221], [FAIL][222], 
> [FAIL][223], [FAIL][224]) ([fdo#109271] / [i915#180] / [i915#3002] / 
> [i915#4312] / [i915#5257])
>     [209]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl4/igt@runner@aborted.html 
> 
>     [210]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl2/igt@runner@aborted.html 
> 
>     [211]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@runner@aborted.html 
> 
>     [212]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@runner@aborted.html 
> 
>     [213]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@runner@aborted.html 
> 
>     [214]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl2/igt@runner@aborted.html 
> 
>     [215]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl6/igt@runner@aborted.html 
> 
>     [216]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl3/igt@runner@aborted.html 
> 
>     [217]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@runner@aborted.html 
> 
>     [218]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html 
> 
>     [219]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html 
> 
>     [220]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@runner@aborted.html 
> 
>     [221]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl8/igt@runner@aborted.html 
> 
>     [222]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@runner@aborted.html 
> 
>     [223]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html 
> 
>     [224]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html 
> 
> 
>      {name}: This element is suppressed. This means it is ignored when 
> computing
>            the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>    [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
>    [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
>    [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>    [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
>    [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
>    [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
>    [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
>    [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
>    [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
>    [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
>    [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
>    [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292
>    [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
>    [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
>    [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
>    [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
>    [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
>    [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
>    [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
>    [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>    [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
>    [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
>    [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
>    [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
>    [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
>    [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
>    [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
>    [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
>    [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
>    [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
>    [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>    [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
>    [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
>    [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
>    [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
>    [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
>    [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
>    [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
>    [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
>    [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
>    [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731
>    [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
>    [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>    [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
>    [i915#1904]: https://gitlab.freedesktop.org/drm/intel/issues/1904
>    [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
>    [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
>    [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
>    [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
>    [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
>    [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
>    [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
>    [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
>    [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
>    [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
>    [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
>    [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
>    [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
>    [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
>    [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
>    [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
>    [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
>    [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
>    [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
>    [i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
>    [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
>    [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>    [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
>    [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
>    [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
>    [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
>    [i915#3464]: https://gitlab.freedesktop.org/drm/intel/issues/3464
>    [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
>    [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
>    [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
>    [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
>    [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
>    [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
>    [i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
>    [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
>    [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
>    [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
>    [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
>    [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
>    [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
>    [i915#4055]: https://gitlab.freedesktop.org/drm/intel/issues/4055
>    [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
>    [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171
>    [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
>    [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
>    [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
>    [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
>    [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
>    [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
>    [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>    [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
>    [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839
>    [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
>    [i915#4941]: https://gitlab.freedesktop.org/drm/intel/issues/4941
>    [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
>    [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
>    [i915#5076]: https://gitlab.freedesktop.org/drm/intel/issues/5076
>    [i915#5098]: https://gitlab.freedesktop.org/drm/intel/issues/5098
>    [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
>    [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
>    [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
>    [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
>    [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
>    [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
>    [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
>    [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
>    [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
>    [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
>    [i915#5438]: https://gitlab.freedesktop.org/drm/intel/issues/5438
>    [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
>    [i915#5501]: https://gitlab.freedesktop.org/drm/intel/issues/5501
>    [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
>    [i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614
>    [i915#5691]: https://gitlab.freedesktop.org/drm/intel/issues/5691
>    [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
>    [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903
>    [i915#6029]: https://gitlab.freedesktop.org/drm/intel/issues/6029
>    [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
>    [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>    [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
>    [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
> 
> 
> Build changes
> -------------
> 
>    * CI: CI-20190529 -> None
>    * IGT: IGT_6478 -> IGTPW_7127
>    * Piglit: piglit_4509 -> None
> 
>    CI-20190529: 20190529
>    CI_DRM_11669: 3c90017b789c05dd9548205b2fa3bb05d7890be3 @ 
> git://anongit.freedesktop.org/gfx-ci/linux
>    IGTPW_7127: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/index.html
>    IGT_6478: 7c3ceb08b633a66f77f42e596593de394da5dccc @ 
> 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_7127/index.html
> 

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

* [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6)
  2022-05-17  1:37 [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes Jessica Zhang
                   ` (4 preceding siblings ...)
  2022-05-18  8:16 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-05-20  1:21 ` Patchwork
  2022-05-23 12:36 ` [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes Petri Latvala
  6 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2022-05-20  1:21 UTC (permalink / raw)
  To: Jessica Zhang; +Cc: igt-dev

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

== Series Details ==

Series: lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6)
URL   : https://patchwork.freedesktop.org/series/103897/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11669_full -> IGTPW_7127_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Missing    (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@display-3x:
    - shard-iclb:         NOTRUN -> [SKIP][1] ([i915#1839])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@feature_discovery@display-3x.html
    - shard-tglb:         NOTRUN -> [SKIP][2] ([i915#1839])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@feature_discovery@display-3x.html

  * igt@gem_ccs@block-copy-uncompressed:
    - shard-iclb:         NOTRUN -> [SKIP][3] ([i915#5327]) +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@gem_ccs@block-copy-uncompressed.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-tglb:         NOTRUN -> [SKIP][4] ([i915#3555] / [i915#5325])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - shard-apl:          [PASS][5] -> [DMESG-WARN][6] ([i915#180]) +4 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_ctx_persistence@file:
    - shard-snb:          NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb7/igt@gem_ctx_persistence@file.html

  * igt@gem_ctx_sseu@engines:
    - shard-tglb:         NOTRUN -> [SKIP][8] ([i915#280])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gem_ctx_sseu@engines.html

  * igt@gem_eio@in-flight-contexts-1us:
    - shard-iclb:         [PASS][9] -> [TIMEOUT][10] ([i915#3070])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb4/igt@gem_eio@in-flight-contexts-1us.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_eio@in-flight-contexts-1us.html
    - shard-tglb:         [PASS][11] -> [TIMEOUT][12] ([i915#3063])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-tglb6/igt@gem_eio@in-flight-contexts-1us.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@gem_eio@in-flight-contexts-1us.html

  * igt@gem_eio@kms:
    - shard-tglb:         NOTRUN -> [FAIL][13] ([i915#5784])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@gem_eio@kms.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-kbl:          [PASS][14] -> [FAIL][15] ([i915#2842])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-glk:          [PASS][16] -> [FAIL][17] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk1/igt@gem_exec_fair@basic-none-share@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][18] ([i915#2842])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-iclb:         [PASS][19] -> [FAIL][20] ([i915#2842])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][21] -> [FAIL][22] ([i915#2849])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-iclb:         NOTRUN -> [SKIP][23] ([fdo#109313])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
    - shard-tglb:         NOTRUN -> [SKIP][24] ([fdo#109313])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_exec_flush@basic-batch-kernel-default-uc:
    - shard-snb:          [PASS][25] -> [SKIP][26] ([fdo#109271]) +2 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb2/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html

  * igt@gem_exec_params@no-bsd:
    - shard-tglb:         NOTRUN -> [SKIP][27] ([fdo#109283])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@gem_exec_params@no-bsd.html
    - shard-iclb:         NOTRUN -> [SKIP][28] ([fdo#109283])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@gem_exec_params@no-bsd.html

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-glk:          NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#4613])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@gem_lmem_swapping@parallel-multi.html

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-kbl:          NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#4613]) +3 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][31] ([i915#4613]) +3 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-apl:          NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#4613]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@verify:
    - shard-iclb:         NOTRUN -> [SKIP][33] ([i915#4613]) +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@gem_lmem_swapping@verify.html

  * igt@gem_media_vme:
    - shard-tglb:         NOTRUN -> [SKIP][34] ([i915#284])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@gem_media_vme.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-apl:          NOTRUN -> [WARN][35] ([i915#2658])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@protected-raw-src-copy-not-readible:
    - shard-tglb:         NOTRUN -> [SKIP][36] ([i915#4270]) +2 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@gem_pxp@protected-raw-src-copy-not-readible.html

  * igt@gem_pxp@reject-modify-context-protection-off-1:
    - shard-iclb:         NOTRUN -> [SKIP][37] ([i915#4270]) +2 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@gem_pxp@reject-modify-context-protection-off-1.html

  * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
    - shard-iclb:         NOTRUN -> [SKIP][38] ([i915#768]) +2 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html

  * igt@gem_softpin@evict-single-offset:
    - shard-kbl:          NOTRUN -> [FAIL][39] ([i915#4171])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl6/igt@gem_softpin@evict-single-offset.html
    - shard-glk:          NOTRUN -> [FAIL][40] ([i915#4171])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@gem_softpin@evict-single-offset.html
    - shard-apl:          NOTRUN -> [FAIL][41] ([i915#4171])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@gem_softpin@evict-single-offset.html

  * igt@gem_softpin@evict-snoop:
    - shard-iclb:         NOTRUN -> [SKIP][42] ([fdo#109312])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_softpin@evict-snoop.html
    - shard-tglb:         NOTRUN -> [SKIP][43] ([fdo#109312])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@vma-merge:
    - shard-apl:          NOTRUN -> [FAIL][44] ([i915#3318])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@gem_userptr_blits@vma-merge.html

  * igt@gen7_exec_parse@basic-offset:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109289]) +4 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gen7_exec_parse@basic-offset.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - shard-iclb:         NOTRUN -> [SKIP][46] ([i915#2856]) +2 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([i915#2527] / [i915#2856]) +1 similar issue
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@gen9_exec_parse@bb-oversize.html

  * igt@i915_pm_backlight@bad-brightness:
    - shard-glk:          NOTRUN -> [SKIP][48] ([fdo#109271]) +80 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@i915_pm_backlight@bad-brightness.html

  * igt@i915_pm_backlight@fade_with_dpms:
    - shard-kbl:          NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#92])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@i915_pm_backlight@fade_with_dpms.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-tglb:         NOTRUN -> [SKIP][50] ([i915#1904])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-kbl:          NOTRUN -> [FAIL][51] ([i915#454])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-tglb:         NOTRUN -> [FAIL][52] ([i915#454]) +1 similar issue
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-iclb:         [PASS][53] -> [SKIP][54] ([i915#4281])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb4/igt@i915_pm_dc@dc9-dpms.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([fdo#111644] / [i915#1397] / [i915#2411])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@i915_pm_rpm@system-suspend:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][56] ([i915#62] / [i915#92]) +5 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@i915_pm_rpm@system-suspend.html

  * igt@i915_selftest@live@hangcheck:
    - shard-snb:          [PASS][57] -> [INCOMPLETE][58] ([i915#3921])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb6/igt@i915_selftest@live@hangcheck.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb6/igt@i915_selftest@live@hangcheck.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-kbl:          NOTRUN -> [SKIP][59] ([fdo#109271]) +240 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-addfb-size-overflow:
    - shard-iclb:         NOTRUN -> [SKIP][60] ([i915#5286]) +4 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_big_fb@4-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([i915#5286]) +5 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([fdo#111614]) +3 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-iclb:         NOTRUN -> [SKIP][63] ([fdo#110725] / [fdo#111614]) +3 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-snb:          NOTRUN -> [SKIP][64] ([fdo#109271]) +143 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
    - shard-tglb:         NOTRUN -> [SKIP][65] ([fdo#111615]) +8 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
    - shard-iclb:         NOTRUN -> [SKIP][66] ([fdo#110723]) +1 similar issue
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#3886]) +5 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#3886]) +2 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
    - shard-iclb:         NOTRUN -> [SKIP][69] ([fdo#109278] / [i915#3886]) +4 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#3886]) +4 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][71] ([i915#3689] / [i915#3886]) +4 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][72] ([fdo#111615] / [i915#3689]) +9 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#3689]) +9 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-apl:          NOTRUN -> [SKIP][74] ([fdo#109271]) +186 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@plane-scaling:
    - shard-tglb:         NOTRUN -> [SKIP][75] ([i915#3742])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium@hdmi-audio:
    - shard-iclb:         NOTRUN -> [SKIP][76] ([fdo#109284] / [fdo#111827]) +13 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_chamelium@hdmi-audio.html

  * igt@kms_chamelium@hdmi-crc-nonplanar-formats:
    - shard-glk:          NOTRUN -> [SKIP][77] ([fdo#109271] / [fdo#111827]) +7 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@kms_chamelium@hdmi-crc-nonplanar-formats.html

  * igt@kms_chamelium@hdmi-hpd-for-each-pipe:
    - shard-kbl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [fdo#111827]) +23 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html

  * igt@kms_chamelium@vga-hpd-for-each-pipe:
    - shard-apl:          NOTRUN -> [SKIP][79] ([fdo#109271] / [fdo#111827]) +14 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@kms_chamelium@vga-hpd-for-each-pipe.html

  * igt@kms_color@pipe-d-ctm-blue-to-red:
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#109278] / [i915#1149])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_color@pipe-d-ctm-blue-to-red.html

  * igt@kms_color_chamelium@pipe-a-ctm-0-25:
    - shard-snb:          NOTRUN -> [SKIP][81] ([fdo#109271] / [fdo#111827]) +5 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb4/igt@kms_color_chamelium@pipe-a-ctm-0-25.html

  * igt@kms_color_chamelium@pipe-b-ctm-0-75:
    - shard-tglb:         NOTRUN -> [SKIP][82] ([fdo#109284] / [fdo#111827]) +23 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_color_chamelium@pipe-b-ctm-0-75.html

  * igt@kms_content_protection@atomic:
    - shard-kbl:          NOTRUN -> [TIMEOUT][83] ([i915#1319]) +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][84] ([i915#1063])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@kms_content_protection@atomic-dpms.html
    - shard-iclb:         NOTRUN -> [SKIP][85] ([fdo#109300] / [fdo#111066])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb5/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@srm:
    - shard-apl:          NOTRUN -> [TIMEOUT][86] ([i915#1319])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl2/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][87] ([i915#3359]) +7 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][88] ([i915#3319]) +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-512x512-random:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([fdo#109278] / [fdo#109279]) +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_cursor_crc@pipe-b-cursor-512x512-random.html

  * igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][90] ([fdo#109279] / [i915#3359] / [i915#5691])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html
    - shard-kbl:          NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#5691])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html

  * igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][92] ([fdo#109279] / [i915#3359]) +5 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-iclb:         NOTRUN -> [SKIP][93] ([fdo#109274] / [fdo#109278]) +5 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [PASS][94] -> [FAIL][95] ([i915#2346])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@pipe-d-torture-bo:
    - shard-kbl:          NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#533])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglb:         NOTRUN -> [SKIP][97] ([i915#4103]) +1 similar issue
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@edp-1-pipe-a:
    - shard-iclb:         NOTRUN -> [SKIP][98] ([i915#6029])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@edp-1-pipe-a.html
    - shard-tglb:         NOTRUN -> [SKIP][99] ([i915#6029])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@edp-1-pipe-a.html

  * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
    - shard-tglb:         NOTRUN -> [SKIP][100] ([i915#3528])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-iclb:         NOTRUN -> [SKIP][101] ([i915#3528])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][102] ([i915#5287]) +1 similar issue
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled.html
    - shard-iclb:         NOTRUN -> [SKIP][103] ([i915#5287])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [PASS][104] -> [FAIL][105] ([i915#4767])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl8/igt@kms_fbcon_fbt@fbc-suspend.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-kbl:          NOTRUN -> [FAIL][106] ([i915#4767])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
    - shard-tglb:         NOTRUN -> [SKIP][107] ([fdo#109274] / [fdo#111825]) +14 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-iclb:         NOTRUN -> [SKIP][108] ([fdo#109274]) +5 similar issues
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
    - shard-snb:          [PASS][109] -> [INCOMPLETE][110] ([i915#4839])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
    - shard-apl:          NOTRUN -> [DMESG-WARN][111] ([i915#180]) +1 similar issue
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-tglb:         NOTRUN -> [SKIP][112] ([i915#2587]) +1 similar issue
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
    - shard-iclb:         NOTRUN -> [SKIP][113] ([i915#3701])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
    - shard-kbl:          [PASS][114] -> [DMESG-WARN][115] ([i915#62] / [i915#92]) +7 similar issues
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
    - shard-iclb:         NOTRUN -> [SKIP][116] ([fdo#109280]) +22 similar issues
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-iclb:         NOTRUN -> [SKIP][117] ([i915#5438]) +1 similar issue
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-tglb:         NOTRUN -> [SKIP][118] ([fdo#109280] / [fdo#111825]) +39 similar issues
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][119] ([i915#5439]) +1 similar issue
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_invalid_mode@clock-too-high:
    - shard-tglb:         NOTRUN -> [SKIP][120] ([i915#4278])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_invalid_mode@clock-too-high.html

  * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
    - shard-iclb:         NOTRUN -> [SKIP][121] ([fdo#109289]) +4 similar issues
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html

  * igt@kms_plane@plane-position-hole-dpms@pipe-a-planes:
    - shard-kbl:          [PASS][122] -> [FAIL][123] ([i915#6047])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@kms_plane@plane-position-hole-dpms@pipe-a-planes.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane@plane-position-hole-dpms@pipe-a-planes.html

  * igt@kms_plane@plane-position-hole-dpms@pipe-b-planes:
    - shard-kbl:          [PASS][124] -> [SKIP][125] ([fdo#109271] / [i915#92])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@kms_plane@plane-position-hole-dpms@pipe-b-planes.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane@plane-position-hole-dpms@pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-glk:          NOTRUN -> [FAIL][126] ([fdo#108145] / [i915#265])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
    - shard-apl:          NOTRUN -> [FAIL][127] ([fdo#108145] / [i915#265])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> [FAIL][128] ([fdo#108145] / [i915#265]) +2 similar issues
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max:
    - shard-iclb:         NOTRUN -> [SKIP][129] ([fdo#109278]) +36 similar issues
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb5/igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max.html

  * igt@kms_plane_lowres@pipe-b-tiling-4:
    - shard-tglb:         NOTRUN -> [SKIP][130] ([i915#5288]) +1 similar issue
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-4.html

  * igt@kms_plane_lowres@pipe-c-tiling-yf:
    - shard-iclb:         NOTRUN -> [SKIP][131] ([i915#3536])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_plane_lowres@pipe-c-tiling-yf.html

  * igt@kms_plane_lowres@pipe-d-tiling-y:
    - shard-tglb:         NOTRUN -> [SKIP][132] ([i915#3536]) +1 similar issue
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_plane_lowres@pipe-d-tiling-y.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][133] ([fdo#111615] / [fdo#112054]) +1 similar issue
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_plane_scaling@planes-upscale-20x20@pipe-b-dp-1-planes-upscale:
    - shard-kbl:          [PASS][134] -> [DMESG-WARN][135] ([i915#180] / [i915#62] / [i915#92]) +1 similar issue
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl6/igt@kms_plane_scaling@planes-upscale-20x20@pipe-b-dp-1-planes-upscale.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane_scaling@planes-upscale-20x20@pipe-b-dp-1-planes-upscale.html

  * igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-a-edp-1-upscale-with-rotation:
    - shard-iclb:         NOTRUN -> [SKIP][136] ([i915#5176]) +5 similar issues
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-a-edp-1-upscale-with-rotation.html

  * igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-b-edp-1-upscale-with-rotation:
    - shard-tglb:         NOTRUN -> [SKIP][137] ([i915#5176]) +7 similar issues
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-b-edp-1-upscale-with-rotation.html

  * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
    - shard-iclb:         NOTRUN -> [SKIP][138] ([fdo#111068] / [i915#658])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
    - shard-kbl:          NOTRUN -> [SKIP][139] ([fdo#109271] / [i915#658]) +2 similar issues
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
    - shard-tglb:         NOTRUN -> [SKIP][140] ([i915#2920])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-tglb:         NOTRUN -> [SKIP][141] ([i915#1911])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr@psr2_cursor_mmap_gtt:
    - shard-iclb:         NOTRUN -> [SKIP][142] ([fdo#109441])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_gtt.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-tglb:         NOTRUN -> [FAIL][143] ([i915#132] / [i915#3467]) +2 similar issues
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [PASS][144] -> [SKIP][145] ([fdo#109441]) +2 similar issues
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-tglb:         NOTRUN -> [SKIP][146] ([i915#5519])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-tglb:         [PASS][147] -> [SKIP][148] ([i915#5519])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-tglb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-tglb:         NOTRUN -> [SKIP][149] ([i915#5289])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

  * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a:
    - shard-tglb:         NOTRUN -> [SKIP][150] ([i915#5030]) +3 similar issues
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a.html

  * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-c:
    - shard-iclb:         NOTRUN -> [SKIP][151] ([i915#5030]) +2 similar issues
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-c.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-iclb:         NOTRUN -> [SKIP][152] ([i915#3555]) +2 similar issues
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_sysfs_edid_timing:
    - shard-apl:          NOTRUN -> [FAIL][153] ([IGT#2])
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@kms_sysfs_edid_timing.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-apl:          NOTRUN -> [SKIP][154] ([fdo#109271] / [i915#533])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@kms_vrr@flip-dpms:
    - shard-tglb:         NOTRUN -> [SKIP][155] ([i915#3555]) +2 similar issues
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_vrr@flip-dpms.html

  * igt@nouveau_crc@pipe-a-ctx-flip-detection:
    - shard-iclb:         NOTRUN -> [SKIP][156] ([i915#2530]) +1 similar issue
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@nouveau_crc@pipe-a-ctx-flip-detection.html

  * igt@nouveau_crc@pipe-d-source-rg:
    - shard-iclb:         NOTRUN -> [SKIP][157] ([fdo#109278] / [i915#2530])
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@nouveau_crc@pipe-d-source-rg.html
    - shard-tglb:         NOTRUN -> [SKIP][158] ([i915#2530]) +2 similar issues
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@nouveau_crc@pipe-d-source-rg.html

  * igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
    - shard-iclb:         NOTRUN -> [SKIP][159] ([fdo#109291]) +1 similar issue
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html
    - shard-tglb:         NOTRUN -> [SKIP][160] ([fdo#109291]) +2 similar issues
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html

  * igt@prime_vgem@coherency-gtt:
    - shard-tglb:         NOTRUN -> [SKIP][161] ([fdo#111656])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@prime_vgem@coherency-gtt.html
    - shard-iclb:         NOTRUN -> [SKIP][162] ([fdo#109292])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@prime_vgem@coherency-gtt.html

  * igt@prime_vgem@fence-read-hang:
    - shard-tglb:         NOTRUN -> [SKIP][163] ([fdo#109295]) +1 similar issue
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@prime_vgem@fence-read-hang.html

  * igt@sysfs_clients@fair-0:
    - shard-tglb:         NOTRUN -> [SKIP][164] ([i915#2994]) +1 similar issue
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@sysfs_clients@fair-0.html

  * igt@sysfs_clients@fair-1:
    - shard-apl:          NOTRUN -> [SKIP][165] ([fdo#109271] / [i915#2994]) +3 similar issues
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl2/igt@sysfs_clients@fair-1.html

  * igt@sysfs_clients@sema-25:
    - shard-iclb:         NOTRUN -> [SKIP][166] ([i915#2994]) +1 similar issue
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@sysfs_clients@sema-25.html
    - shard-kbl:          NOTRUN -> [SKIP][167] ([fdo#109271] / [i915#2994]) +1 similar issue
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@sysfs_clients@sema-25.html
    - shard-glk:          NOTRUN -> [SKIP][168] ([fdo#109271] / [i915#2994])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk3/igt@sysfs_clients@sema-25.html

  * igt@tools_test@sysfs_l3_parity:
    - shard-iclb:         NOTRUN -> [SKIP][169] ([fdo#109307])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@tools_test@sysfs_l3_parity.html
    - shard-tglb:         NOTRUN -> [SKIP][170] ([fdo#109307])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@tools_test@sysfs_l3_parity.html

  
#### Possible fixes ####

  * igt@fbdev@info:
    - {shard-rkl}:        [SKIP][171] ([i915#2582]) -> [PASS][172]
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-1/igt@fbdev@info.html
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@fbdev@info.html

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [TIMEOUT][173] ([i915#3070]) -> [PASS][174]
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb8/igt@gem_eio@unwedge-stress.html
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-iclb:         [FAIL][175] ([i915#2842]) -> [PASS][176]
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs0.html
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-kbl:          [FAIL][177] ([i915#2842]) -> [PASS][178] +1 similar issue
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html
    - shard-glk:          [FAIL][179] ([i915#2842]) -> [PASS][180] +3 similar issues
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk6/igt@gem_exec_fair@basic-pace@vecs0.html
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk4/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_exec_flush@basic-wb-rw-before-default:
    - shard-snb:          [SKIP][181] ([fdo#109271]) -> [PASS][182] +1 similar issue
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb6/igt@gem_exec_flush@basic-wb-rw-before-default.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb7/igt@gem_exec_flush@basic-wb-rw-before-default.html

  * igt@i915_pm_dc@dc5-psr:
    - {shard-rkl}:        [SKIP][183] ([i915#658]) -> [PASS][184]
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-2/igt@i915_pm_dc@dc5-psr.html
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@i915_pm_dc@dc5-psr.html

  * igt@i915_pm_rpm@cursor:
    - {shard-rkl}:        [SKIP][185] ([i915#1849]) -> [PASS][186] +1 similar issue
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-4/igt@i915_pm_rpm@cursor.html
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@i915_pm_rpm@cursor.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - {shard-dg1}:        [SKIP][187] ([i915#1397]) -> [PASS][188]
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-dg1-15/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_pm_rpm@modeset-lpsp-stress:
    - {shard-rkl}:        [SKIP][189] ([i915#1397]) -> [PASS][190]
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp-stress.html
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [DMESG-WARN][191] ([i915#180]) -> [PASS][192] +2 similar issues
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_color@pipe-a-ctm-max:
    - {shard-rkl}:        [SKIP][193] ([i915#1149] / [i915#4070] / [i915#4098]) -> [PASS][194]
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-4/igt@kms_color@pipe-a-ctm-max.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_color@pipe-a-ctm-max.html

  * igt@kms_color@pipe-b-ctm-0-25:
    - {shard-rkl}:        [SKIP][195] ([i915#1149] / [i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][196] +2 similar issues
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-1/igt@kms_color@pipe-b-ctm-0-25.html
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_color@pipe-b-ctm-0-25.html

  * igt@kms_cursor_crc@pipe-b-cursor-256x85-random:
    - {shard-rkl}:        [SKIP][197] ([fdo#112022] / [i915#4070]) -> [PASS][198] +7 similar issues
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-4/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_cursor_crc@pipe-b-cursor-256x85-random.html

  * igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge:
    - {shard-rkl}:        [SKIP][199] ([i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][200] +2 similar issues
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-1/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic:
    - {shard-rkl}:        [SKIP][201] ([fdo#111825] / [i915#4070]) -> [PASS][202] +4 similar issues
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-iclb:         [FAIL][203] ([i915#2346]) -> [PASS][204]
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@pipe-c-single-bo:
    - {shard-rkl}:        [SKIP][205] ([i915#4070]) -> [PASS][206]
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-2/igt@kms_cursor_legacy@pipe-c-single-bo.html
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-4/igt@kms_cursor_legacy@pipe-c-single-bo.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-ytiled:
    - {shard-rkl}:        [SKIP][207] ([i915#4098] / [i915#4369]) -> [PASS][208] +1 similar issue
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-4/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-ytiled.html
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-ytiled.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-ytiled:
    - {shard-rkl}:        [SKIP][209] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][210] +5 similar issues
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-1/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-ytiled.html
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-wc-ytiled.html

  * igt@kms_fbcon_fbt@fbc:
    - {shard-rkl}:        [SKIP][211] ([i915#4098]) -> [PASS][212] +2 similar issues
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-4/igt@kms_fbcon_fbt@fbc.html
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_fbcon_fbt@fbc.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
    - shard-iclb:         [SKIP][213] ([i915#3701]) -> [PASS][214]
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-upscaling:
    - {shard-rkl}:        [SKIP][215] ([i915#3701]) -> [PASS][216]
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-upscaling.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc:
    - {shard-rkl}:        [SKIP][217] ([i915#1849] / [i915#4098]) -> [PASS][218] +27 similar issues
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html

  * igt@kms_invalid_mode@zero-vdisplay:
    - {shard-rkl}:        [SKIP][219] ([i915#4278]) -> [PASS][220]
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-1/igt@kms_invalid_mode@zero-vdisplay.html
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_invalid_mode@zero-vdisplay.html

  * igt@kms_lease@lease_unleased_connector:
    - {shard-dg1}:        [SKIP][221] ([i915#2575]) -> [PASS][222]
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-dg1-17/igt@kms_lease@lease_unleased_connector.html
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-dg1-16/igt@kms_lease@lease_unleased_connector.html

  * igt@kms_plane@pixel-format@pipe-a-planes:
    - {shard-rkl}:        [SKIP][223] ([i915#3558]) -> [PASS][224] +1 similar issue
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-1/igt@kms_plane@pixel-format@pipe-a-planes.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_plane@pixel-format@pipe-a-planes.html

  * igt@kms_plane@plane-position-hole@pipe-b-planes:
    - {shard-rkl}:        [SKIP][225] ([i915#1849] / [i915#3558]) -> [PASS][226] +1 similar issue
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-2/igt@kms_plane@plane-position-hole@pipe-b-planes.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_plane@plane-position-hole@pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
    - {shard-rkl}:        [SKIP][227] ([i915#4070] / [i915#4098]) -> [PASS][228] +2 similar issues
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-4/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html

  * igt@kms_plane_cursor@pipe-b-viewport-size-128:
    - shard-glk:          [DMESG-WARN][229] ([i915#118]) -> [PASS][230]
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk1/igt@kms_plane_cursor@pipe-b-viewport-size-128.html
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@kms_plane_cursor@pipe-b-viewport-size-128.html

  * igt@kms_plane_multiple@atomic-pipe-a-tiling-x:
    - {shard-rkl}:        [SKIP][231] ([i915#3558] / [i915#4070]) -> [PASS][232]
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-1/igt@kms_plane_multiple@atomic-pipe-a-tiling-x.html
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_plane_multiple@atomic-pipe-a-tiling-x.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1-planes-upscale-downscale:
    - shard-iclb:         [SKIP][233] ([i915#5235]) -> [PASS][234] +2 similar issues
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1-planes-upscale-downscale.html
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1-planes-upscale-downscale.html

  * igt@kms_psr@sprite_render:
    - {shard-rkl}:        [SKIP][235] ([i915#1072]) -> [PASS][236] +2 similar issues
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-4/igt@kms_psr@sprite_render.html
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_psr@sprite_render.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - {shard-rkl}:        [SKIP][237] ([i915#5461]) -> [PASS][238]
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
    - shard-glk:          [DMESG-FAIL][239] ([i915#118]) -> [PASS][240] +1 similar issue
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html

  * igt@kms_vblank@pipe-b-query-forked-hang:
    - {shard-rkl}:        [SKIP][241] ([i915#1845] / [i915#4098]) -> [PASS][242] +24 similar issues
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-4/igt@kms_vblank@pipe-b-query-forked-hang.html
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked-hang.html

  * igt@perf@polling-parameterized:
    - {shard-rkl}:        [FAIL][243] ([i915#5639]) -> [PASS][244]
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-rkl-6/igt@perf@polling-parameterized.html
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-rkl-4/igt@perf@polling-parameterized.html

  * igt@sysfs_heartbeat_interval@mixed@vcs0:
    - shard-glk:          [WARN][245] ([i915#4055]) -> [PASS][246]
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk2/igt@sysfs_heartbeat_interval@mixed@vcs0.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@sysfs_heartbeat_interval@mixed@vcs0.html

  * igt@sysfs_heartbeat_interval@mixed@vecs0:
    - shard-glk:          [FAIL][247] ([i915#1731]) -> [PASS][248]
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk2/igt@sysfs_heartbeat_interval@mixed@vecs0.html
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@sysfs_heartbeat_interval@mixed@vecs0.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-iclb:         [SKIP][249] ([i915#4525]) -> [DMESG-WARN][250] ([i915#5614])
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-iclb:         [DMESG-WARN][251] ([i915#5614]) -> [SKIP][252] ([i915#4525])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb4/igt@gem_exec_balancer@parallel-keep-in-fence.html
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
    - shard-kbl:          [SKIP][253] ([fdo#109271] / [i915#3886]) -> [SKIP][254] ([fdo#109271] / [i915#3886] / [i915#92])
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_color_chamelium@pipe-d-ctm-green-to-red:
    - shard-kbl:          [SKIP][255] ([fdo#109271] / [fdo#111827]) -> [SKIP][256] ([fdo#109271] / [fdo#111827] / [i915#92]) +2 similar issues
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html

  * igt@kms_plane_scaling@planes-upscale-20x20@pipe-c-dp-1-planes-upscale:
    - shard-kbl:          [SKIP][257] ([fdo#109271]) -> [SKIP][258] ([fdo#109271] / [i915#92]) +9 similar issues
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl6/igt@kms_plane_scaling@planes-upscale-20x20@pipe-c-dp-1-planes-upscale.html
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane_scaling@planes-upscale-20x20@pipe-c-dp-1-planes-upscale.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
    - shard-iclb:         [SKIP][259] ([i915#658]) -> [SKIP][260] ([i915#2920])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb1/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html

  * igt@runner@aborted:
    - shard-apl:          ([FAIL][261], [FAIL][262], [FAIL][263], [FAIL][264], [FAIL][265], [FAIL][266], [FAIL][267], [FAIL][268]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][269], [FAIL][270], [FAIL][271], [FAIL][272], [FAIL][273], [FAIL][274], [FAIL][275], [FAIL][276]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl4/igt@runner@aborted.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl2/igt@runner@aborted.html
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@runner@aborted.html
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@runner@aborted.html
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@runner@aborted.html
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl2/igt@runner@aborted.html
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl6/igt@runner@aborted.html
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl3/igt@runner@aborted.html
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@runner@aborted.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@runner@aborted.html
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl8/igt@runner@aborted.html
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@runner@aborted.html
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
  [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731
  [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#1904]: https://gitlab.freedesktop.org/drm/intel/issues/1904
  [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
  [i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
  [i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3464]: https://gitlab.freedesktop.org/drm/intel/issues/3464
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
  [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
  [i915#4016]: https://gitlab.freedesktop.org/drm/intel/issues/4016
  [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
  [i915#4055]: https://gitlab.freedesktop.org/drm/intel/issues/4055
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#4807]: https://gitlab.freedesktop.org/drm/intel/issues/4807
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839
  [i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853
  [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874
  [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#4886]: https://gitlab.freedesktop.org/drm/intel/issues/4886
  [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
  [i915#4941]: https://gitlab.freedesktop.org/drm/intel/issues/4941
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
  [i915#5076]: https://gitlab.freedesktop.org/drm/intel/issues/5076
  [i915#5098]: https://gitlab.freedesktop.org/drm/intel/issues/5098
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5266]: https://gitlab.freedesktop.org/drm/intel/issues/5266
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5438]: https://gitlab.freedesktop.org/drm/intel/issues/5438
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5501]: https://gitlab.freedesktop.org/drm/intel/issues/5501
  [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614
  [i915#5639]: https://gitlab.freedesktop.org/drm/intel/issues/5639
  [i915#5691]: https://gitlab.freedesktop.org/drm/intel/issues/5691
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903
  [i915#6029]: https://gitlab.freedesktop.org/drm/intel/issues/6029
  [i915#6047]: https://gitlab.freedesktop.org/drm/intel/issues/6047
  [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6478 -> IGTPW_7127
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_11669: 3c90017b789c05dd9548205b2fa3bb05d7890be3 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7127: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/index.html
  IGT_6478: 7c3ceb08b633a66f77f42e596593de394da5dccc @ 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_7127/index.html

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

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

* Re: [igt-dev] Fwd: ✗ Fi.CI.IGT: failure for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6)
  2022-05-19 20:44     ` [igt-dev] Fwd: " Jessica Zhang
@ 2022-05-20  1:48       ` Vudum, Lakshminarayana
  2022-06-05  2:26       ` Dixit, Ashutosh
  1 sibling, 0 replies; 18+ messages in thread
From: Vudum, Lakshminarayana @ 2022-05-20  1:48 UTC (permalink / raw)
  To: Jessica Zhang; +Cc: igt-dev

We don't have a similar issue open, so went ahead and filed a new issue.
https://gitlab.freedesktop.org/drm/intel/-/issues/6047
igt@kms_plane@.* - fail - Failed assertion: ret == 0, error: -22 != 0

Thanks,
Lakshmi.
-----Original Message-----
From: Jessica Zhang <quic_jesszhan@quicinc.com> 
Sent: Thursday, May 19, 2022 1:45 PM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: Re: Fwd: ✗ Fi.CI.IGT: failure for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6)



On 5/19/2022 1:34 PM, Jessica Zhang wrote:
> Hi Lakshmi,
> 
> I looked into this regression, but it doesn't seem to be related to my 
> patch. Can you help take a look at it?

+ cc: igt-dev list

> 
> Thanks,
> Jessica Zhang
> 
> 
> -------- Forwarded Message --------
> Subject: ✗ Fi.CI.IGT: failure for lib/igt_kms: Set pipe->plane_primary 
> to driver-assigned primary plane when there are multiple possible 
> primary planes (rev6)
> Date: Wed, 18 May 2022 08:16:27 +0000
> From: Patchwork <patchwork@emeril.freedesktop.org>
> Reply-To: igt-dev@lists.freedesktop.org
> To: Jessica Zhang <quic_jesszhan@quicinc.com>
> CC: igt-dev@lists.freedesktop.org
> 
> == Series Details ==
> 
> Series: lib/igt_kms: Set pipe->plane_primary to driver-assigned primary 
> plane when there are multiple possible primary planes (rev6)
> URL   : https://patchwork.freedesktop.org/series/103897/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_11669_full -> IGTPW_7127_full
> ====================================================
> 
> Summary
> -------
> 
>    **FAILURE**
> 
>    Serious unknown changes coming with IGTPW_7127_full absolutely need 
> to be
>    verified manually.
>      If you think the reported changes have nothing to do with the changes
>    introduced in IGTPW_7127_full, please notify your bug team 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_7127/index.html
> 
> Participating hosts (13 -> 8)
> ------------------------------
> 
>    Missing    (5): pig-kbl-iris pig-glk-j5005 pig-skl-6260u shard-rkl 
> shard-dg1
> Possible new issues
> -------------------
> 
>    Here are the unknown changes that may have been introduced in 
> IGTPW_7127_full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>    * igt@kms_plane@plane-position-hole-dpms@pipe-a-planes:
>      - shard-kbl:          [PASS][1] -> [FAIL][2]
>     [1]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@kms_plane@plane-position-hole-dpms@pipe-a-planes.html 
> 
>     [2]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane@plane-position-hole-dpms@pipe-a-planes.html 
> 
> 
>    Known issues
> ------------
> 
>    Here are the changes found in IGTPW_7127_full that come from known 
> issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>    * igt@feature_discovery@display-3x:
>      - shard-iclb:         NOTRUN -> [SKIP][3] ([i915#1839])
>     [3]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@feature_discovery@display-3x.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][4] ([i915#1839])
>     [4]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@feature_discovery@display-3x.html 
> 
> 
>    * igt@gem_ccs@block-copy-uncompressed:
>      - shard-iclb:         NOTRUN -> [SKIP][5] ([i915#5327]) +1 similar 
> issue
>     [5]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@gem_ccs@block-copy-uncompressed.html 
> 
> 
>    * igt@gem_ccs@ctrl-surf-copy:
>      - shard-tglb:         NOTRUN -> [SKIP][6] ([i915#3555] / [i915#5325])
>     [6]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gem_ccs@ctrl-surf-copy.html 
> 
> 
>    * igt@gem_ctx_isolation@preservation-s3@bcs0:
>      - shard-apl:          [PASS][7] -> [DMESG-WARN][8] ([i915#180]) +4 
> similar issues
>     [7]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html 
> 
>     [8]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@gem_ctx_isolation@preservation-s3@bcs0.html 
> 
> 
>    * igt@gem_ctx_persistence@file:
>      - shard-snb:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099])
>     [9]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb7/igt@gem_ctx_persistence@file.html 
> 
> 
>    * igt@gem_ctx_sseu@engines:
>      - shard-tglb:         NOTRUN -> [SKIP][10] ([i915#280])
>     [10]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gem_ctx_sseu@engines.html 
> 
> 
>    * igt@gem_eio@in-flight-contexts-1us:
>      - shard-iclb:         [PASS][11] -> [TIMEOUT][12] ([i915#3070])
>     [11]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb4/igt@gem_eio@in-flight-contexts-1us.html 
> 
>     [12]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_eio@in-flight-contexts-1us.html 
> 
>      - shard-tglb:         [PASS][13] -> [TIMEOUT][14] ([i915#3063])
>     [13]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-tglb6/igt@gem_eio@in-flight-contexts-1us.html 
> 
>     [14]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@gem_eio@in-flight-contexts-1us.html 
> 
> 
>    * igt@gem_eio@kms:
>      - shard-tglb:         NOTRUN -> [FAIL][15] ([i915#5784])
>     [15]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@gem_eio@kms.html 
> 
> 
>    * igt@gem_exec_fair@basic-none-rrul@rcs0:
>      - shard-kbl:          [PASS][16] -> [FAIL][17] ([i915#2842])
>     [16]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@gem_exec_fair@basic-none-rrul@rcs0.html 
> 
>     [17]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html 
> 
> 
>    * igt@gem_exec_fair@basic-none-share@rcs0:
>      - shard-glk:          [PASS][18] -> [FAIL][19] ([i915#2842])
>     [18]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk1/igt@gem_exec_fair@basic-none-share@rcs0.html 
> 
>     [19]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@gem_exec_fair@basic-none-share@rcs0.html 
> 
> 
>    * igt@gem_exec_fair@basic-pace-share@rcs0:
>      - shard-tglb:         NOTRUN -> [FAIL][20] ([i915#2842])
>     [20]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html 
> 
> 
>    * igt@gem_exec_fair@basic-pace-solo@rcs0:
>      - shard-iclb:         [PASS][21] -> [FAIL][22] ([i915#2842])
>     [21]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html 
> 
>     [22]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_exec_fair@basic-pace-solo@rcs0.html 
> 
> 
>    * igt@gem_exec_fair@basic-throttle@rcs0:
>      - shard-iclb:         [PASS][23] -> [FAIL][24] ([i915#2849])
>     [23]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html 
> 
>     [24]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html 
> 
> 
>    * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
>      - shard-iclb:         NOTRUN -> [SKIP][25] ([fdo#109313])
>     [25]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][26] ([fdo#109313])
>     [26]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html 
> 
> 
>    * igt@gem_exec_flush@basic-batch-kernel-default-uc:
>      - shard-snb:          [PASS][27] -> [SKIP][28] ([fdo#109271]) +2 
> similar issues
>     [27]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb2/igt@gem_exec_flush@basic-batch-kernel-default-uc.html 
> 
>     [28]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html 
> 
> 
>    * igt@gem_exec_params@no-bsd:
>      - shard-tglb:         NOTRUN -> [SKIP][29] ([fdo#109283])
>     [29]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@gem_exec_params@no-bsd.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][30] ([fdo#109283])
>     [30]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@gem_exec_params@no-bsd.html 
> 
> 
>    * igt@gem_lmem_swapping@parallel-multi:
>      - shard-glk:          NOTRUN -> [SKIP][31] ([fdo#109271] / 
> [i915#4613])
>     [31]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@gem_lmem_swapping@parallel-multi.html 
> 
> 
>    * igt@gem_lmem_swapping@parallel-random-verify-ccs:
>      - shard-kbl:          NOTRUN -> [SKIP][32] ([fdo#109271] / 
> [i915#4613]) +3 similar issues
>     [32]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][33] ([i915#4613]) +3 similar 
> issues
>     [33]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html 
> 
> 
>    * igt@gem_lmem_swapping@random-engines:
>      - shard-apl:          NOTRUN -> [SKIP][34] ([fdo#109271] / 
> [i915#4613]) +1 similar issue
>     [34]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@gem_lmem_swapping@random-engines.html 
> 
> 
>    * igt@gem_lmem_swapping@verify:
>      - shard-iclb:         NOTRUN -> [SKIP][35] ([i915#4613]) +1 similar 
> issue
>     [35]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@gem_lmem_swapping@verify.html 
> 
> 
>    * igt@gem_media_vme:
>      - shard-tglb:         NOTRUN -> [SKIP][36] ([i915#284])
>     [36]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@gem_media_vme.html 
> 
> 
>    * igt@gem_pwrite@basic-exhaustion:
>      - shard-apl:          NOTRUN -> [WARN][37] ([i915#2658])
>     [37]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@gem_pwrite@basic-exhaustion.html 
> 
> 
>    * igt@gem_pxp@protected-raw-src-copy-not-readible:
>      - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#4270]) +2 similar 
> issues
>     [38]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@gem_pxp@protected-raw-src-copy-not-readible.html 
> 
> 
>    * igt@gem_pxp@reject-modify-context-protection-off-1:
>      - shard-iclb:         NOTRUN -> [SKIP][39] ([i915#4270]) +2 similar 
> issues
>     [39]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@gem_pxp@reject-modify-context-protection-off-1.html 
> 
> 
>    * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
>      - shard-iclb:         NOTRUN -> [SKIP][40] ([i915#768]) +2 similar 
> issues
>     [40]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html 
> 
> 
>    * igt@gem_softpin@evict-single-offset:
>      - shard-kbl:          NOTRUN -> [FAIL][41] ([i915#4171])
>     [41]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl6/igt@gem_softpin@evict-single-offset.html 
> 
>      - shard-glk:          NOTRUN -> [FAIL][42] ([i915#4171])
>     [42]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@gem_softpin@evict-single-offset.html 
> 
>      - shard-apl:          NOTRUN -> [FAIL][43] ([i915#4171])
>     [43]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@gem_softpin@evict-single-offset.html 
> 
> 
>    * igt@gem_softpin@evict-snoop:
>      - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#109312])
>     [44]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_softpin@evict-snoop.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109312])
>     [45]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@gem_softpin@evict-snoop.html 
> 
> 
>    * igt@gem_userptr_blits@vma-merge:
>      - shard-apl:          NOTRUN -> [FAIL][46] ([i915#3318])
>     [46]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@gem_userptr_blits@vma-merge.html 
> 
> 
>    * igt@gen7_exec_parse@basic-offset:
>      - shard-tglb:         NOTRUN -> [SKIP][47] ([fdo#109289]) +4 
> similar issues
>     [47]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@gen7_exec_parse@basic-offset.html 
> 
> 
>    * igt@gen9_exec_parse@batch-invalid-length:
>      - shard-iclb:         NOTRUN -> [SKIP][48] ([i915#2856]) +2 similar 
> issues
>     [48]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@gen9_exec_parse@batch-invalid-length.html 
> 
> 
>    * igt@gen9_exec_parse@bb-oversize:
>      - shard-tglb:         NOTRUN -> [SKIP][49] ([i915#2527] / 
> [i915#2856]) +1 similar issue
>     [49]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@gen9_exec_parse@bb-oversize.html 
> 
> 
>    * igt@i915_pm_backlight@bad-brightness:
>      - shard-glk:          NOTRUN -> [SKIP][50] ([fdo#109271]) +80 
> similar issues
>     [50]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@i915_pm_backlight@bad-brightness.html 
> 
> 
>    * igt@i915_pm_backlight@fade_with_dpms:
>      - shard-kbl:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#92])
>     [51]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@i915_pm_backlight@fade_with_dpms.html 
> 
> 
>    * igt@i915_pm_dc@dc3co-vpb-simulation:
>      - shard-tglb:         NOTRUN -> [SKIP][52] ([i915#1904])
>     [52]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@i915_pm_dc@dc3co-vpb-simulation.html 
> 
> 
>    * igt@i915_pm_dc@dc6-dpms:
>      - shard-kbl:          NOTRUN -> [FAIL][53] ([i915#454])
>     [53]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html 
> 
> 
>    * igt@i915_pm_dc@dc6-psr:
>      - shard-tglb:         NOTRUN -> [FAIL][54] ([i915#454]) +1 similar 
> issue
>     [54]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@i915_pm_dc@dc6-psr.html 
> 
> 
>    * igt@i915_pm_dc@dc9-dpms:
>      - shard-iclb:         [PASS][55] -> [SKIP][56] ([i915#4281])
>     [55]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb4/igt@i915_pm_dc@dc9-dpms.html 
> 
>     [56]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html 
> 
> 
>    * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
>      - shard-tglb:         NOTRUN -> [SKIP][57] ([fdo#111644] / 
> [i915#1397] / [i915#2411])
>     [57]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html 
> 
> 
>    * igt@i915_pm_rpm@system-suspend:
>      - shard-kbl:          NOTRUN -> [DMESG-WARN][58] ([i915#62] / 
> [i915#92]) +5 similar issues
>     [58]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@i915_pm_rpm@system-suspend.html 
> 
> 
>    * igt@i915_selftest@live@hangcheck:
>      - shard-snb:          [PASS][59] -> [INCOMPLETE][60] ([i915#3921])
>     [59]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb6/igt@i915_selftest@live@hangcheck.html 
> 
>     [60]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb6/igt@i915_selftest@live@hangcheck.html 
> 
> 
>    * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
>      - shard-kbl:          NOTRUN -> [SKIP][61] ([fdo#109271]) +240 
> similar issues
>     [61]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html 
> 
> 
>    * igt@kms_big_fb@4-tiled-addfb-size-overflow:
>      - shard-iclb:         NOTRUN -> [SKIP][62] ([i915#5286]) +4 similar 
> issues
>     [62]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_big_fb@4-tiled-addfb-size-overflow.html 
> 
> 
>    * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
>      - shard-tglb:         NOTRUN -> [SKIP][63] ([i915#5286]) +5 similar 
> issues
>     [63]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html 
> 
> 
>    * igt@kms_big_fb@linear-16bpp-rotate-270:
>      - shard-tglb:         NOTRUN -> [SKIP][64] ([fdo#111614]) +3 
> similar issues
>     [64]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_big_fb@linear-16bpp-rotate-270.html 
> 
> 
>    * igt@kms_big_fb@linear-64bpp-rotate-90:
>      - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#110725] / 
> [fdo#111614]) +3 similar issues
>     [65]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_big_fb@linear-64bpp-rotate-90.html 
> 
> 
>    * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>      - shard-snb:          NOTRUN -> [SKIP][66] ([fdo#109271]) +143 
> similar issues
>     [66]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html 
> 
> 
>    * igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
>      - shard-tglb:         NOTRUN -> [SKIP][67] ([fdo#111615]) +8 
> similar issues
>     [67]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][68] ([fdo#110723]) +1 
> similar issue
>     [68]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html 
> 
> 
>    * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
>      - shard-kbl:          NOTRUN -> [SKIP][69] ([fdo#109271] / 
> [i915#3886]) +5 similar issues
>     [69]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html 
> 
> 
>    * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
>      - shard-glk:          NOTRUN -> [SKIP][70] ([fdo#109271] / 
> [i915#3886]) +2 similar issues
>     [70]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][71] ([fdo#109278] / 
> [i915#3886]) +4 similar issues
>     [71]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html 
> 
> 
>    * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
>      - shard-apl:          NOTRUN -> [SKIP][72] ([fdo#109271] / 
> [i915#3886]) +4 similar issues
>     [72]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][73] ([i915#3689] / 
> [i915#3886]) +4 similar issues
>     [73]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html 
> 
> 
>    * igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs:
>      - shard-tglb:         NOTRUN -> [SKIP][74] ([fdo#111615] / 
> [i915#3689]) +9 similar issues
>     [74]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs.html 
> 
> 
>    * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
>      - shard-tglb:         NOTRUN -> [SKIP][75] ([i915#3689]) +9 similar 
> issues
>     [75]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html 
> 
> 
>    * igt@kms_cdclk@mode-transition:
>      - shard-apl:          NOTRUN -> [SKIP][76] ([fdo#109271]) +186 
> similar issues
>     [76]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@kms_cdclk@mode-transition.html 
> 
> 
>    * igt@kms_cdclk@plane-scaling:
>      - shard-tglb:         NOTRUN -> [SKIP][77] ([i915#3742])
>     [77]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_cdclk@plane-scaling.html 
> 
> 
>    * igt@kms_chamelium@hdmi-audio:
>      - shard-iclb:         NOTRUN -> [SKIP][78] ([fdo#109284] / 
> [fdo#111827]) +13 similar issues
>     [78]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_chamelium@hdmi-audio.html 
> 
> 
>    * igt@kms_chamelium@hdmi-crc-nonplanar-formats:
>      - shard-glk:          NOTRUN -> [SKIP][79] ([fdo#109271] / 
> [fdo#111827]) +7 similar issues
>     [79]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@kms_chamelium@hdmi-crc-nonplanar-formats.html 
> 
> 
>    * igt@kms_chamelium@hdmi-hpd-for-each-pipe:
>      - shard-kbl:          NOTRUN -> [SKIP][80] ([fdo#109271] / 
> [fdo#111827]) +23 similar issues
>     [80]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html 
> 
> 
>    * igt@kms_chamelium@vga-hpd-for-each-pipe:
>      - shard-apl:          NOTRUN -> [SKIP][81] ([fdo#109271] / 
> [fdo#111827]) +14 similar issues
>     [81]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@kms_chamelium@vga-hpd-for-each-pipe.html 
> 
> 
>    * igt@kms_color@pipe-d-ctm-blue-to-red:
>      - shard-iclb:         NOTRUN -> [SKIP][82] ([fdo#109278] / 
> [i915#1149])
>     [82]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_color@pipe-d-ctm-blue-to-red.html 
> 
> 
>    * igt@kms_color_chamelium@pipe-a-ctm-0-25:
>      - shard-snb:          NOTRUN -> [SKIP][83] ([fdo#109271] / 
> [fdo#111827]) +5 similar issues
>     [83]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb4/igt@kms_color_chamelium@pipe-a-ctm-0-25.html 
> 
> 
>    * igt@kms_color_chamelium@pipe-b-ctm-0-75:
>      - shard-tglb:         NOTRUN -> [SKIP][84] ([fdo#109284] / 
> [fdo#111827]) +23 similar issues
>     [84]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_color_chamelium@pipe-b-ctm-0-75.html 
> 
> 
>    * igt@kms_content_protection@atomic:
>      - shard-kbl:          NOTRUN -> [TIMEOUT][85] ([i915#1319]) +1 
> similar issue
>     [85]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_content_protection@atomic.html 
> 
> 
>    * igt@kms_content_protection@atomic-dpms:
>      - shard-tglb:         NOTRUN -> [SKIP][86] ([i915#1063])
>     [86]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@kms_content_protection@atomic-dpms.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][87] ([fdo#109300] / 
> [fdo#111066])
>     [87]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb5/igt@kms_content_protection@atomic-dpms.html 
> 
> 
>    * igt@kms_content_protection@srm:
>      - shard-apl:          NOTRUN -> [TIMEOUT][88] ([i915#1319])
>     [88]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl2/igt@kms_content_protection@srm.html 
> 
> 
>    * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen:
>      - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#3359]) +7 similar 
> issues
>     [89]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html 
> 
> 
>    * igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen:
>      - shard-tglb:         NOTRUN -> [SKIP][90] ([i915#3319]) +1 similar 
> issue
>     [90]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_cursor_crc@pipe-a-cursor-32x32-offscreen.html 
> 
> 
>    * igt@kms_cursor_crc@pipe-b-cursor-512x512-random:
>      - shard-iclb:         NOTRUN -> [SKIP][91] ([fdo#109278] / 
> [fdo#109279]) +1 similar issue
>     [91]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_cursor_crc@pipe-b-cursor-512x512-random.html 
> 
> 
>    * igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding:
>      - shard-tglb:         NOTRUN -> [SKIP][92] ([fdo#109279] / 
> [i915#3359] / [i915#5691])
>     [92]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html 
> 
>      - shard-kbl:          NOTRUN -> [SKIP][93] ([fdo#109271] / 
> [i915#5691])
>     [93]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-512x170-sliding.html 
> 
> 
>    * igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen:
>      - shard-tglb:         NOTRUN -> [SKIP][94] ([fdo#109279] / 
> [i915#3359]) +5 similar issues
>     [94]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen.html 
> 
> 
>    * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
>      - shard-iclb:         NOTRUN -> [SKIP][95] ([fdo#109274] / 
> [fdo#109278]) +5 similar issues
>     [95]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html 
> 
> 
>    * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>      - shard-glk:          [PASS][96] -> [FAIL][97] ([i915#2346])
>     [96]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html 
> 
>     [97]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html 
> 
> 
>    * igt@kms_cursor_legacy@pipe-d-torture-bo:
>      - shard-kbl:          NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#533])
>     [98]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html 
> 
> 
>    * 
> igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>      - shard-tglb:         NOTRUN -> [SKIP][99] ([i915#4103]) +1 similar 
> issue
>     [99]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html 
> 
> 
>    * igt@kms_dither@fb-8bpc-vs-panel-6bpc@edp-1-pipe-a:
>      - shard-iclb:         NOTRUN -> [SKIP][100] ([i915#6029])
>     [100]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@edp-1-pipe-a.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][101] ([i915#6029])
>     [101]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@edp-1-pipe-a.html 
> 
> 
>    * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
>      - shard-tglb:         NOTRUN -> [SKIP][102] ([i915#3528])
>     [102]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][103] ([i915#3528])
>     [103]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html 
> 
> 
>    * igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled:
>      - shard-tglb:         NOTRUN -> [SKIP][104] ([i915#5287]) +1 
> similar issue
>     [104]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][105] ([i915#5287])
>     [105]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_draw_crc@draw-method-xrgb8888-render-4tiled.html 
> 
> 
>    * igt@kms_fbcon_fbt@fbc-suspend:
>      - shard-apl:          [PASS][106] -> [FAIL][107] ([i915#4767])
>     [106]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl8/igt@kms_fbcon_fbt@fbc-suspend.html 
> 
>     [107]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html 
> 
>      - shard-kbl:          NOTRUN -> [FAIL][108] ([i915#4767])
>     [108]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl6/igt@kms_fbcon_fbt@fbc-suspend.html 
> 
> 
>    * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
>      - shard-tglb:         NOTRUN -> [SKIP][109] ([fdo#109274] / 
> [fdo#111825]) +14 similar issues
>     [109]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html 
> 
> 
>    * igt@kms_flip@2x-nonexisting-fb:
>      - shard-iclb:         NOTRUN -> [SKIP][110] ([fdo#109274]) +5 
> similar issues
>     [110]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_flip@2x-nonexisting-fb.html 
> 
> 
>    * igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
>      - shard-snb:          [PASS][111] -> [INCOMPLETE][112] ([i915#4839])
>     [111]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html 
> 
>     [112]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html 
> 
> 
>    * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
>      - shard-apl:          NOTRUN -> [DMESG-WARN][113] ([i915#180]) +1 
> similar issue
>     [113]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html 
> 
> 
>    * 
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
>      - shard-tglb:         NOTRUN -> [SKIP][114] ([i915#2587]) +1 
> similar issue
>     [114]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][115] ([i915#3701])
>     [115]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html 
> 
> 
>    * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
>      - shard-kbl:          [PASS][116] -> [DMESG-WARN][117] ([i915#62] / 
> [i915#92]) +7 similar issues
>     [116]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html 
> 
>     [117]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html 
> 
> 
>    * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
>      - shard-iclb:         NOTRUN -> [SKIP][118] ([fdo#109280]) +22 
> similar issues
>     [118]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html 
> 
> 
>    * igt@kms_frontbuffer_tracking@fbc-tiling-4:
>      - shard-iclb:         NOTRUN -> [SKIP][119] ([i915#5438]) +1 
> similar issue
>     [119]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html 
> 
> 
>    * 
> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
>      - shard-tglb:         NOTRUN -> [SKIP][120] ([fdo#109280] / 
> [fdo#111825]) +39 similar issues
>     [120]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html 
> 
> 
>    * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
>      - shard-tglb:         NOTRUN -> [SKIP][121] ([i915#5439]) +1 
> similar issue
>     [121]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html 
> 
> 
>    * igt@kms_invalid_mode@clock-too-high:
>      - shard-tglb:         NOTRUN -> [SKIP][122] ([i915#4278])
>     [122]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_invalid_mode@clock-too-high.html 
> 
> 
>    * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
>      - shard-iclb:         NOTRUN -> [SKIP][123] ([fdo#109289]) +4 
> similar issues
>     [123]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html 
> 
> 
>    * igt@kms_plane@plane-position-hole-dpms@pipe-b-planes:
>      - shard-kbl:          [PASS][124] -> [SKIP][125] ([fdo#109271] / 
> [i915#92])
>     [124]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@kms_plane@plane-position-hole-dpms@pipe-b-planes.html 
> 
>     [125]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane@plane-position-hole-dpms@pipe-b-planes.html 
> 
> 
>    * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
>      - shard-glk:          NOTRUN -> [FAIL][126] ([fdo#108145] / 
> [i915#265])
>     [126]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk7/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html 
> 
>      - shard-apl:          NOTRUN -> [FAIL][127] ([fdo#108145] / 
> [i915#265])
>     [127]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html 
> 
> 
>    * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
>      - shard-kbl:          NOTRUN -> [FAIL][128] ([fdo#108145] / 
> [i915#265]) +2 similar issues
>     [128]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html 
> 
> 
>    * igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max:
>      - shard-iclb:         NOTRUN -> [SKIP][129] ([fdo#109278]) +36 
> similar issues
>     [129]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb5/igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max.html 
> 
> 
>    * igt@kms_plane_lowres@pipe-b-tiling-4:
>      - shard-tglb:         NOTRUN -> [SKIP][130] ([i915#5288]) +1 
> similar issue
>     [130]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-4.html 
> 
> 
>    * igt@kms_plane_lowres@pipe-c-tiling-yf:
>      - shard-iclb:         NOTRUN -> [SKIP][131] ([i915#3536])
>     [131]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_plane_lowres@pipe-c-tiling-yf.html 
> 
> 
>    * igt@kms_plane_lowres@pipe-d-tiling-y:
>      - shard-tglb:         NOTRUN -> [SKIP][132] ([i915#3536]) +1 
> similar issue
>     [132]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_plane_lowres@pipe-d-tiling-y.html 
> 
> 
>    * igt@kms_plane_lowres@pipe-d-tiling-yf:
>      - shard-tglb:         NOTRUN -> [SKIP][133] ([fdo#111615] / 
> [fdo#112054]) +1 similar issue
>     [133]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@kms_plane_lowres@pipe-d-tiling-yf.html 
> 
> 
>    * igt@kms_plane_scaling@planes-upscale-20x20@pipe-b-dp-1-planes-upscale:
>      - shard-kbl:          [PASS][134] -> [DMESG-WARN][135] ([i915#180] 
> / [i915#62] / [i915#92]) +1 similar issue
>     [134]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl6/igt@kms_plane_scaling@planes-upscale-20x20@pipe-b-dp-1-planes-upscale.html 
> 
>     [135]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane_scaling@planes-upscale-20x20@pipe-b-dp-1-planes-upscale.html 
> 
> 
>    * 
> igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-a-edp-1-upscale-with-rotation: 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][136] ([i915#5176]) +5 
> similar issues
>     [136]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-a-edp-1-upscale-with-rotation.html 
> 
> 
>    * 
> igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-b-edp-1-upscale-with-rotation: 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][137] ([i915#5176]) +7 
> similar issues
>     [137]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@kms_plane_scaling@upscale-with-rotation-20x20@pipe-b-edp-1-upscale-with-rotation.html 
> 
> 
>    * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
>      - shard-iclb:         NOTRUN -> [SKIP][138] ([fdo#111068] / 
> [i915#658])
>     [138]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html 
> 
>      - shard-kbl:          NOTRUN -> [SKIP][139] ([fdo#109271] / 
> [i915#658]) +2 similar issues
>     [139]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][140] ([i915#2920])
>     [140]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html 
> 
> 
>    * igt@kms_psr2_su@page_flip-nv12:
>      - shard-tglb:         NOTRUN -> [SKIP][141] ([i915#1911])
>     [141]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@kms_psr2_su@page_flip-nv12.html 
> 
> 
>    * igt@kms_psr@psr2_cursor_mmap_gtt:
>      - shard-iclb:         NOTRUN -> [SKIP][142] ([fdo#109441])
>     [142]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@kms_psr@psr2_cursor_mmap_gtt.html 
> 
> 
>    * igt@kms_psr@psr2_sprite_blt:
>      - shard-tglb:         NOTRUN -> [FAIL][143] ([i915#132] / 
> [i915#3467]) +2 similar issues
>     [143]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_psr@psr2_sprite_blt.html 
> 
> 
>    * igt@kms_psr@psr2_sprite_plane_move:
>      - shard-iclb:         [PASS][144] -> [SKIP][145] ([fdo#109441]) +2 
> similar issues
>     [144]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html 
> 
>     [145]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html 
> 
> 
>    * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>      - shard-tglb:         NOTRUN -> [SKIP][146] ([i915#5519])
>     [146]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html 
> 
> 
>    * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
>      - shard-tglb:         [PASS][147] -> [SKIP][148] ([i915#5519])
>     [147]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-tglb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html 
> 
>     [148]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html 
> 
> 
>    * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
>      - shard-tglb:         NOTRUN -> [SKIP][149] ([i915#5289])
>     [149]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html 
> 
> 
>    * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a:
>      - shard-tglb:         NOTRUN -> [SKIP][150] ([i915#5030]) +3 
> similar issues
>     [150]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a.html 
> 
> 
>    * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-c:
>      - shard-iclb:         NOTRUN -> [SKIP][151] ([i915#5030]) +2 
> similar issues
>     [151]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-c.html 
> 
> 
>    * igt@kms_setmode@invalid-clone-single-crtc-stealing:
>      - shard-iclb:         NOTRUN -> [SKIP][152] ([i915#3555]) +2 
> similar issues
>     [152]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html 
> 
> 
>    * igt@kms_sysfs_edid_timing:
>      - shard-apl:          NOTRUN -> [FAIL][153] ([IGT#2])
>     [153]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl1/igt@kms_sysfs_edid_timing.html 
> 
> 
>    * igt@kms_vblank@pipe-d-wait-idle:
>      - shard-apl:          NOTRUN -> [SKIP][154] ([fdo#109271] / 
> [i915#533])
>     [154]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@kms_vblank@pipe-d-wait-idle.html 
> 
> 
>    * igt@kms_vrr@flip-dpms:
>      - shard-tglb:         NOTRUN -> [SKIP][155] ([i915#3555]) +2 
> similar issues
>     [155]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb5/igt@kms_vrr@flip-dpms.html 
> 
> 
>    * igt@nouveau_crc@pipe-a-ctx-flip-detection:
>      - shard-iclb:         NOTRUN -> [SKIP][156] ([i915#2530]) +1 
> similar issue
>     [156]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@nouveau_crc@pipe-a-ctx-flip-detection.html 
> 
> 
>    * igt@nouveau_crc@pipe-d-source-rg:
>      - shard-iclb:         NOTRUN -> [SKIP][157] ([fdo#109278] / 
> [i915#2530])
>     [157]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@nouveau_crc@pipe-d-source-rg.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][158] ([i915#2530]) +2 
> similar issues
>     [158]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@nouveau_crc@pipe-d-source-rg.html 
> 
> 
>    * igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
>      - shard-iclb:         NOTRUN -> [SKIP][159] ([fdo#109291]) +1 
> similar issue
>     [159]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][160] ([fdo#109291]) +2 
> similar issues
>     [160]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb2/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html 
> 
> 
>    * igt@prime_vgem@coherency-gtt:
>      - shard-tglb:         NOTRUN -> [SKIP][161] ([fdo#111656])
>     [161]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb6/igt@prime_vgem@coherency-gtt.html 
> 
>      - shard-iclb:         NOTRUN -> [SKIP][162] ([fdo#109292])
>     [162]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@prime_vgem@coherency-gtt.html 
> 
> 
>    * igt@prime_vgem@fence-read-hang:
>      - shard-tglb:         NOTRUN -> [SKIP][163] ([fdo#109295]) +1 
> similar issue
>     [163]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb7/igt@prime_vgem@fence-read-hang.html 
> 
> 
>    * igt@sysfs_clients@fair-0:
>      - shard-tglb:         NOTRUN -> [SKIP][164] ([i915#2994]) +1 
> similar issue
>     [164]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb8/igt@sysfs_clients@fair-0.html 
> 
> 
>    * igt@sysfs_clients@fair-1:
>      - shard-apl:          NOTRUN -> [SKIP][165] ([fdo#109271] / 
> [i915#2994]) +3 similar issues
>     [165]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl2/igt@sysfs_clients@fair-1.html 
> 
> 
>    * igt@sysfs_clients@sema-25:
>      - shard-iclb:         NOTRUN -> [SKIP][166] ([i915#2994]) +1 
> similar issue
>     [166]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@sysfs_clients@sema-25.html 
> 
>      - shard-kbl:          NOTRUN -> [SKIP][167] ([fdo#109271] / 
> [i915#2994]) +1 similar issue
>     [167]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@sysfs_clients@sema-25.html 
> 
>      - shard-glk:          NOTRUN -> [SKIP][168] ([fdo#109271] / 
> [i915#2994])
>     [168]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk3/igt@sysfs_clients@sema-25.html 
> 
> 
>    * igt@tools_test@sysfs_l3_parity:
>      - shard-iclb:         NOTRUN -> [SKIP][169] ([fdo#109307])
>     [169]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@tools_test@sysfs_l3_parity.html 
> 
>      - shard-tglb:         NOTRUN -> [SKIP][170] ([fdo#109307])
>     [170]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-tglb1/igt@tools_test@sysfs_l3_parity.html 
> 
> 
>    #### Possible fixes ####
> 
>    * igt@gem_eio@unwedge-stress:
>      - shard-iclb:         [TIMEOUT][171] ([i915#3070]) -> [PASS][172]
>     [171]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb8/igt@gem_eio@unwedge-stress.html 
> 
>     [172]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_eio@unwedge-stress.html 
> 
> 
>    * igt@gem_exec_fair@basic-pace@vcs0:
>      - shard-iclb:         [FAIL][173] ([i915#2842]) -> [PASS][174]
>     [173]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs0.html 
> 
>     [174]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb7/igt@gem_exec_fair@basic-pace@vcs0.html 
> 
> 
>    * igt@gem_exec_fair@basic-pace@vecs0:
>      - shard-kbl:          [FAIL][175] ([i915#2842]) -> [PASS][176] +1 
> similar issue
>     [175]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html 
> 
>     [176]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html 
> 
>      - shard-glk:          [FAIL][177] ([i915#2842]) -> [PASS][178] +3 
> similar issues
>     [177]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk6/igt@gem_exec_fair@basic-pace@vecs0.html 
> 
>     [178]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk4/igt@gem_exec_fair@basic-pace@vecs0.html 
> 
> 
>    * igt@gem_exec_flush@basic-wb-rw-before-default:
>      - shard-snb:          [SKIP][179] ([fdo#109271]) -> [PASS][180] +1 
> similar issue
>     [179]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-snb6/igt@gem_exec_flush@basic-wb-rw-before-default.html 
> 
>     [180]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-snb7/igt@gem_exec_flush@basic-wb-rw-before-default.html 
> 
> 
>    * igt@i915_suspend@fence-restore-tiled2untiled:
>      - shard-apl:          [DMESG-WARN][181] ([i915#180]) -> [PASS][182] 
> +2 similar issues
>     [181]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@i915_suspend@fence-restore-tiled2untiled.html 
> 
>     [182]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html 
> 
> 
>    * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>      - shard-iclb:         [FAIL][183] ([i915#2346]) -> [PASS][184]
>     [183]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html 
> 
>     [184]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html 
> 
> 
>    * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
>      - shard-iclb:         [SKIP][185] ([i915#3701]) -> [PASS][186]
>     [185]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html 
> 
>     [186]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html 
> 
> 
>    * igt@kms_plane_cursor@pipe-b-viewport-size-128:
>      - shard-glk:          [DMESG-WARN][187] ([i915#118]) -> [PASS][188]
>     [187]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk1/igt@kms_plane_cursor@pipe-b-viewport-size-128.html 
> 
>     [188]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@kms_plane_cursor@pipe-b-viewport-size-128.html 
> 
> 
>    * 
> igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1-planes-upscale-downscale: 
> 
>      - shard-iclb:         [SKIP][189] ([i915#5235]) -> [PASS][190] +2 
> similar issues
>     [189]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1-planes-upscale-downscale.html 
> 
>     [190]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-edp-1-planes-upscale-downscale.html 
> 
> 
>    * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
>      - shard-glk:          [DMESG-FAIL][191] ([i915#118]) -> [PASS][192] 
> +1 similar issue
>     [191]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html 
> 
>     [192]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html 
> 
> 
>    * igt@sysfs_heartbeat_interval@mixed@vcs0:
>      - shard-glk:          [WARN][193] ([i915#4055]) -> [PASS][194]
>     [193]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk2/igt@sysfs_heartbeat_interval@mixed@vcs0.html 
> 
>     [194]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@sysfs_heartbeat_interval@mixed@vcs0.html 
> 
> 
>    * igt@sysfs_heartbeat_interval@mixed@vecs0:
>      - shard-glk:          [FAIL][195] ([i915#1731]) -> [PASS][196]
>     [195]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-glk2/igt@sysfs_heartbeat_interval@mixed@vecs0.html 
> 
>     [196]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-glk8/igt@sysfs_heartbeat_interval@mixed@vecs0.html 
> 
> 
>    #### Warnings ####
> 
>    * igt@gem_exec_balancer@parallel-bb-first:
>      - shard-iclb:         [SKIP][197] ([i915#4525]) -> 
> [DMESG-WARN][198] ([i915#5614])
>     [197]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb3/igt@gem_exec_balancer@parallel-bb-first.html 
> 
>     [198]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb4/igt@gem_exec_balancer@parallel-bb-first.html 
> 
> 
>    * igt@gem_exec_balancer@parallel-keep-in-fence:
>      - shard-iclb:         [DMESG-WARN][199] ([i915#5614]) -> 
> [SKIP][200] ([i915#4525])
>     [199]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb4/igt@gem_exec_balancer@parallel-keep-in-fence.html 
> 
>     [200]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html 
> 
> 
>    * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
>      - shard-kbl:          [SKIP][201] ([fdo#109271] / [i915#3886]) -> 
> [SKIP][202] ([fdo#109271] / [i915#3886] / [i915#92])
>     [201]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html 
> 
>     [202]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html 
> 
> 
>    * igt@kms_color_chamelium@pipe-d-ctm-green-to-red:
>      - shard-kbl:          [SKIP][203] ([fdo#109271] / [fdo#111827]) -> 
> [SKIP][204] ([fdo#109271] / [fdo#111827] / [i915#92]) +2 similar issues
>     [203]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl4/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html 
> 
>     [204]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html 
> 
> 
>    * igt@kms_plane_scaling@planes-upscale-20x20@pipe-c-dp-1-planes-upscale:
>      - shard-kbl:          [SKIP][205] ([fdo#109271]) -> [SKIP][206] 
> ([fdo#109271] / [i915#92]) +9 similar issues
>     [205]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-kbl6/igt@kms_plane_scaling@planes-upscale-20x20@pipe-c-dp-1-planes-upscale.html 
> 
>     [206]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-kbl3/igt@kms_plane_scaling@planes-upscale-20x20@pipe-c-dp-1-planes-upscale.html 
> 
> 
>    * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
>      - shard-iclb:         [SKIP][207] ([i915#658]) -> [SKIP][208] 
> ([i915#2920])
>     [207]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-iclb1/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html 
> 
>     [208]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html 
> 
> 
>    * igt@runner@aborted:
>      - shard-apl:          ([FAIL][209], [FAIL][210], [FAIL][211], 
> [FAIL][212], [FAIL][213], [FAIL][214], [FAIL][215], [FAIL][216]) 
> ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][217], 
> [FAIL][218], [FAIL][219], [FAIL][220], [FAIL][221], [FAIL][222], 
> [FAIL][223], [FAIL][224]) ([fdo#109271] / [i915#180] / [i915#3002] / 
> [i915#4312] / [i915#5257])
>     [209]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl4/igt@runner@aborted.html 
> 
>     [210]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl2/igt@runner@aborted.html 
> 
>     [211]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@runner@aborted.html 
> 
>     [212]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@runner@aborted.html 
> 
>     [213]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl7/igt@runner@aborted.html 
> 
>     [214]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl2/igt@runner@aborted.html 
> 
>     [215]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl6/igt@runner@aborted.html 
> 
>     [216]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11669/shard-apl3/igt@runner@aborted.html 
> 
>     [217]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl7/igt@runner@aborted.html 
> 
>     [218]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html 
> 
>     [219]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html 
> 
>     [220]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@runner@aborted.html 
> 
>     [221]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl8/igt@runner@aborted.html 
> 
>     [222]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl4/igt@runner@aborted.html 
> 
>     [223]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html 
> 
>     [224]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/shard-apl3/igt@runner@aborted.html 
> 
> 
>      {name}: This element is suppressed. This means it is ignored when 
> computing
>            the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>    [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
>    [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
>    [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>    [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
>    [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
>    [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
>    [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
>    [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
>    [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
>    [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
>    [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
>    [fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292
>    [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
>    [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
>    [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
>    [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
>    [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
>    [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
>    [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
>    [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
>    [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
>    [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
>    [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
>    [fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
>    [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
>    [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
>    [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
>    [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
>    [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
>    [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
>    [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
>    [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
>    [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
>    [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
>    [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
>    [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
>    [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
>    [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
>    [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
>    [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
>    [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731
>    [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
>    [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
>    [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
>    [i915#1904]: https://gitlab.freedesktop.org/drm/intel/issues/1904
>    [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
>    [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
>    [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
>    [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
>    [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
>    [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
>    [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
>    [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
>    [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
>    [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
>    [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
>    [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
>    [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
>    [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
>    [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
>    [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
>    [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
>    [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
>    [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
>    [i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
>    [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
>    [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
>    [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
>    [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
>    [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
>    [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
>    [i915#3464]: https://gitlab.freedesktop.org/drm/intel/issues/3464
>    [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
>    [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
>    [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
>    [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
>    [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
>    [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
>    [i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
>    [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
>    [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
>    [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
>    [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
>    [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921
>    [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
>    [i915#4055]: https://gitlab.freedesktop.org/drm/intel/issues/4055
>    [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
>    [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171
>    [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
>    [i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
>    [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
>    [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
>    [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
>    [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
>    [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>    [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
>    [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839
>    [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
>    [i915#4941]: https://gitlab.freedesktop.org/drm/intel/issues/4941
>    [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
>    [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
>    [i915#5076]: https://gitlab.freedesktop.org/drm/intel/issues/5076
>    [i915#5098]: https://gitlab.freedesktop.org/drm/intel/issues/5098
>    [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
>    [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
>    [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
>    [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
>    [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
>    [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
>    [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
>    [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
>    [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
>    [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
>    [i915#5438]: https://gitlab.freedesktop.org/drm/intel/issues/5438
>    [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
>    [i915#5501]: https://gitlab.freedesktop.org/drm/intel/issues/5501
>    [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
>    [i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614
>    [i915#5691]: https://gitlab.freedesktop.org/drm/intel/issues/5691
>    [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
>    [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903
>    [i915#6029]: https://gitlab.freedesktop.org/drm/intel/issues/6029
>    [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
>    [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
>    [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
>    [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
> 
> 
> Build changes
> -------------
> 
>    * CI: CI-20190529 -> None
>    * IGT: IGT_6478 -> IGTPW_7127
>    * Piglit: piglit_4509 -> None
> 
>    CI-20190529: 20190529
>    CI_DRM_11669: 3c90017b789c05dd9548205b2fa3bb05d7890be3 @ 
> git://anongit.freedesktop.org/gfx-ci/linux
>    IGTPW_7127: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7127/index.html
>    IGT_6478: 7c3ceb08b633a66f77f42e596593de394da5dccc @ 
> 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_7127/index.html
> 

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

* Re: [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes
  2022-05-17  1:37 [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes Jessica Zhang
                   ` (5 preceding siblings ...)
  2022-05-20  1:21 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
@ 2022-05-23 12:36 ` Petri Latvala
  2022-05-27 14:08   ` Mark Yacoub
  2022-06-03 16:30   ` Saarinen, Jani
  6 siblings, 2 replies; 18+ messages in thread
From: Petri Latvala @ 2022-05-23 12:36 UTC (permalink / raw)
  To: Jessica Zhang; +Cc: igt-dev, quic_aravindh, robdclark

On Mon, May 16, 2022 at 06:37:12PM -0700, Jessica Zhang wrote:
> Currently, IGT populates pipe->planes using possible_crtcs and assumes
> that the first primary plane it encounters is the one being actively
> used by the pipe.
> 
> This is not always true in cases where there are multiple possible
> primary planes. This will cause problems whenever IGT calls
> drmModePageFlip since drmModePageFlip will use the primary plane
> assigned to the pipe by the driver to perform the page flip [1]. So a
> mismatch between the primary plane used by IGT and the driver can cause
> the page flip to fail.
> 
> To fix this, let's implement a helper method to get the primary plane
> that's being assigned to the pipe by the driver. We can then call it
> during igt_display_require() and, if there's a mismatch between
> pipe->plane_primary and the assigned primary plane's index, we can swap
> the unused primary plane with the driver-assigned primary plane
> 
> [1]
> https://gitlab.freedesktop.org/drm/msm/-/blob/msm-next/drivers/gpu/drm/drm_plane.c#L1234
> 
> Changes since v1:
> - Instead of swapping the pointers of the planes within the array, we
>   can just change the value of pipe->plane_primary.
> 
> Changes since v2:
> - Reverted `if (type == DRM_PLANE_TYPE_PRIMARY)` conditional then added
>   a nested if statement to increment num_primary_planes if plane type is
>   primary.
> 
> Changes since v3:
> - Created helper method igt_pipe_has_valid_output and added a check for
>   if pipe has valid output before getting the output of a pipe to get
>   the assigned primary plane
> - Reverted back to using igt_swap to swap the order of the primary
>   planes within the pipe->planes array. Some kms_* tests use
>   igt_output_get_plane(output, 0) to get the primary plane, so this will
>   avoid regressions in those tests.
> - Updated the plane->index of the primary planes that are being swapped.
> 
> Suggested-by: Rob Clark <robdclark@chromium.org>
> Signed-off-by: Jessica Zhang <quic_jesszhan@quicinc.com>
> ---
>  lib/igt_kms.c | 110 ++++++++++++++++++++++++++++++++++++++++++++++----
>  lib/igt_kms.h |   1 +
>  2 files changed, 103 insertions(+), 8 deletions(-)
> 
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index 7838ff283b62..a97e0b72d6cf 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -751,6 +751,52 @@ igt_fill_pipe_props(igt_display_t *display, igt_pipe_t *pipe,
>  	drmModeFreeObjectProperties(props);
>  }
>  
> +static igt_plane_t *igt_get_assigned_primary(igt_output_t *output, igt_pipe_t *pipe)
> +{
> +	int drm_fd = output->display->drm_fd;
> +	drmModeModeInfo *mode;
> +	struct igt_fb fb;
> +	igt_plane_t *plane = NULL;
> +	uint32_t crtc_id;
> +	int i;
> +
> +	mode = igt_output_get_mode(output);
> +
> +	igt_create_color_fb(drm_fd, mode->hdisplay, mode->vdisplay,
> +						DRM_FORMAT_XRGB8888,
> +						DRM_FORMAT_MOD_LINEAR,
> +						1.0, 1.0, 1.0, &fb);
> +
> +	crtc_id = pipe->crtc_id;
> +
> +	/*
> +	 * Do a legacy SETCRTC to start things off, so that we know that
> +	 * the kernel will pick the correct primary plane and attach it
> +	 * to the CRTC. This lets us handle the case that there are
> +	 * multiple primary planes (one per CRTC), but which can *also*
> +	 * be attached to other CRTCs
> +	 */
> +	igt_assert(drmModeSetCrtc(output->display->drm_fd, crtc_id, fb.fb_id,
> +							  0, 0, &output->id, 1, mode) == 0);
> +
> +	for(i = 0; i < pipe->n_planes; i++) {
> +		if (pipe->planes[i].type != DRM_PLANE_TYPE_PRIMARY)
> +			continue;
> +
> +		if (igt_plane_get_prop(&pipe->planes[i], IGT_PLANE_CRTC_ID) != crtc_id)
> +			continue;
> +
> +		plane = &pipe->planes[i];
> +		break;
> +	}
> +
> +	/* Removing the FB will also shut down the display for us: */
> +	igt_remove_fb(drm_fd, &fb);
> +	igt_assert_f(plane, "Valid assigned primary plane for CRTC_ID %d not found.\n", crtc_id);
> +
> +	return plane;
> +}
> +
>  /**
>   * kmstest_pipe_name:
>   * @pipe: display pipe
> @@ -2150,6 +2196,18 @@ __get_crtc_mask_for_pipe(drmModeRes *resources, igt_pipe_t *pipe)
>  	return (1 << offset);
>  }
>  
> +static bool igt_pipe_has_valid_output(igt_display_t *display, enum pipe pipe)
> +{
> +	igt_output_t *output;
> +
> +	igt_require_pipe(display, pipe);
> +
> +	for_each_valid_output_on_pipe(display, pipe, output)
> +		return true;
> +
> +	return false;
> +}
> +
>  /**
>   * igt_display_require:
>   * @display: a pointer to an #igt_display_t structure
> @@ -2272,6 +2330,7 @@ void igt_display_require(igt_display_t *display, int drm_fd)
>  		pipe->plane_cursor = -1;
>  		pipe->plane_primary = -1;
>  		pipe->planes = NULL;
> +		pipe->num_primary_planes = 0;
>  
>  		igt_fill_pipe_props(display, pipe, IGT_NUM_CRTC_PROPS, igt_crtc_prop_names);
>  
> @@ -2306,12 +2365,20 @@ void igt_display_require(igt_display_t *display, int drm_fd)
>  				plane = &pipe->planes[0];
>  				plane->index = 0;
>  				pipe->plane_primary = 0;
> +				pipe->num_primary_planes++;
>  			} else if (type == DRM_PLANE_TYPE_CURSOR && pipe->plane_cursor == -1) {
>  				plane = &pipe->planes[last_plane];
>  				plane->index = last_plane;
>  				pipe->plane_cursor = last_plane;
>  				display->has_cursor_plane = true;
>  			} else {
> +				/*
> +				 * Increment num_primary_planes for any extra
> +				 * primary plane found.
> +				 */
> +				if (type == DRM_PLANE_TYPE_PRIMARY)
> +					pipe->num_primary_planes++;
> +
>  				plane = &pipe->planes[p];
>  				plane->index = p++;
>  			}
> @@ -2392,6 +2459,39 @@ void igt_display_require(igt_display_t *display, int drm_fd)
>  out:
>  	LOG_UNINDENT(display);
>  
> +	for_each_pipe(display, i) {
> +		igt_pipe_t *pipe = &display->pipes[i];
> +
> +		if (!igt_pipe_has_valid_output(display, i))
> +			continue;
> +
> +		igt_output_t *output = igt_get_single_output_for_pipe(display, i);
> +
> +		if (pipe->num_primary_planes > 1) {
> +			igt_plane_t *primary = &pipe->planes[pipe->plane_primary];
> +			igt_plane_t *assigned_primary = igt_get_assigned_primary(output, pipe);
> +			int assigned_primary_index = assigned_primary->index;
> +
> +			/*
> +			 * If the driver-assigned primary plane isn't at the
> +			 * pipe->plane_primary index, swap it with the plane
> +			 * that's currently at the plane_primary index and
> +			 * update plane->index accordingly.
> +			 *
> +			 * This way, we can preserve pipe->plane_primary as 0
> +			 * so that tests that assume pipe->plane_primary is always 0
> +			 * won't break.
> +			 */
> +			if (assigned_primary_index != pipe->plane_primary) {
> +				assigned_primary->index = pipe->plane_primary;
> +				primary->index = assigned_primary_index;
> +
> +				igt_swap(pipe->planes[assigned_primary_index],
> +						pipe->planes[pipe->plane_primary]);
> +			}
> +		}
> +	}
> +
>  	if (display->n_pipes && display->n_outputs)
>  		igt_enable_connectors(drm_fd);
>  	else
> @@ -2438,14 +2538,8 @@ void igt_display_require_output(igt_display_t *display)
>   */
>  void igt_display_require_output_on_pipe(igt_display_t *display, enum pipe pipe)
>  {
> -	igt_output_t *output;
> -
> -	igt_require_pipe(display, pipe);
> -
> -	for_each_valid_output_on_pipe(display, pipe, output)
> -		return;
> -
> -	igt_skip("No valid connector found on pipe %s\n", kmstest_pipe_name(pipe));
> +	if (!igt_pipe_has_valid_output(display, pipe))
> +		igt_skip("No valid connector found on pipe %s\n", kmstest_pipe_name(pipe));
>  }
>  
>  /**
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index e9ecd21e9824..4949b7b39e18 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -383,6 +383,7 @@ struct igt_pipe {
>  	bool enabled;
>  
>  	int n_planes;
> +	int num_primary_planes;
>  	int plane_cursor;
>  	int plane_primary;
>  	igt_plane_t *planes;
> -- 
> 2.31.0
> 


The setcrtc dance is now only done when multiple primary planes are
detected, good.

Acked-by: Petri Latvala <petri.latvala@intel.com>

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

* Re: [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes
  2022-05-23 12:36 ` [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes Petri Latvala
@ 2022-05-27 14:08   ` Mark Yacoub
  2022-05-27 16:33     ` Abhinav Kumar
  2022-06-03 16:30   ` Saarinen, Jani
  1 sibling, 1 reply; 18+ messages in thread
From: Mark Yacoub @ 2022-05-27 14:08 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev, quic_aravindh, robdclark

I see it suggested by Rob, Acked by Petri, makes sense to me.

On Mon, May 23, 2022 at 8:38 AM Petri Latvala <petri.latvala@intel.com> wrote:
>
> On Mon, May 16, 2022 at 06:37:12PM -0700, Jessica Zhang wrote:
> > Currently, IGT populates pipe->planes using possible_crtcs and assumes
> > that the first primary plane it encounters is the one being actively
> > used by the pipe.
> >
> > This is not always true in cases where there are multiple possible
> > primary planes. This will cause problems whenever IGT calls
> > drmModePageFlip since drmModePageFlip will use the primary plane
> > assigned to the pipe by the driver to perform the page flip [1]. So a
> > mismatch between the primary plane used by IGT and the driver can cause
> > the page flip to fail.
> >
> > To fix this, let's implement a helper method to get the primary plane
> > that's being assigned to the pipe by the driver. We can then call it
> > during igt_display_require() and, if there's a mismatch between
> > pipe->plane_primary and the assigned primary plane's index, we can swap
> > the unused primary plane with the driver-assigned primary plane
> >
> > [1]
> > https://gitlab.freedesktop.org/drm/msm/-/blob/msm-next/drivers/gpu/drm/drm_plane.c#L1234
> >
> > Changes since v1:
> > - Instead of swapping the pointers of the planes within the array, we
> >   can just change the value of pipe->plane_primary.
> >
> > Changes since v2:
> > - Reverted `if (type == DRM_PLANE_TYPE_PRIMARY)` conditional then added
> >   a nested if statement to increment num_primary_planes if plane type is
> >   primary.
> >
> > Changes since v3:
> > - Created helper method igt_pipe_has_valid_output and added a check for
> >   if pipe has valid output before getting the output of a pipe to get
> >   the assigned primary plane
> > - Reverted back to using igt_swap to swap the order of the primary
> >   planes within the pipe->planes array. Some kms_* tests use
> >   igt_output_get_plane(output, 0) to get the primary plane, so this will
> >   avoid regressions in those tests.
> > - Updated the plane->index of the primary planes that are being swapped.
> >
> > Suggested-by: Rob Clark <robdclark@chromium.org>
> > Signed-off-by: Jessica Zhang <quic_jesszhan@quicinc.com>
Reviewed-by: Mark Yacoub <markyacoub@chromium.org>
> > ---
> >  lib/igt_kms.c | 110 ++++++++++++++++++++++++++++++++++++++++++++++----
> >  lib/igt_kms.h |   1 +
> >  2 files changed, 103 insertions(+), 8 deletions(-)
> >
> > diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> > index 7838ff283b62..a97e0b72d6cf 100644
> > --- a/lib/igt_kms.c
> > +++ b/lib/igt_kms.c
> > @@ -751,6 +751,52 @@ igt_fill_pipe_props(igt_display_t *display, igt_pipe_t *pipe,
> >       drmModeFreeObjectProperties(props);
> >  }
> >
> > +static igt_plane_t *igt_get_assigned_primary(igt_output_t *output, igt_pipe_t *pipe)
> > +{
> > +     int drm_fd = output->display->drm_fd;
> > +     drmModeModeInfo *mode;
> > +     struct igt_fb fb;
> > +     igt_plane_t *plane = NULL;
> > +     uint32_t crtc_id;
> > +     int i;
> > +
> > +     mode = igt_output_get_mode(output);
> > +
> > +     igt_create_color_fb(drm_fd, mode->hdisplay, mode->vdisplay,
> > +                                             DRM_FORMAT_XRGB8888,
> > +                                             DRM_FORMAT_MOD_LINEAR,
> > +                                             1.0, 1.0, 1.0, &fb);
> > +
> > +     crtc_id = pipe->crtc_id;
> > +
> > +     /*
> > +      * Do a legacy SETCRTC to start things off, so that we know that
> > +      * the kernel will pick the correct primary plane and attach it
> > +      * to the CRTC. This lets us handle the case that there are
> > +      * multiple primary planes (one per CRTC), but which can *also*
> > +      * be attached to other CRTCs
> > +      */
> > +     igt_assert(drmModeSetCrtc(output->display->drm_fd, crtc_id, fb.fb_id,
> > +                                                       0, 0, &output->id, 1, mode) == 0);
> > +
> > +     for(i = 0; i < pipe->n_planes; i++) {
> > +             if (pipe->planes[i].type != DRM_PLANE_TYPE_PRIMARY)
> > +                     continue;
> > +
> > +             if (igt_plane_get_prop(&pipe->planes[i], IGT_PLANE_CRTC_ID) != crtc_id)
> > +                     continue;
> > +
> > +             plane = &pipe->planes[i];
> > +             break;
> > +     }
> > +
> > +     /* Removing the FB will also shut down the display for us: */
> > +     igt_remove_fb(drm_fd, &fb);
> > +     igt_assert_f(plane, "Valid assigned primary plane for CRTC_ID %d not found.\n", crtc_id);
> > +
> > +     return plane;
> > +}
> > +
> >  /**
> >   * kmstest_pipe_name:
> >   * @pipe: display pipe
> > @@ -2150,6 +2196,18 @@ __get_crtc_mask_for_pipe(drmModeRes *resources, igt_pipe_t *pipe)
> >       return (1 << offset);
> >  }
> >
> > +static bool igt_pipe_has_valid_output(igt_display_t *display, enum pipe pipe)
> > +{
> > +     igt_output_t *output;
> > +
> > +     igt_require_pipe(display, pipe);
> > +
> > +     for_each_valid_output_on_pipe(display, pipe, output)
> > +             return true;
> > +
> > +     return false;
> > +}
> > +
> >  /**
> >   * igt_display_require:
> >   * @display: a pointer to an #igt_display_t structure
> > @@ -2272,6 +2330,7 @@ void igt_display_require(igt_display_t *display, int drm_fd)
> >               pipe->plane_cursor = -1;
> >               pipe->plane_primary = -1;
> >               pipe->planes = NULL;
> > +             pipe->num_primary_planes = 0;
> >
> >               igt_fill_pipe_props(display, pipe, IGT_NUM_CRTC_PROPS, igt_crtc_prop_names);
> >
> > @@ -2306,12 +2365,20 @@ void igt_display_require(igt_display_t *display, int drm_fd)
> >                               plane = &pipe->planes[0];
> >                               plane->index = 0;
> >                               pipe->plane_primary = 0;
> > +                             pipe->num_primary_planes++;
> >                       } else if (type == DRM_PLANE_TYPE_CURSOR && pipe->plane_cursor == -1) {
> >                               plane = &pipe->planes[last_plane];
> >                               plane->index = last_plane;
> >                               pipe->plane_cursor = last_plane;
> >                               display->has_cursor_plane = true;
> >                       } else {
> > +                             /*
> > +                              * Increment num_primary_planes for any extra
> > +                              * primary plane found.
> > +                              */
> > +                             if (type == DRM_PLANE_TYPE_PRIMARY)
> > +                                     pipe->num_primary_planes++;
> > +
> >                               plane = &pipe->planes[p];
> >                               plane->index = p++;
> >                       }
> > @@ -2392,6 +2459,39 @@ void igt_display_require(igt_display_t *display, int drm_fd)
> >  out:
> >       LOG_UNINDENT(display);
> >
> > +     for_each_pipe(display, i) {
> > +             igt_pipe_t *pipe = &display->pipes[i];
> > +
> > +             if (!igt_pipe_has_valid_output(display, i))
> > +                     continue;
> > +
> > +             igt_output_t *output = igt_get_single_output_for_pipe(display, i);
> > +
> > +             if (pipe->num_primary_planes > 1) {
> > +                     igt_plane_t *primary = &pipe->planes[pipe->plane_primary];
> > +                     igt_plane_t *assigned_primary = igt_get_assigned_primary(output, pipe);
> > +                     int assigned_primary_index = assigned_primary->index;
> > +
> > +                     /*
> > +                      * If the driver-assigned primary plane isn't at the
> > +                      * pipe->plane_primary index, swap it with the plane
> > +                      * that's currently at the plane_primary index and
> > +                      * update plane->index accordingly.
> > +                      *
> > +                      * This way, we can preserve pipe->plane_primary as 0
> > +                      * so that tests that assume pipe->plane_primary is always 0
> > +                      * won't break.
> > +                      */
> > +                     if (assigned_primary_index != pipe->plane_primary) {
> > +                             assigned_primary->index = pipe->plane_primary;
> > +                             primary->index = assigned_primary_index;
> > +
> > +                             igt_swap(pipe->planes[assigned_primary_index],
> > +                                             pipe->planes[pipe->plane_primary]);
> > +                     }
> > +             }
> > +     }
> > +
> >       if (display->n_pipes && display->n_outputs)
> >               igt_enable_connectors(drm_fd);
> >       else
> > @@ -2438,14 +2538,8 @@ void igt_display_require_output(igt_display_t *display)
> >   */
> >  void igt_display_require_output_on_pipe(igt_display_t *display, enum pipe pipe)
> >  {
> > -     igt_output_t *output;
> > -
> > -     igt_require_pipe(display, pipe);
> > -
> > -     for_each_valid_output_on_pipe(display, pipe, output)
> > -             return;
> > -
> > -     igt_skip("No valid connector found on pipe %s\n", kmstest_pipe_name(pipe));
> > +     if (!igt_pipe_has_valid_output(display, pipe))
> > +             igt_skip("No valid connector found on pipe %s\n", kmstest_pipe_name(pipe));
> >  }
> >
> >  /**
> > diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> > index e9ecd21e9824..4949b7b39e18 100644
> > --- a/lib/igt_kms.h
> > +++ b/lib/igt_kms.h
> > @@ -383,6 +383,7 @@ struct igt_pipe {
> >       bool enabled;
> >
> >       int n_planes;
> > +     int num_primary_planes;
> >       int plane_cursor;
> >       int plane_primary;
> >       igt_plane_t *planes;
> > --
> > 2.31.0
> >
>
>
> The setcrtc dance is now only done when multiple primary planes are
> detected, good.
>
> Acked-by: Petri Latvala <petri.latvala@intel.com>

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

* Re: [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes
  2022-05-27 14:08   ` Mark Yacoub
@ 2022-05-27 16:33     ` Abhinav Kumar
  0 siblings, 0 replies; 18+ messages in thread
From: Abhinav Kumar @ 2022-05-27 16:33 UTC (permalink / raw)
  To: Mark Yacoub, Petri Latvala; +Cc: igt-dev, quic_aravindh, robdclark

Thank you Jessica/Mark/Rob and Petri.

This has been applied.

Thanks

Abhinav

On 5/27/2022 7:08 AM, Mark Yacoub wrote:
> I see it suggested by Rob, Acked by Petri, makes sense to me.
> 
> On Mon, May 23, 2022 at 8:38 AM Petri Latvala <petri.latvala@intel.com> wrote:
>>
>> On Mon, May 16, 2022 at 06:37:12PM -0700, Jessica Zhang wrote:
>>> Currently, IGT populates pipe->planes using possible_crtcs and assumes
>>> that the first primary plane it encounters is the one being actively
>>> used by the pipe.
>>>
>>> This is not always true in cases where there are multiple possible
>>> primary planes. This will cause problems whenever IGT calls
>>> drmModePageFlip since drmModePageFlip will use the primary plane
>>> assigned to the pipe by the driver to perform the page flip [1]. So a
>>> mismatch between the primary plane used by IGT and the driver can cause
>>> the page flip to fail.
>>>
>>> To fix this, let's implement a helper method to get the primary plane
>>> that's being assigned to the pipe by the driver. We can then call it
>>> during igt_display_require() and, if there's a mismatch between
>>> pipe->plane_primary and the assigned primary plane's index, we can swap
>>> the unused primary plane with the driver-assigned primary plane
>>>
>>> [1]
>>> https://gitlab.freedesktop.org/drm/msm/-/blob/msm-next/drivers/gpu/drm/drm_plane.c#L1234
>>>
>>> Changes since v1:
>>> - Instead of swapping the pointers of the planes within the array, we
>>>    can just change the value of pipe->plane_primary.
>>>
>>> Changes since v2:
>>> - Reverted `if (type == DRM_PLANE_TYPE_PRIMARY)` conditional then added
>>>    a nested if statement to increment num_primary_planes if plane type is
>>>    primary.
>>>
>>> Changes since v3:
>>> - Created helper method igt_pipe_has_valid_output and added a check for
>>>    if pipe has valid output before getting the output of a pipe to get
>>>    the assigned primary plane
>>> - Reverted back to using igt_swap to swap the order of the primary
>>>    planes within the pipe->planes array. Some kms_* tests use
>>>    igt_output_get_plane(output, 0) to get the primary plane, so this will
>>>    avoid regressions in those tests.
>>> - Updated the plane->index of the primary planes that are being swapped.
>>>
>>> Suggested-by: Rob Clark <robdclark@chromium.org>
>>> Signed-off-by: Jessica Zhang <quic_jesszhan@quicinc.com>
> Reviewed-by: Mark Yacoub <markyacoub@chromium.org>
>>> ---
>>>   lib/igt_kms.c | 110 ++++++++++++++++++++++++++++++++++++++++++++++----
>>>   lib/igt_kms.h |   1 +
>>>   2 files changed, 103 insertions(+), 8 deletions(-)
>>>
>>> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
>>> index 7838ff283b62..a97e0b72d6cf 100644
>>> --- a/lib/igt_kms.c
>>> +++ b/lib/igt_kms.c
>>> @@ -751,6 +751,52 @@ igt_fill_pipe_props(igt_display_t *display, igt_pipe_t *pipe,
>>>        drmModeFreeObjectProperties(props);
>>>   }
>>>
>>> +static igt_plane_t *igt_get_assigned_primary(igt_output_t *output, igt_pipe_t *pipe)
>>> +{
>>> +     int drm_fd = output->display->drm_fd;
>>> +     drmModeModeInfo *mode;
>>> +     struct igt_fb fb;
>>> +     igt_plane_t *plane = NULL;
>>> +     uint32_t crtc_id;
>>> +     int i;
>>> +
>>> +     mode = igt_output_get_mode(output);
>>> +
>>> +     igt_create_color_fb(drm_fd, mode->hdisplay, mode->vdisplay,
>>> +                                             DRM_FORMAT_XRGB8888,
>>> +                                             DRM_FORMAT_MOD_LINEAR,
>>> +                                             1.0, 1.0, 1.0, &fb);
>>> +
>>> +     crtc_id = pipe->crtc_id;
>>> +
>>> +     /*
>>> +      * Do a legacy SETCRTC to start things off, so that we know that
>>> +      * the kernel will pick the correct primary plane and attach it
>>> +      * to the CRTC. This lets us handle the case that there are
>>> +      * multiple primary planes (one per CRTC), but which can *also*
>>> +      * be attached to other CRTCs
>>> +      */
>>> +     igt_assert(drmModeSetCrtc(output->display->drm_fd, crtc_id, fb.fb_id,
>>> +                                                       0, 0, &output->id, 1, mode) == 0);
>>> +
>>> +     for(i = 0; i < pipe->n_planes; i++) {
>>> +             if (pipe->planes[i].type != DRM_PLANE_TYPE_PRIMARY)
>>> +                     continue;
>>> +
>>> +             if (igt_plane_get_prop(&pipe->planes[i], IGT_PLANE_CRTC_ID) != crtc_id)
>>> +                     continue;
>>> +
>>> +             plane = &pipe->planes[i];
>>> +             break;
>>> +     }
>>> +
>>> +     /* Removing the FB will also shut down the display for us: */
>>> +     igt_remove_fb(drm_fd, &fb);
>>> +     igt_assert_f(plane, "Valid assigned primary plane for CRTC_ID %d not found.\n", crtc_id);
>>> +
>>> +     return plane;
>>> +}
>>> +
>>>   /**
>>>    * kmstest_pipe_name:
>>>    * @pipe: display pipe
>>> @@ -2150,6 +2196,18 @@ __get_crtc_mask_for_pipe(drmModeRes *resources, igt_pipe_t *pipe)
>>>        return (1 << offset);
>>>   }
>>>
>>> +static bool igt_pipe_has_valid_output(igt_display_t *display, enum pipe pipe)
>>> +{
>>> +     igt_output_t *output;
>>> +
>>> +     igt_require_pipe(display, pipe);
>>> +
>>> +     for_each_valid_output_on_pipe(display, pipe, output)
>>> +             return true;
>>> +
>>> +     return false;
>>> +}
>>> +
>>>   /**
>>>    * igt_display_require:
>>>    * @display: a pointer to an #igt_display_t structure
>>> @@ -2272,6 +2330,7 @@ void igt_display_require(igt_display_t *display, int drm_fd)
>>>                pipe->plane_cursor = -1;
>>>                pipe->plane_primary = -1;
>>>                pipe->planes = NULL;
>>> +             pipe->num_primary_planes = 0;
>>>
>>>                igt_fill_pipe_props(display, pipe, IGT_NUM_CRTC_PROPS, igt_crtc_prop_names);
>>>
>>> @@ -2306,12 +2365,20 @@ void igt_display_require(igt_display_t *display, int drm_fd)
>>>                                plane = &pipe->planes[0];
>>>                                plane->index = 0;
>>>                                pipe->plane_primary = 0;
>>> +                             pipe->num_primary_planes++;
>>>                        } else if (type == DRM_PLANE_TYPE_CURSOR && pipe->plane_cursor == -1) {
>>>                                plane = &pipe->planes[last_plane];
>>>                                plane->index = last_plane;
>>>                                pipe->plane_cursor = last_plane;
>>>                                display->has_cursor_plane = true;
>>>                        } else {
>>> +                             /*
>>> +                              * Increment num_primary_planes for any extra
>>> +                              * primary plane found.
>>> +                              */
>>> +                             if (type == DRM_PLANE_TYPE_PRIMARY)
>>> +                                     pipe->num_primary_planes++;
>>> +
>>>                                plane = &pipe->planes[p];
>>>                                plane->index = p++;
>>>                        }
>>> @@ -2392,6 +2459,39 @@ void igt_display_require(igt_display_t *display, int drm_fd)
>>>   out:
>>>        LOG_UNINDENT(display);
>>>
>>> +     for_each_pipe(display, i) {
>>> +             igt_pipe_t *pipe = &display->pipes[i];
>>> +
>>> +             if (!igt_pipe_has_valid_output(display, i))
>>> +                     continue;
>>> +
>>> +             igt_output_t *output = igt_get_single_output_for_pipe(display, i);
>>> +
>>> +             if (pipe->num_primary_planes > 1) {
>>> +                     igt_plane_t *primary = &pipe->planes[pipe->plane_primary];
>>> +                     igt_plane_t *assigned_primary = igt_get_assigned_primary(output, pipe);
>>> +                     int assigned_primary_index = assigned_primary->index;
>>> +
>>> +                     /*
>>> +                      * If the driver-assigned primary plane isn't at the
>>> +                      * pipe->plane_primary index, swap it with the plane
>>> +                      * that's currently at the plane_primary index and
>>> +                      * update plane->index accordingly.
>>> +                      *
>>> +                      * This way, we can preserve pipe->plane_primary as 0
>>> +                      * so that tests that assume pipe->plane_primary is always 0
>>> +                      * won't break.
>>> +                      */
>>> +                     if (assigned_primary_index != pipe->plane_primary) {
>>> +                             assigned_primary->index = pipe->plane_primary;
>>> +                             primary->index = assigned_primary_index;
>>> +
>>> +                             igt_swap(pipe->planes[assigned_primary_index],
>>> +                                             pipe->planes[pipe->plane_primary]);
>>> +                     }
>>> +             }
>>> +     }
>>> +
>>>        if (display->n_pipes && display->n_outputs)
>>>                igt_enable_connectors(drm_fd);
>>>        else
>>> @@ -2438,14 +2538,8 @@ void igt_display_require_output(igt_display_t *display)
>>>    */
>>>   void igt_display_require_output_on_pipe(igt_display_t *display, enum pipe pipe)
>>>   {
>>> -     igt_output_t *output;
>>> -
>>> -     igt_require_pipe(display, pipe);
>>> -
>>> -     for_each_valid_output_on_pipe(display, pipe, output)
>>> -             return;
>>> -
>>> -     igt_skip("No valid connector found on pipe %s\n", kmstest_pipe_name(pipe));
>>> +     if (!igt_pipe_has_valid_output(display, pipe))
>>> +             igt_skip("No valid connector found on pipe %s\n", kmstest_pipe_name(pipe));
>>>   }
>>>
>>>   /**
>>> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
>>> index e9ecd21e9824..4949b7b39e18 100644
>>> --- a/lib/igt_kms.h
>>> +++ b/lib/igt_kms.h
>>> @@ -383,6 +383,7 @@ struct igt_pipe {
>>>        bool enabled;
>>>
>>>        int n_planes;
>>> +     int num_primary_planes;
>>>        int plane_cursor;
>>>        int plane_primary;
>>>        igt_plane_t *planes;
>>> --
>>> 2.31.0
>>>
>>
>>
>> The setcrtc dance is now only done when multiple primary planes are
>> detected, good.
>>
>> Acked-by: Petri Latvala <petri.latvala@intel.com>

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

* Re: [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes
  2022-05-23 12:36 ` [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes Petri Latvala
  2022-05-27 14:08   ` Mark Yacoub
@ 2022-06-03 16:30   ` Saarinen, Jani
  2022-06-03 18:37     ` Jessica Zhang
  1 sibling, 1 reply; 18+ messages in thread
From: Saarinen, Jani @ 2022-06-03 16:30 UTC (permalink / raw)
  To: Latvala, Petri, Jessica Zhang; +Cc: igt-dev, robdclark, quic_aravindh

Jessica, Petri
This is now seems to cause regressions 

See:
https://gitlab.freedesktop.org/drm/intel/issues/6133
https://gitlab.freedesktop.org/drm/intel/-/issues/6134
https://gitlab.freedesktop.org/drm/intel/-/issues/6135
https://gitlab.freedesktop.org/drm/intel/-/issues/6136
https://gitlab.freedesktop.org/drm/intel/-/issues/6137

First seen at https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6496/git-log-oneline.txt
58a5a2d5b lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes
5b17cb8ea i915/gem_exec_gttfill: Added test description for test case.
ab8bfe267 i915/gem_pipe_control_store_loop: added description for test case
0e5b5c505 intel_gpu_top: Don't show client header if no kernel support

Please revert asap or fix accordingly...

Br,
Jani

> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Petri Latvala
> Sent: maanantai 23. toukokuuta 2022 15.36
> To: Jessica Zhang <quic_jesszhan@quicinc.com>
> Cc: igt-dev@lists.freedesktop.org; quic_aravindh@quicinc.com;
> robdclark@chromium.org
> Subject: Re: [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to
> driver-assigned primary plane when there are multiple possible primary planes
> 
> On Mon, May 16, 2022 at 06:37:12PM -0700, Jessica Zhang wrote:
> > Currently, IGT populates pipe->planes using possible_crtcs and assumes
> > that the first primary plane it encounters is the one being actively
> > used by the pipe.
> >
> > This is not always true in cases where there are multiple possible
> > primary planes. This will cause problems whenever IGT calls
> > drmModePageFlip since drmModePageFlip will use the primary plane
> > assigned to the pipe by the driver to perform the page flip [1]. So a
> > mismatch between the primary plane used by IGT and the driver can
> > cause the page flip to fail.
> >
> > To fix this, let's implement a helper method to get the primary plane
> > that's being assigned to the pipe by the driver. We can then call it
> > during igt_display_require() and, if there's a mismatch between
> > pipe->plane_primary and the assigned primary plane's index, we can
> > pipe->swap
> > the unused primary plane with the driver-assigned primary plane
> >
> > [1]
> > https://gitlab.freedesktop.org/drm/msm/-/blob/msm-next/drivers/gpu/drm
> > /drm_plane.c#L1234
> >
> > Changes since v1:
> > - Instead of swapping the pointers of the planes within the array, we
> >   can just change the value of pipe->plane_primary.
> >
> > Changes since v2:
> > - Reverted `if (type == DRM_PLANE_TYPE_PRIMARY)` conditional then added
> >   a nested if statement to increment num_primary_planes if plane type is
> >   primary.
> >
> > Changes since v3:
> > - Created helper method igt_pipe_has_valid_output and added a check for
> >   if pipe has valid output before getting the output of a pipe to get
> >   the assigned primary plane
> > - Reverted back to using igt_swap to swap the order of the primary
> >   planes within the pipe->planes array. Some kms_* tests use
> >   igt_output_get_plane(output, 0) to get the primary plane, so this will
> >   avoid regressions in those tests.
> > - Updated the plane->index of the primary planes that are being swapped.
> >
> > Suggested-by: Rob Clark <robdclark@chromium.org>
> > Signed-off-by: Jessica Zhang <quic_jesszhan@quicinc.com>
> > ---
> >  lib/igt_kms.c | 110 ++++++++++++++++++++++++++++++++++++++++++++++----
> >  lib/igt_kms.h |   1 +
> >  2 files changed, 103 insertions(+), 8 deletions(-)
> >
> > diff --git a/lib/igt_kms.c b/lib/igt_kms.c index
> > 7838ff283b62..a97e0b72d6cf 100644
> > --- a/lib/igt_kms.c
> > +++ b/lib/igt_kms.c
> > @@ -751,6 +751,52 @@ igt_fill_pipe_props(igt_display_t *display, igt_pipe_t
> *pipe,
> >  	drmModeFreeObjectProperties(props);
> >  }
> >
> > +static igt_plane_t *igt_get_assigned_primary(igt_output_t *output,
> > +igt_pipe_t *pipe) {
> > +	int drm_fd = output->display->drm_fd;
> > +	drmModeModeInfo *mode;
> > +	struct igt_fb fb;
> > +	igt_plane_t *plane = NULL;
> > +	uint32_t crtc_id;
> > +	int i;
> > +
> > +	mode = igt_output_get_mode(output);
> > +
> > +	igt_create_color_fb(drm_fd, mode->hdisplay, mode->vdisplay,
> > +						DRM_FORMAT_XRGB8888,
> > +						DRM_FORMAT_MOD_LINEAR,
> > +						1.0, 1.0, 1.0, &fb);
> > +
> > +	crtc_id = pipe->crtc_id;
> > +
> > +	/*
> > +	 * Do a legacy SETCRTC to start things off, so that we know that
> > +	 * the kernel will pick the correct primary plane and attach it
> > +	 * to the CRTC. This lets us handle the case that there are
> > +	 * multiple primary planes (one per CRTC), but which can *also*
> > +	 * be attached to other CRTCs
> > +	 */
> > +	igt_assert(drmModeSetCrtc(output->display->drm_fd, crtc_id, fb.fb_id,
> > +							  0, 0, &output->id, 1,
> mode) == 0);
> > +
> > +	for(i = 0; i < pipe->n_planes; i++) {
> > +		if (pipe->planes[i].type != DRM_PLANE_TYPE_PRIMARY)
> > +			continue;
> > +
> > +		if (igt_plane_get_prop(&pipe->planes[i], IGT_PLANE_CRTC_ID) !=
> crtc_id)
> > +			continue;
> > +
> > +		plane = &pipe->planes[i];
> > +		break;
> > +	}
> > +
> > +	/* Removing the FB will also shut down the display for us: */
> > +	igt_remove_fb(drm_fd, &fb);
> > +	igt_assert_f(plane, "Valid assigned primary plane for CRTC_ID %d not
> > +found.\n", crtc_id);
> > +
> > +	return plane;
> > +}
> > +
> >  /**
> >   * kmstest_pipe_name:
> >   * @pipe: display pipe
> > @@ -2150,6 +2196,18 @@ __get_crtc_mask_for_pipe(drmModeRes *resources,
> igt_pipe_t *pipe)
> >  	return (1 << offset);
> >  }
> >
> > +static bool igt_pipe_has_valid_output(igt_display_t *display, enum
> > +pipe pipe) {
> > +	igt_output_t *output;
> > +
> > +	igt_require_pipe(display, pipe);
> > +
> > +	for_each_valid_output_on_pipe(display, pipe, output)
> > +		return true;
> > +
> > +	return false;
> > +}
> > +
> >  /**
> >   * igt_display_require:
> >   * @display: a pointer to an #igt_display_t structure @@ -2272,6
> > +2330,7 @@ void igt_display_require(igt_display_t *display, int drm_fd)
> >  		pipe->plane_cursor = -1;
> >  		pipe->plane_primary = -1;
> >  		pipe->planes = NULL;
> > +		pipe->num_primary_planes = 0;
> >
> >  		igt_fill_pipe_props(display, pipe, IGT_NUM_CRTC_PROPS,
> > igt_crtc_prop_names);
> >
> > @@ -2306,12 +2365,20 @@ void igt_display_require(igt_display_t *display, int
> drm_fd)
> >  				plane = &pipe->planes[0];
> >  				plane->index = 0;
> >  				pipe->plane_primary = 0;
> > +				pipe->num_primary_planes++;
> >  			} else if (type == DRM_PLANE_TYPE_CURSOR && pipe-
> >plane_cursor == -1) {
> >  				plane = &pipe->planes[last_plane];
> >  				plane->index = last_plane;
> >  				pipe->plane_cursor = last_plane;
> >  				display->has_cursor_plane = true;
> >  			} else {
> > +				/*
> > +				 * Increment num_primary_planes for any extra
> > +				 * primary plane found.
> > +				 */
> > +				if (type == DRM_PLANE_TYPE_PRIMARY)
> > +					pipe->num_primary_planes++;
> > +
> >  				plane = &pipe->planes[p];
> >  				plane->index = p++;
> >  			}
> > @@ -2392,6 +2459,39 @@ void igt_display_require(igt_display_t
> > *display, int drm_fd)
> >  out:
> >  	LOG_UNINDENT(display);
> >
> > +	for_each_pipe(display, i) {
> > +		igt_pipe_t *pipe = &display->pipes[i];
> > +
> > +		if (!igt_pipe_has_valid_output(display, i))
> > +			continue;
> > +
> > +		igt_output_t *output = igt_get_single_output_for_pipe(display, i);
> > +
> > +		if (pipe->num_primary_planes > 1) {
> > +			igt_plane_t *primary = &pipe->planes[pipe-
> >plane_primary];
> > +			igt_plane_t *assigned_primary =
> igt_get_assigned_primary(output, pipe);
> > +			int assigned_primary_index = assigned_primary->index;
> > +
> > +			/*
> > +			 * If the driver-assigned primary plane isn't at the
> > +			 * pipe->plane_primary index, swap it with the plane
> > +			 * that's currently at the plane_primary index and
> > +			 * update plane->index accordingly.
> > +			 *
> > +			 * This way, we can preserve pipe->plane_primary as 0
> > +			 * so that tests that assume pipe->plane_primary is always
> 0
> > +			 * won't break.
> > +			 */
> > +			if (assigned_primary_index != pipe->plane_primary) {
> > +				assigned_primary->index = pipe->plane_primary;
> > +				primary->index = assigned_primary_index;
> > +
> > +				igt_swap(pipe->planes[assigned_primary_index],
> > +						pipe->planes[pipe-
> >plane_primary]);
> > +			}
> > +		}
> > +	}
> > +
> >  	if (display->n_pipes && display->n_outputs)
> >  		igt_enable_connectors(drm_fd);
> >  	else
> > @@ -2438,14 +2538,8 @@ void igt_display_require_output(igt_display_t
> *display)
> >   */
> >  void igt_display_require_output_on_pipe(igt_display_t *display, enum
> > pipe pipe)  {
> > -	igt_output_t *output;
> > -
> > -	igt_require_pipe(display, pipe);
> > -
> > -	for_each_valid_output_on_pipe(display, pipe, output)
> > -		return;
> > -
> > -	igt_skip("No valid connector found on pipe %s\n",
> kmstest_pipe_name(pipe));
> > +	if (!igt_pipe_has_valid_output(display, pipe))
> > +		igt_skip("No valid connector found on pipe %s\n",
> > +kmstest_pipe_name(pipe));
> >  }
> >
> >  /**
> > diff --git a/lib/igt_kms.h b/lib/igt_kms.h index
> > e9ecd21e9824..4949b7b39e18 100644
> > --- a/lib/igt_kms.h
> > +++ b/lib/igt_kms.h
> > @@ -383,6 +383,7 @@ struct igt_pipe {
> >  	bool enabled;
> >
> >  	int n_planes;
> > +	int num_primary_planes;
> >  	int plane_cursor;
> >  	int plane_primary;
> >  	igt_plane_t *planes;
> > --
> > 2.31.0
> >
> 
> 
> The setcrtc dance is now only done when multiple primary planes are
> detected, good.
> 
> Acked-by: Petri Latvala <petri.latvala@intel.com>

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

* Re: [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes
  2022-06-03 16:30   ` Saarinen, Jani
@ 2022-06-03 18:37     ` Jessica Zhang
  2022-06-04  8:59       ` Saarinen, Jani
  0 siblings, 1 reply; 18+ messages in thread
From: Jessica Zhang @ 2022-06-03 18:37 UTC (permalink / raw)
  To: Saarinen, Jani, Latvala, Petri; +Cc: igt-dev, robdclark, quic_aravindh



On 6/3/2022 9:30 AM, Saarinen, Jani wrote:
> Jessica, Petri
> This is now seems to cause regressions
> 
> See:
> https://gitlab.freedesktop.org/drm/intel/issues/6133
> https://gitlab.freedesktop.org/drm/intel/-/issues/6134
> https://gitlab.freedesktop.org/drm/intel/-/issues/6135
> https://gitlab.freedesktop.org/drm/intel/-/issues/6136
> https://gitlab.freedesktop.org/drm/intel/-/issues/6137
> 
> First seen at https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6496/git-log-oneline.txt
> 58a5a2d5b lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes
> 5b17cb8ea i915/gem_exec_gttfill: Added test description for test case.
> ab8bfe267 i915/gem_pipe_control_store_loop: added description for test case
> 0e5b5c505 intel_gpu_top: Don't show client header if no kernel support
> 
> Please revert asap or fix accordingly...

Hey Jani,

Thanks for the heads up -- seems that my patch is hitting a NULL 
dereference case because the display resources aren't guaranteed to be 
initialized in the `out` tag.

This patch should fix that issue: 
https://patchwork.freedesktop.org/series/104739/

Thanks,

Jessica Zhang

> 
> Br,
> Jani
> 
>> -----Original Message-----
>> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Petri Latvala
>> Sent: maanantai 23. toukokuuta 2022 15.36
>> To: Jessica Zhang <quic_jesszhan@quicinc.com>
>> Cc: igt-dev@lists.freedesktop.org; quic_aravindh@quicinc.com;
>> robdclark@chromium.org
>> Subject: Re: [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to
>> driver-assigned primary plane when there are multiple possible primary planes
>>
>> On Mon, May 16, 2022 at 06:37:12PM -0700, Jessica Zhang wrote:
>>> Currently, IGT populates pipe->planes using possible_crtcs and assumes
>>> that the first primary plane it encounters is the one being actively
>>> used by the pipe.
>>>
>>> This is not always true in cases where there are multiple possible
>>> primary planes. This will cause problems whenever IGT calls
>>> drmModePageFlip since drmModePageFlip will use the primary plane
>>> assigned to the pipe by the driver to perform the page flip [1]. So a
>>> mismatch between the primary plane used by IGT and the driver can
>>> cause the page flip to fail.
>>>
>>> To fix this, let's implement a helper method to get the primary plane
>>> that's being assigned to the pipe by the driver. We can then call it
>>> during igt_display_require() and, if there's a mismatch between
>>> pipe->plane_primary and the assigned primary plane's index, we can
>>> pipe->swap
>>> the unused primary plane with the driver-assigned primary plane
>>>
>>> [1]
>>> https://gitlab.freedesktop.org/drm/msm/-/blob/msm-next/drivers/gpu/drm
>>> /drm_plane.c#L1234
>>>
>>> Changes since v1:
>>> - Instead of swapping the pointers of the planes within the array, we
>>>    can just change the value of pipe->plane_primary.
>>>
>>> Changes since v2:
>>> - Reverted `if (type == DRM_PLANE_TYPE_PRIMARY)` conditional then added
>>>    a nested if statement to increment num_primary_planes if plane type is
>>>    primary.
>>>
>>> Changes since v3:
>>> - Created helper method igt_pipe_has_valid_output and added a check for
>>>    if pipe has valid output before getting the output of a pipe to get
>>>    the assigned primary plane
>>> - Reverted back to using igt_swap to swap the order of the primary
>>>    planes within the pipe->planes array. Some kms_* tests use
>>>    igt_output_get_plane(output, 0) to get the primary plane, so this will
>>>    avoid regressions in those tests.
>>> - Updated the plane->index of the primary planes that are being swapped.
>>>
>>> Suggested-by: Rob Clark <robdclark@chromium.org>
>>> Signed-off-by: Jessica Zhang <quic_jesszhan@quicinc.com>
>>> ---
>>>   lib/igt_kms.c | 110 ++++++++++++++++++++++++++++++++++++++++++++++----
>>>   lib/igt_kms.h |   1 +
>>>   2 files changed, 103 insertions(+), 8 deletions(-)
>>>
>>> diff --git a/lib/igt_kms.c b/lib/igt_kms.c index
>>> 7838ff283b62..a97e0b72d6cf 100644
>>> --- a/lib/igt_kms.c
>>> +++ b/lib/igt_kms.c
>>> @@ -751,6 +751,52 @@ igt_fill_pipe_props(igt_display_t *display, igt_pipe_t
>> *pipe,
>>>   	drmModeFreeObjectProperties(props);
>>>   }
>>>
>>> +static igt_plane_t *igt_get_assigned_primary(igt_output_t *output,
>>> +igt_pipe_t *pipe) {
>>> +	int drm_fd = output->display->drm_fd;
>>> +	drmModeModeInfo *mode;
>>> +	struct igt_fb fb;
>>> +	igt_plane_t *plane = NULL;
>>> +	uint32_t crtc_id;
>>> +	int i;
>>> +
>>> +	mode = igt_output_get_mode(output);
>>> +
>>> +	igt_create_color_fb(drm_fd, mode->hdisplay, mode->vdisplay,
>>> +						DRM_FORMAT_XRGB8888,
>>> +						DRM_FORMAT_MOD_LINEAR,
>>> +						1.0, 1.0, 1.0, &fb);
>>> +
>>> +	crtc_id = pipe->crtc_id;
>>> +
>>> +	/*
>>> +	 * Do a legacy SETCRTC to start things off, so that we know that
>>> +	 * the kernel will pick the correct primary plane and attach it
>>> +	 * to the CRTC. This lets us handle the case that there are
>>> +	 * multiple primary planes (one per CRTC), but which can *also*
>>> +	 * be attached to other CRTCs
>>> +	 */
>>> +	igt_assert(drmModeSetCrtc(output->display->drm_fd, crtc_id, fb.fb_id,
>>> +							  0, 0, &output->id, 1,
>> mode) == 0);
>>> +
>>> +	for(i = 0; i < pipe->n_planes; i++) {
>>> +		if (pipe->planes[i].type != DRM_PLANE_TYPE_PRIMARY)
>>> +			continue;
>>> +
>>> +		if (igt_plane_get_prop(&pipe->planes[i], IGT_PLANE_CRTC_ID) !=
>> crtc_id)
>>> +			continue;
>>> +
>>> +		plane = &pipe->planes[i];
>>> +		break;
>>> +	}
>>> +
>>> +	/* Removing the FB will also shut down the display for us: */
>>> +	igt_remove_fb(drm_fd, &fb);
>>> +	igt_assert_f(plane, "Valid assigned primary plane for CRTC_ID %d not
>>> +found.\n", crtc_id);
>>> +
>>> +	return plane;
>>> +}
>>> +
>>>   /**
>>>    * kmstest_pipe_name:
>>>    * @pipe: display pipe
>>> @@ -2150,6 +2196,18 @@ __get_crtc_mask_for_pipe(drmModeRes *resources,
>> igt_pipe_t *pipe)
>>>   	return (1 << offset);
>>>   }
>>>
>>> +static bool igt_pipe_has_valid_output(igt_display_t *display, enum
>>> +pipe pipe) {
>>> +	igt_output_t *output;
>>> +
>>> +	igt_require_pipe(display, pipe);
>>> +
>>> +	for_each_valid_output_on_pipe(display, pipe, output)
>>> +		return true;
>>> +
>>> +	return false;
>>> +}
>>> +
>>>   /**
>>>    * igt_display_require:
>>>    * @display: a pointer to an #igt_display_t structure @@ -2272,6
>>> +2330,7 @@ void igt_display_require(igt_display_t *display, int drm_fd)
>>>   		pipe->plane_cursor = -1;
>>>   		pipe->plane_primary = -1;
>>>   		pipe->planes = NULL;
>>> +		pipe->num_primary_planes = 0;
>>>
>>>   		igt_fill_pipe_props(display, pipe, IGT_NUM_CRTC_PROPS,
>>> igt_crtc_prop_names);
>>>
>>> @@ -2306,12 +2365,20 @@ void igt_display_require(igt_display_t *display, int
>> drm_fd)
>>>   				plane = &pipe->planes[0];
>>>   				plane->index = 0;
>>>   				pipe->plane_primary = 0;
>>> +				pipe->num_primary_planes++;
>>>   			} else if (type == DRM_PLANE_TYPE_CURSOR && pipe-
>>> plane_cursor == -1) {
>>>   				plane = &pipe->planes[last_plane];
>>>   				plane->index = last_plane;
>>>   				pipe->plane_cursor = last_plane;
>>>   				display->has_cursor_plane = true;
>>>   			} else {
>>> +				/*
>>> +				 * Increment num_primary_planes for any extra
>>> +				 * primary plane found.
>>> +				 */
>>> +				if (type == DRM_PLANE_TYPE_PRIMARY)
>>> +					pipe->num_primary_planes++;
>>> +
>>>   				plane = &pipe->planes[p];
>>>   				plane->index = p++;
>>>   			}
>>> @@ -2392,6 +2459,39 @@ void igt_display_require(igt_display_t
>>> *display, int drm_fd)
>>>   out:
>>>   	LOG_UNINDENT(display);
>>>
>>> +	for_each_pipe(display, i) {
>>> +		igt_pipe_t *pipe = &display->pipes[i];
>>> +
>>> +		if (!igt_pipe_has_valid_output(display, i))
>>> +			continue;
>>> +
>>> +		igt_output_t *output = igt_get_single_output_for_pipe(display, i);
>>> +
>>> +		if (pipe->num_primary_planes > 1) {
>>> +			igt_plane_t *primary = &pipe->planes[pipe-
>>> plane_primary];
>>> +			igt_plane_t *assigned_primary =
>> igt_get_assigned_primary(output, pipe);
>>> +			int assigned_primary_index = assigned_primary->index;
>>> +
>>> +			/*
>>> +			 * If the driver-assigned primary plane isn't at the
>>> +			 * pipe->plane_primary index, swap it with the plane
>>> +			 * that's currently at the plane_primary index and
>>> +			 * update plane->index accordingly.
>>> +			 *
>>> +			 * This way, we can preserve pipe->plane_primary as 0
>>> +			 * so that tests that assume pipe->plane_primary is always
>> 0
>>> +			 * won't break.
>>> +			 */
>>> +			if (assigned_primary_index != pipe->plane_primary) {
>>> +				assigned_primary->index = pipe->plane_primary;
>>> +				primary->index = assigned_primary_index;
>>> +
>>> +				igt_swap(pipe->planes[assigned_primary_index],
>>> +						pipe->planes[pipe-
>>> plane_primary]);
>>> +			}
>>> +		}
>>> +	}
>>> +
>>>   	if (display->n_pipes && display->n_outputs)
>>>   		igt_enable_connectors(drm_fd);
>>>   	else
>>> @@ -2438,14 +2538,8 @@ void igt_display_require_output(igt_display_t
>> *display)
>>>    */
>>>   void igt_display_require_output_on_pipe(igt_display_t *display, enum
>>> pipe pipe)  {
>>> -	igt_output_t *output;
>>> -
>>> -	igt_require_pipe(display, pipe);
>>> -
>>> -	for_each_valid_output_on_pipe(display, pipe, output)
>>> -		return;
>>> -
>>> -	igt_skip("No valid connector found on pipe %s\n",
>> kmstest_pipe_name(pipe));
>>> +	if (!igt_pipe_has_valid_output(display, pipe))
>>> +		igt_skip("No valid connector found on pipe %s\n",
>>> +kmstest_pipe_name(pipe));
>>>   }
>>>
>>>   /**
>>> diff --git a/lib/igt_kms.h b/lib/igt_kms.h index
>>> e9ecd21e9824..4949b7b39e18 100644
>>> --- a/lib/igt_kms.h
>>> +++ b/lib/igt_kms.h
>>> @@ -383,6 +383,7 @@ struct igt_pipe {
>>>   	bool enabled;
>>>
>>>   	int n_planes;
>>> +	int num_primary_planes;
>>>   	int plane_cursor;
>>>   	int plane_primary;
>>>   	igt_plane_t *planes;
>>> --
>>> 2.31.0
>>>
>>
>>
>> The setcrtc dance is now only done when multiple primary planes are
>> detected, good.
>>
>> Acked-by: Petri Latvala <petri.latvala@intel.com>

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

* Re: [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes
  2022-06-03 18:37     ` Jessica Zhang
@ 2022-06-04  8:59       ` Saarinen, Jani
  0 siblings, 0 replies; 18+ messages in thread
From: Saarinen, Jani @ 2022-06-04  8:59 UTC (permalink / raw)
  To: Jessica Zhang, Latvala, Petri; +Cc: igt-dev, robdclark, quic_aravindh

Hi, 
> -----Original Message-----
> From: Jessica Zhang <quic_jesszhan@quicinc.com>
> Sent: perjantai 3. kesäkuuta 2022 21.38
> To: Saarinen, Jani <jani.saarinen@intel.com>; Latvala, Petri
> <petri.latvala@intel.com>
> Cc: igt-dev@lists.freedesktop.org; quic_aravindh@quicinc.com;
> robdclark@chromium.org
> Subject: Re: [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to
> driver-assigned primary plane when there are multiple possible primary planes
> 
> 
> 
> On 6/3/2022 9:30 AM, Saarinen, Jani wrote:
> > Jessica, Petri
> > This is now seems to cause regressions
> >
> > See:
> > https://gitlab.freedesktop.org/drm/intel/issues/6133
> > https://gitlab.freedesktop.org/drm/intel/-/issues/6134
> > https://gitlab.freedesktop.org/drm/intel/-/issues/6135
> > https://gitlab.freedesktop.org/drm/intel/-/issues/6136
> > https://gitlab.freedesktop.org/drm/intel/-/issues/6137
> >
> > First seen at
> > https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6496/git-log-oneline.txt
> > 58a5a2d5b lib/igt_kms: Set pipe->plane_primary to driver-assigned
> > primary plane when there are multiple possible primary planes 5b17cb8ea
> i915/gem_exec_gttfill: Added test description for test case.
> > ab8bfe267 i915/gem_pipe_control_store_loop: added description for test
> > case
> > 0e5b5c505 intel_gpu_top: Don't show client header if no kernel support
> >
> > Please revert asap or fix accordingly...
> 
> Hey Jani,
> 
> Thanks for the heads up -- seems that my patch is hitting a NULL dereference
> case because the display resources aren't guaranteed to be initialized in the `out`
> tag.
> 
> This patch should fix that issue:
> https://patchwork.freedesktop.org/series/104739/
Thanks. I see Ashutosh already merged and fixed at: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6506/git-log-oneline.txt 

> 
> Thanks,
> 
> Jessica Zhang
> 
> >
> > Br,
> > Jani
> >
> >> -----Original Message-----
> >> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of
> >> Petri Latvala
> >> Sent: maanantai 23. toukokuuta 2022 15.36
> >> To: Jessica Zhang <quic_jesszhan@quicinc.com>
> >> Cc: igt-dev@lists.freedesktop.org; quic_aravindh@quicinc.com;
> >> robdclark@chromium.org
> >> Subject: Re: [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set
> >> pipe->plane_primary to driver-assigned primary plane when there are
> >> multiple possible primary planes
> >>
> >> On Mon, May 16, 2022 at 06:37:12PM -0700, Jessica Zhang wrote:
> >>> Currently, IGT populates pipe->planes using possible_crtcs and
> >>> assumes that the first primary plane it encounters is the one being
> >>> actively used by the pipe.
> >>>
> >>> This is not always true in cases where there are multiple possible
> >>> primary planes. This will cause problems whenever IGT calls
> >>> drmModePageFlip since drmModePageFlip will use the primary plane
> >>> assigned to the pipe by the driver to perform the page flip [1]. So
> >>> a mismatch between the primary plane used by IGT and the driver can
> >>> cause the page flip to fail.
> >>>
> >>> To fix this, let's implement a helper method to get the primary
> >>> plane that's being assigned to the pipe by the driver. We can then
> >>> call it during igt_display_require() and, if there's a mismatch
> >>> between
> >>> pipe->plane_primary and the assigned primary plane's index, we can
> >>> pipe->swap
> >>> the unused primary plane with the driver-assigned primary plane
> >>>
> >>> [1]
> >>> https://gitlab.freedesktop.org/drm/msm/-/blob/msm-next/drivers/gpu/d
> >>> rm
> >>> /drm_plane.c#L1234
> >>>
> >>> Changes since v1:
> >>> - Instead of swapping the pointers of the planes within the array, we
> >>>    can just change the value of pipe->plane_primary.
> >>>
> >>> Changes since v2:
> >>> - Reverted `if (type == DRM_PLANE_TYPE_PRIMARY)` conditional then added
> >>>    a nested if statement to increment num_primary_planes if plane type is
> >>>    primary.
> >>>
> >>> Changes since v3:
> >>> - Created helper method igt_pipe_has_valid_output and added a check for
> >>>    if pipe has valid output before getting the output of a pipe to get
> >>>    the assigned primary plane
> >>> - Reverted back to using igt_swap to swap the order of the primary
> >>>    planes within the pipe->planes array. Some kms_* tests use
> >>>    igt_output_get_plane(output, 0) to get the primary plane, so this will
> >>>    avoid regressions in those tests.
> >>> - Updated the plane->index of the primary planes that are being swapped.
> >>>
> >>> Suggested-by: Rob Clark <robdclark@chromium.org>
> >>> Signed-off-by: Jessica Zhang <quic_jesszhan@quicinc.com>
> >>> ---
> >>>   lib/igt_kms.c | 110
> ++++++++++++++++++++++++++++++++++++++++++++++----
> >>>   lib/igt_kms.h |   1 +
> >>>   2 files changed, 103 insertions(+), 8 deletions(-)
> >>>
> >>> diff --git a/lib/igt_kms.c b/lib/igt_kms.c index
> >>> 7838ff283b62..a97e0b72d6cf 100644
> >>> --- a/lib/igt_kms.c
> >>> +++ b/lib/igt_kms.c
> >>> @@ -751,6 +751,52 @@ igt_fill_pipe_props(igt_display_t *display,
> >>> igt_pipe_t
> >> *pipe,
> >>>   	drmModeFreeObjectProperties(props);
> >>>   }
> >>>
> >>> +static igt_plane_t *igt_get_assigned_primary(igt_output_t *output,
> >>> +igt_pipe_t *pipe) {
> >>> +	int drm_fd = output->display->drm_fd;
> >>> +	drmModeModeInfo *mode;
> >>> +	struct igt_fb fb;
> >>> +	igt_plane_t *plane = NULL;
> >>> +	uint32_t crtc_id;
> >>> +	int i;
> >>> +
> >>> +	mode = igt_output_get_mode(output);
> >>> +
> >>> +	igt_create_color_fb(drm_fd, mode->hdisplay, mode->vdisplay,
> >>> +						DRM_FORMAT_XRGB8888,
> >>> +						DRM_FORMAT_MOD_LINEAR,
> >>> +						1.0, 1.0, 1.0, &fb);
> >>> +
> >>> +	crtc_id = pipe->crtc_id;
> >>> +
> >>> +	/*
> >>> +	 * Do a legacy SETCRTC to start things off, so that we know that
> >>> +	 * the kernel will pick the correct primary plane and attach it
> >>> +	 * to the CRTC. This lets us handle the case that there are
> >>> +	 * multiple primary planes (one per CRTC), but which can *also*
> >>> +	 * be attached to other CRTCs
> >>> +	 */
> >>> +	igt_assert(drmModeSetCrtc(output->display->drm_fd, crtc_id, fb.fb_id,
> >>> +							  0, 0, &output->id, 1,
> >> mode) == 0);
> >>> +
> >>> +	for(i = 0; i < pipe->n_planes; i++) {
> >>> +		if (pipe->planes[i].type != DRM_PLANE_TYPE_PRIMARY)
> >>> +			continue;
> >>> +
> >>> +		if (igt_plane_get_prop(&pipe->planes[i], IGT_PLANE_CRTC_ID) !=
> >> crtc_id)
> >>> +			continue;
> >>> +
> >>> +		plane = &pipe->planes[i];
> >>> +		break;
> >>> +	}
> >>> +
> >>> +	/* Removing the FB will also shut down the display for us: */
> >>> +	igt_remove_fb(drm_fd, &fb);
> >>> +	igt_assert_f(plane, "Valid assigned primary plane for CRTC_ID %d
> >>> +not found.\n", crtc_id);
> >>> +
> >>> +	return plane;
> >>> +}
> >>> +
> >>>   /**
> >>>    * kmstest_pipe_name:
> >>>    * @pipe: display pipe
> >>> @@ -2150,6 +2196,18 @@ __get_crtc_mask_for_pipe(drmModeRes
> >>> *resources,
> >> igt_pipe_t *pipe)
> >>>   	return (1 << offset);
> >>>   }
> >>>
> >>> +static bool igt_pipe_has_valid_output(igt_display_t *display, enum
> >>> +pipe pipe) {
> >>> +	igt_output_t *output;
> >>> +
> >>> +	igt_require_pipe(display, pipe);
> >>> +
> >>> +	for_each_valid_output_on_pipe(display, pipe, output)
> >>> +		return true;
> >>> +
> >>> +	return false;
> >>> +}
> >>> +
> >>>   /**
> >>>    * igt_display_require:
> >>>    * @display: a pointer to an #igt_display_t structure @@ -2272,6
> >>> +2330,7 @@ void igt_display_require(igt_display_t *display, int
> >>> +drm_fd)
> >>>   		pipe->plane_cursor = -1;
> >>>   		pipe->plane_primary = -1;
> >>>   		pipe->planes = NULL;
> >>> +		pipe->num_primary_planes = 0;
> >>>
> >>>   		igt_fill_pipe_props(display, pipe, IGT_NUM_CRTC_PROPS,
> >>> igt_crtc_prop_names);
> >>>
> >>> @@ -2306,12 +2365,20 @@ void igt_display_require(igt_display_t
> >>> *display, int
> >> drm_fd)
> >>>   				plane = &pipe->planes[0];
> >>>   				plane->index = 0;
> >>>   				pipe->plane_primary = 0;
> >>> +				pipe->num_primary_planes++;
> >>>   			} else if (type == DRM_PLANE_TYPE_CURSOR && pipe-
> plane_cursor
> >>> == -1) {
> >>>   				plane = &pipe->planes[last_plane];
> >>>   				plane->index = last_plane;
> >>>   				pipe->plane_cursor = last_plane;
> >>>   				display->has_cursor_plane = true;
> >>>   			} else {
> >>> +				/*
> >>> +				 * Increment num_primary_planes for any extra
> >>> +				 * primary plane found.
> >>> +				 */
> >>> +				if (type == DRM_PLANE_TYPE_PRIMARY)
> >>> +					pipe->num_primary_planes++;
> >>> +
> >>>   				plane = &pipe->planes[p];
> >>>   				plane->index = p++;
> >>>   			}
> >>> @@ -2392,6 +2459,39 @@ void igt_display_require(igt_display_t
> >>> *display, int drm_fd)
> >>>   out:
> >>>   	LOG_UNINDENT(display);
> >>>
> >>> +	for_each_pipe(display, i) {
> >>> +		igt_pipe_t *pipe = &display->pipes[i];
> >>> +
> >>> +		if (!igt_pipe_has_valid_output(display, i))
> >>> +			continue;
> >>> +
> >>> +		igt_output_t *output = igt_get_single_output_for_pipe(display,
> >>> +i);
> >>> +
> >>> +		if (pipe->num_primary_planes > 1) {
> >>> +			igt_plane_t *primary = &pipe->planes[pipe-
> >>> plane_primary];
> >>> +			igt_plane_t *assigned_primary =
> >> igt_get_assigned_primary(output, pipe);
> >>> +			int assigned_primary_index = assigned_primary->index;
> >>> +
> >>> +			/*
> >>> +			 * If the driver-assigned primary plane isn't at the
> >>> +			 * pipe->plane_primary index, swap it with the plane
> >>> +			 * that's currently at the plane_primary index and
> >>> +			 * update plane->index accordingly.
> >>> +			 *
> >>> +			 * This way, we can preserve pipe->plane_primary as 0
> >>> +			 * so that tests that assume pipe->plane_primary is
> always
> >> 0
> >>> +			 * won't break.
> >>> +			 */
> >>> +			if (assigned_primary_index != pipe->plane_primary) {
> >>> +				assigned_primary->index = pipe->plane_primary;
> >>> +				primary->index = assigned_primary_index;
> >>> +
> >>> +				igt_swap(pipe->planes[assigned_primary_index],
> >>> +						pipe->planes[pipe-
> >>> plane_primary]);
> >>> +			}
> >>> +		}
> >>> +	}
> >>> +
> >>>   	if (display->n_pipes && display->n_outputs)
> >>>   		igt_enable_connectors(drm_fd);
> >>>   	else
> >>> @@ -2438,14 +2538,8 @@ void igt_display_require_output(igt_display_t
> >> *display)
> >>>    */
> >>>   void igt_display_require_output_on_pipe(igt_display_t *display,
> >>> enum pipe pipe)  {
> >>> -	igt_output_t *output;
> >>> -
> >>> -	igt_require_pipe(display, pipe);
> >>> -
> >>> -	for_each_valid_output_on_pipe(display, pipe, output)
> >>> -		return;
> >>> -
> >>> -	igt_skip("No valid connector found on pipe %s\n",
> >> kmstest_pipe_name(pipe));
> >>> +	if (!igt_pipe_has_valid_output(display, pipe))
> >>> +		igt_skip("No valid connector found on pipe %s\n",
> >>> +kmstest_pipe_name(pipe));
> >>>   }
> >>>
> >>>   /**
> >>> diff --git a/lib/igt_kms.h b/lib/igt_kms.h index
> >>> e9ecd21e9824..4949b7b39e18 100644
> >>> --- a/lib/igt_kms.h
> >>> +++ b/lib/igt_kms.h
> >>> @@ -383,6 +383,7 @@ struct igt_pipe {
> >>>   	bool enabled;
> >>>
> >>>   	int n_planes;
> >>> +	int num_primary_planes;
> >>>   	int plane_cursor;
> >>>   	int plane_primary;
> >>>   	igt_plane_t *planes;
> >>> --
> >>> 2.31.0
> >>>
> >>
> >>
> >> The setcrtc dance is now only done when multiple primary planes are
> >> detected, good.
> >>
> >> Acked-by: Petri Latvala <petri.latvala@intel.com>

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

* Re: [igt-dev] Fwd: ✗ Fi.CI.IGT: failure for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6)
  2022-05-19 20:44     ` [igt-dev] Fwd: " Jessica Zhang
  2022-05-20  1:48       ` Vudum, Lakshminarayana
@ 2022-06-05  2:26       ` Dixit, Ashutosh
  2022-06-05  6:19         ` Abhinav Kumar
  1 sibling, 1 reply; 18+ messages in thread
From: Dixit, Ashutosh @ 2022-06-05  2:26 UTC (permalink / raw)
  To: Jessica Zhang; +Cc: igt-dev, Petri Latvala, lakshminarayana.vudum

On Thu, 19 May 2022 13:44:35 -0700, Jessica Zhang wrote:
>
>
>
> On 5/19/2022 1:34 PM, Jessica Zhang wrote:
> > Hi Lakshmi,
> >
> > I looked into this regression, but it doesn't seem to be related to my
> > patch. Can you help take a look at it?

It seems the failures were related after all and CI correctly caught
them. They should be properly investigated by both the author an committer
before merging a patch. This has resulted in multiple people wasting a
fair amount of their time and multiple bugs being filed as a result :/

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

* Re: [igt-dev] Fwd: ✗ Fi.CI.IGT: failure for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6)
  2022-06-05  2:26       ` Dixit, Ashutosh
@ 2022-06-05  6:19         ` Abhinav Kumar
  2022-06-05 15:19           ` Dixit, Ashutosh
  0 siblings, 1 reply; 18+ messages in thread
From: Abhinav Kumar @ 2022-06-05  6:19 UTC (permalink / raw)
  To: Dixit, Ashutosh, Jessica Zhang
  Cc: igt-dev, lakshminarayana.vudum, Petri Latvala

Hi Ashutosh

On 6/4/2022 7:26 PM, Dixit, Ashutosh wrote:
> On Thu, 19 May 2022 13:44:35 -0700, Jessica Zhang wrote:
>>
>>
>>
>> On 5/19/2022 1:34 PM, Jessica Zhang wrote:
>>> Hi Lakshmi,
>>>
>>> I looked into this regression, but it doesn't seem to be related to my
>>> patch. Can you help take a look at it?
> 
> It seems the failures were related after all and CI correctly caught
> them. They should be properly investigated by both the author an committer
> before merging a patch. This has resulted in multiple people wasting a
> fair amount of their time and multiple bugs being filed as a result :/

Please correct if we are missing something.

That time, CI had reported a different error. Please refer to the 
following CI report of the series:

https://patchwork.freedesktop.org/series/103897/#rev5

That we still think is unrelated to the change. Please comment if you 
think otherwise.

The issues reported by all the following bugs in Jani's email have a 
very clear and consistent signature of the SEG fault:

https://gitlab.freedesktop.org/drm/intel/issues/6133
https://gitlab.freedesktop.org/drm/intel/-/issues/6134
https://gitlab.freedesktop.org/drm/intel/-/issues/6135
https://gitlab.freedesktop.org/drm/intel/-/issues/6136
https://gitlab.freedesktop.org/drm/intel/-/issues/6137


Stack trace:
  #0 [fatal_sig_handler+0xd6]
  #1 [killpg+0x40]
  #2 [igt_display_require+0x260]
  #3 [__igt_unique____real_main318+0x3c8]
  #4 [main+0x34]
  #5 [__libc_start_main+0xf3]
  #6 [_start+0x2a]

If this signature was seen in the CI runs earlier of our patch series, 
this could have been easily fixed by us as it was not really very hard 
to fix once we saw this signature. So i think the CI run on our change 
always gave an unrelated error which is different from the other issues 
seen here.

Thanks

Abhinav

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

* Re: [igt-dev] Fwd: ✗ Fi.CI.IGT: failure for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6)
  2022-06-05  6:19         ` Abhinav Kumar
@ 2022-06-05 15:19           ` Dixit, Ashutosh
  0 siblings, 0 replies; 18+ messages in thread
From: Dixit, Ashutosh @ 2022-06-05 15:19 UTC (permalink / raw)
  To: Abhinav Kumar; +Cc: igt-dev, lakshminarayana.vudum, Petri Latvala

On Sat, 04 Jun 2022 23:19:51 -0700, Abhinav Kumar wrote:
>
> Hi Ashutosh
>
> On 6/4/2022 7:26 PM, Dixit, Ashutosh wrote:
> > On Thu, 19 May 2022 13:44:35 -0700, Jessica Zhang wrote:
> >>
> >>
> >>
> >> On 5/19/2022 1:34 PM, Jessica Zhang wrote:
> >>> Hi Lakshmi,
> >>>
> >>> I looked into this regression, but it doesn't seem to be related to my
> >>> patch. Can you help take a look at it?
> >
> > It seems the failures were related after all and CI correctly caught
> > them. They should be properly investigated by both the author an committer
> > before merging a patch. This has resulted in multiple people wasting a
> > fair amount of their time and multiple bugs being filed as a result :/
>
> Please correct if we are missing something.
>
> That time, CI had reported a different error. Please refer to the following
> CI report of the series:
>
> https://patchwork.freedesktop.org/series/103897/#rev5
>
> That we still think is unrelated to the change. Please comment if you think
> otherwise.
>
> The issues reported by all the following bugs in Jani's email have a very
> clear and consistent signature of the SEG fault:
>
> https://gitlab.freedesktop.org/drm/intel/issues/6133
> https://gitlab.freedesktop.org/drm/intel/-/issues/6134
> https://gitlab.freedesktop.org/drm/intel/-/issues/6135
> https://gitlab.freedesktop.org/drm/intel/-/issues/6136
> https://gitlab.freedesktop.org/drm/intel/-/issues/6137
>
>
> Stack trace:
>  #0 [fatal_sig_handler+0xd6]
>  #1 [killpg+0x40]
>  #2 [igt_display_require+0x260]
>  #3 [__igt_unique____real_main318+0x3c8]
>  #4 [main+0x34]
>  #5 [__libc_start_main+0xf3]
>  #6 [_start+0x2a]
>
> If this signature was seen in the CI runs earlier of our patch series, this
> could have been easily fixed by us as it was not really very hard to fix
> once we saw this signature. So i think the CI run on our change always gave
> an unrelated error which is different from the other issues seen here.

Hi Abhinav,

You appear to be correct. I was going by the clear PASS -> FAIL signatures
in CI but those failures indeed appear to be unrelated and it is the
igt_display_require() segfault above which is the signature for this
particular failure. That CI did not flag an obvious failure pre-merge is a
problem in itself, but in any case I cannot accuse you of not investigating
CI results so sorry about that.

Ashutosh

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

end of thread, other threads:[~2022-06-05 15:21 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-17  1:37 [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes Jessica Zhang
2022-05-17  2:17 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev4) Patchwork
2022-05-17 17:33 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev5) Patchwork
2022-05-17 19:45 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-05-18  0:38 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes (rev6) Patchwork
2022-05-18  8:16 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
     [not found]   ` <934c60df-1293-38d1-408e-ab1bb2c88ec6@quicinc.com>
2022-05-19 20:44     ` [igt-dev] Fwd: " Jessica Zhang
2022-05-20  1:48       ` Vudum, Lakshminarayana
2022-06-05  2:26       ` Dixit, Ashutosh
2022-06-05  6:19         ` Abhinav Kumar
2022-06-05 15:19           ` Dixit, Ashutosh
2022-05-20  1:21 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
2022-05-23 12:36 ` [igt-dev] [PATCH i-g-t v4] lib/igt_kms: Set pipe->plane_primary to driver-assigned primary plane when there are multiple possible primary planes Petri Latvala
2022-05-27 14:08   ` Mark Yacoub
2022-05-27 16:33     ` Abhinav Kumar
2022-06-03 16:30   ` Saarinen, Jani
2022-06-03 18:37     ` Jessica Zhang
2022-06-04  8:59       ` Saarinen, Jani

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.