All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v2] tests/api_intel_bb: Run misplaced-blitter only with supported engines
@ 2022-11-15  6:23 Karolina Stolarek
  2022-11-15  7:21 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2) Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Karolina Stolarek @ 2022-11-15  6:23 UTC (permalink / raw)
  To: igt-dev

The previous version of the test assumed a fixed set of engines
which might not be supported on some platforms. Make the test
more flexible when initializing the second engine instance in
context config. Skip the test altogether if there is no dedicated
copy engine.

Fixes: https://gitlab.freedesktop.org/drm/intel/-/issues/7493
Signed-off-by: Karolina Stolarek <karolina.stolarek@intel.com>
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---

v2:
  - Delete extra space in cfg.num_engines init
  - Remove unnecessary .engine_instance = 0 (they are already set to 0)
  - Fix typo in a comment

Patch tested on Trybot. The test now skips on elk and ilk, like expected:
https://patchwork.freedesktop.org/series/110846/

 tests/i915/api_intel_bb.c | 51 ++++++++++++++++++++++++++++-----------
 1 file changed, 37 insertions(+), 14 deletions(-)

diff --git a/tests/i915/api_intel_bb.c b/tests/i915/api_intel_bb.c
index d448f02d..f04a5931 100644
--- a/tests/i915/api_intel_bb.c
+++ b/tests/i915/api_intel_bb.c
@@ -1213,28 +1213,51 @@ static void full_batch(struct buf_ops *bops)
 	intel_bb_destroy(ibb);
 }

+static void require_engine(const intel_ctx_cfg_t *cfg, enum drm_i915_gem_engine_class class)
+{
+	int i, class_id = -1;
+
+	for (i = 0; i < cfg->num_engines; i++)
+		if (cfg->engines[i].engine_class == class)
+			class_id = i;
+
+	igt_require_f(class_id != -1, "Requested engine not supported\n");
+}
+
 static void misplaced_blitter(struct buf_ops *bops)
 {
 	int i915 = buf_ops_get_fd(bops), i;
 	struct intel_bb *ibb;
 	struct intel_buf *src, *dst;
 	uint64_t value, *psrc, *pdst;
-	int cmp;
+	int cmp, err;
+	const intel_ctx_t *ctx;
+	enum drm_i915_gem_engine_class engine_class;
+	intel_ctx_cfg_t cfg = {}, cfg_all_physical = intel_ctx_cfg_all_physical(i915);
+
+	/* Make sure we have a copy engine and something to misplace it with */
+	require_engine(&cfg_all_physical, I915_ENGINE_CLASS_COPY);
+	igt_require(cfg_all_physical.num_engines > 1);
+
+	/* Find a supported engine class which is not blitter */
+	for (i = 0; i < cfg_all_physical.num_engines; i++) {
+		engine_class = cfg_all_physical.engines[i].engine_class;
+
+		if (engine_class != I915_ENGINE_CLASS_COPY)
+			break;
+	}

 	/* Use custom configuration with blitter at index 0 */
-	const intel_ctx_cfg_t cfg = (intel_ctx_cfg_t) {
-			.num_engines = 2,
-			.engines = {
-				{ .engine_class = I915_ENGINE_CLASS_COPY,
-				  .engine_instance = 0
-				},
-				{ .engine_class = I915_ENGINE_CLASS_RENDER,
-				  .engine_instance = 0
-				},
-			},
-		};
-
-	const intel_ctx_t *ctx = intel_ctx_create(i915, &cfg);
+	cfg.engines[0] = (struct i915_engine_class_instance) {
+				.engine_class = I915_ENGINE_CLASS_COPY
+			};
+	cfg.engines[1] = (struct i915_engine_class_instance) {
+				.engine_class = engine_class,
+			};
+	cfg.num_engines = 2;
+
+	err = __intel_ctx_create(i915, &cfg, &ctx);
+	igt_assert_eq(err, 0);

 	ibb = intel_bb_create_with_context(i915, ctx->id, &ctx->cfg, PAGE_SIZE);

--
2.25.1

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2)
  2022-11-15  6:23 [igt-dev] [PATCH i-g-t v2] tests/api_intel_bb: Run misplaced-blitter only with supported engines Karolina Stolarek
@ 2022-11-15  7:21 ` Patchwork
  2022-11-15  9:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2022-11-15 18:37 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  2 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2022-11-15  7:21 UTC (permalink / raw)
  To: Karolina Stolarek; +Cc: igt-dev

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

== Series Details ==

Series: tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2)
URL   : https://patchwork.freedesktop.org/series/110765/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12379 -> IGTPW_8101
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (40 -> 38)
------------------------------

  Additional (1): fi-rkl-11600 
  Missing    (3): fi-hsw-4770 bat-atsm-1 fi-bdw-samus 

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

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

### IGT changes ###

#### Suppressed ####

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

  * igt@i915_pm_rpm@basic-rte:
    - {bat-adln-1}:       [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/bat-adln-1/igt@i915_pm_rpm@basic-rte.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/bat-adln-1/igt@i915_pm_rpm@basic-rte.html

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

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

### IGT changes ###

#### Issues hit ####

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

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

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

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

  * igt@i915_suspend@basic-s3-without-i915:
    - fi-rkl-11600:       NOTRUN -> [INCOMPLETE][7] ([i915#4817])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html
    - fi-icl-u2:          [PASS][8] -> [DMESG-WARN][9] ([i915#2867]) +8 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/fi-icl-u2/igt@i915_suspend@basic-s3-without-i915.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/fi-icl-u2/igt@i915_suspend@basic-s3-without-i915.html

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

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor:
    - fi-rkl-11600:       NOTRUN -> [SKIP][11] ([i915#4103])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html

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

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

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

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

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

  
#### Possible fixes ####

  * igt@fbdev@read:
    - {bat-rpls-2}:       [SKIP][17] ([i915#2582]) -> [PASS][18] +4 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/bat-rpls-2/igt@fbdev@read.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/bat-rpls-2/igt@fbdev@read.html

  * igt@gem_huc_copy@huc-copy:
    - {bat-dg2-8}:        [FAIL][19] ([i915#7029]) -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/bat-dg2-8/igt@gem_huc_copy@huc-copy.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/bat-dg2-8/igt@gem_huc_copy@huc-copy.html

  * igt@i915_pm_rpm@module-reload:
    - {bat-rpls-2}:       [DMESG-WARN][21] ([i915#6434]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/bat-rpls-2/igt@i915_pm_rpm@module-reload.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/bat-rpls-2/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@hugepages:
    - {bat-rpls-2}:       [DMESG-WARN][23] ([i915#5278]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/bat-rpls-2/igt@i915_selftest@live@hugepages.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/bat-rpls-2/igt@i915_selftest@live@hugepages.html

  * igt@i915_selftest@live@migrate:
    - {bat-adlp-6}:       [INCOMPLETE][25] ([i915#7348]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/bat-adlp-6/igt@i915_selftest@live@migrate.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/bat-adlp-6/igt@i915_selftest@live@migrate.html

  * igt@i915_selftest@live@requests:
    - {bat-rpls-1}:       [INCOMPLETE][27] ([i915#6257]) -> [PASS][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/bat-rpls-1/igt@i915_selftest@live@requests.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/bat-rpls-1/igt@i915_selftest@live@requests.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions:
    - fi-bsw-kefka:       [FAIL][29] ([i915#6298]) -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.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#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
  [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#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817
  [i915#5278]: https://gitlab.freedesktop.org/drm/intel/issues/5278
  [i915#6257]: https://gitlab.freedesktop.org/drm/intel/issues/6257
  [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298
  [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
  [i915#6434]: https://gitlab.freedesktop.org/drm/intel/issues/6434
  [i915#7029]: https://gitlab.freedesktop.org/drm/intel/issues/7029
  [i915#7348]: https://gitlab.freedesktop.org/drm/intel/issues/7348
  [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7056 -> IGTPW_8101

  CI-20190529: 20190529
  CI_DRM_12379: fbd41f5bba3fa2af510a37dadb4ef872e2c54701 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8101: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/index.html
  IGT_7056: 05096a6754048f4b5a2de798ab4bea32012b556a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

+igt@i915_pm_backlight@fade_with_dpms
+igt@i915_pm_backlight@fade_with_suspend
-igt@i915_pm_backlight@fade-with-dpms
-igt@i915_pm_backlight@fade-with-suspend

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2)
  2022-11-15  6:23 [igt-dev] [PATCH i-g-t v2] tests/api_intel_bb: Run misplaced-blitter only with supported engines Karolina Stolarek
  2022-11-15  7:21 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2) Patchwork
@ 2022-11-15  9:26 ` Patchwork
  2022-11-15  9:34   ` Karolina Stolarek
  2022-11-15 18:37 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  2 siblings, 1 reply; 7+ messages in thread
From: Patchwork @ 2022-11-15  9:26 UTC (permalink / raw)
  To: Karolina Stolarek; +Cc: igt-dev

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

== Series Details ==

Series: tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2)
URL   : https://patchwork.freedesktop.org/series/110765/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_12379_full -> IGTPW_8101_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8101_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8101_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_8101/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_8101_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1:
    - shard-snb:          [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-snb4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html

  
#### Suppressed ####

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

  * igt@gem_ppgtt@blt-vs-render-ctx0:
    - {shard-rkl}:        NOTRUN -> [FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gem_ppgtt@blt-vs-render-ctx0.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         [PASS][4] -> [SKIP][5] ([i915#658])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@feature_discovery@psr2.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@feature_discovery@psr2.html

  * igt@gem_ctx_persistence@engines-cleanup:
    - shard-snb:          NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb4/igt@gem_ctx_persistence@engines-cleanup.html

  * igt@gem_exec_params@secure-non-master:
    - shard-iclb:         NOTRUN -> [SKIP][7] ([fdo#112283])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@gem_exec_params@secure-non-master.html
    - shard-tglb:         NOTRUN -> [SKIP][8] ([fdo#112283])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb3/igt@gem_exec_params@secure-non-master.html

  * igt@gem_huc_copy@huc-copy:
    - shard-apl:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#2190])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@gem_huc_copy@huc-copy.html
    - shard-tglb:         NOTRUN -> [SKIP][10] ([i915#2190])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@gem_huc_copy@huc-copy.html
    - shard-glk:          NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#2190])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@gem_huc_copy@huc-copy.html
    - shard-iclb:         NOTRUN -> [SKIP][12] ([i915#2190])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-iclb:         NOTRUN -> [SKIP][13] ([i915#4613])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@gem_lmem_swapping@heavy-verify-multi.html
    - shard-apl:          NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4613]) +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl1/igt@gem_lmem_swapping@heavy-verify-multi.html
    - shard-tglb:         NOTRUN -> [SKIP][15] ([i915#4613])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@gem_lmem_swapping@heavy-verify-multi.html
    - shard-glk:          NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#4613])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@gem_lmem_swapping@heavy-verify-multi.html

  * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
    - shard-tglb:         NOTRUN -> [SKIP][17] ([i915#4270])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
    - shard-iclb:         NOTRUN -> [SKIP][18] ([i915#4270])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html

  * igt@gem_vm_create@invalid-create:
    - shard-snb:          NOTRUN -> [SKIP][19] ([fdo#109271]) +32 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb5/igt@gem_vm_create@invalid-create.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-iclb:         [PASS][20] -> [FAIL][21] ([i915#3989] / [i915#454])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_selftest@live@hangcheck:
    - shard-tglb:         [PASS][22] -> [DMESG-WARN][23] ([i915#5591])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb3/igt@i915_selftest@live@hangcheck.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb3/igt@i915_selftest@live@hangcheck.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - shard-snb:          [PASS][24] -> [DMESG-WARN][25] ([i915#4528])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][26] ([i915#5584])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-iclb:         NOTRUN -> [SKIP][27] ([i915#5286])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
    - shard-tglb:         NOTRUN -> [SKIP][28] ([i915#5286])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][29] ([i915#3689])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][30] ([fdo#109271]) +43 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl8/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html

  * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#3886])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
    - shard-glk:          NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#3886])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
    - shard-iclb:         NOTRUN -> [SKIP][33] ([fdo#109278] / [i915#3886])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][34] ([fdo#111615] / [i915#3689])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html

  * igt@kms_chamelium@hdmi-edid-change-during-suspend:
    - shard-apl:          NOTRUN -> [SKIP][35] ([fdo#109271] / [fdo#111827]) +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@kms_chamelium@hdmi-edid-change-during-suspend.html

  * igt@kms_chamelium@vga-hpd-for-each-pipe:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([fdo#109284] / [fdo#111827]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_chamelium@vga-hpd-for-each-pipe.html

  * igt@kms_color_chamelium@ctm-blue-to-red:
    - shard-snb:          NOTRUN -> [SKIP][37] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb4/igt@kms_color_chamelium@ctm-blue-to-red.html
    - shard-tglb:         NOTRUN -> [SKIP][38] ([fdo#109284] / [fdo#111827]) +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_color_chamelium@ctm-blue-to-red.html
    - shard-glk:          NOTRUN -> [SKIP][39] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@kms_color_chamelium@ctm-blue-to-red.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size:
    - shard-tglb:         NOTRUN -> [SKIP][40] ([fdo#109274] / [fdo#111825]) +5 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa@legacy:
    - shard-iclb:         NOTRUN -> [SKIP][41] ([fdo#109274]) +5 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][42] ([i915#2672] / [i915#3555]) +2 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][43] ([i915#3555]) +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([i915#2587] / [i915#2672])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([i915#2587] / [i915#2672]) +3 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][46] ([i915#2672]) +2 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([i915#6497])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([fdo#109280] / [fdo#111825]) +4 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-glk:          NOTRUN -> [SKIP][49] ([fdo#109271]) +13 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-iclb:         NOTRUN -> [SKIP][50] ([fdo#109280]) +4 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
    - shard-apl:          [PASS][51] -> [DMESG-WARN][52] ([i915#180])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-apl7/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][53] ([fdo#112054] / [i915#5288])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1:
    - shard-iclb:         NOTRUN -> [SKIP][54] ([i915#3536]) +2 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html

  * igt@kms_psr@psr2_cursor_blt:
    - shard-iclb:         [PASS][55] -> [SKIP][56] ([fdo#109441]) +3 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@kms_psr@psr2_cursor_blt.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-tglb:         [PASS][57] -> [SKIP][58] ([i915#5519])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-iclb:         [PASS][59] -> [SKIP][60] ([i915#5519])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_vblank@pipe-d-wait-busy:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109278])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_vblank@pipe-d-wait-busy.html

  
#### Possible fixes ####

  * igt@gem_exec_balancer@parallel:
    - shard-iclb:         [SKIP][62] ([i915#4525]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb5/igt@gem_exec_balancer@parallel.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][64] ([i915#2842]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-glk:          [FAIL][66] ([i915#2842]) -> [PASS][67] +4 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_reloc@basic-write-read-noreloc:
    - {shard-rkl}:        [SKIP][68] ([i915#3281]) -> [PASS][69] +3 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-noreloc.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html

  * igt@gem_readwrite@beyond-eob:
    - {shard-rkl}:        [SKIP][70] ([i915#3282]) -> [PASS][71] +2 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@gem_readwrite@beyond-eob.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gem_readwrite@beyond-eob.html

  * igt@gen9_exec_parse@bb-start-out:
    - {shard-rkl}:        [SKIP][72] ([i915#2527]) -> [PASS][73] +1 similar issue
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@gen9_exec_parse@bb-start-out.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html

  * igt@i915_pm_backlight@basic-brightness:
    - {shard-rkl}:        [SKIP][74] ([i915#3012]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-5/igt@i915_pm_backlight@basic-brightness.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_pm_dc@dc5-psr:
    - shard-iclb:         [FAIL][76] ([i915#3989]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb8/igt@i915_pm_dc@dc5-psr.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@i915_pm_dc@dc5-psr.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [FAIL][78] ([i915#3989] / [i915#454]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@i915_pm_dc@dc6-psr.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_rpm@modeset-lpsp:
    - {shard-rkl}:        [SKIP][80] ([i915#1397]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-5/igt@i915_pm_rpm@modeset-lpsp.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html

  * igt@i915_pm_rps@min-max-config-idle:
    - {shard-rkl}:        [FAIL][82] -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-6/igt@i915_pm_rps@min-max-config-idle.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-1/igt@i915_pm_rps@min-max-config-idle.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1:
    - shard-glk:          [INCOMPLETE][84] ([i915#5584]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - {shard-rkl}:        [SKIP][86] ([i915#1845] / [i915#4098]) -> [PASS][87] +16 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_cursor_legacy@flip-vs-cursor@atomic:
    - shard-tglb:         [FAIL][88] ([i915#7405]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor@atomic.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_cursor_legacy@flip-vs-cursor@atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
    - shard-glk:          [FAIL][90] ([i915#2346]) -> [PASS][91]
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor@toggle:
    - shard-tglb:         [FAIL][92] ([i915#2346]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
    - shard-glk:          [FAIL][94] ([i915#79]) -> [PASS][95] +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
    - shard-iclb:         [FAIL][96] ([i915#2546]) -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
    - {shard-rkl}:        [SKIP][98] ([i915#1849] / [i915#4098]) -> [PASS][99] +16 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1:
    - shard-iclb:         [SKIP][100] ([i915#5235]) -> [PASS][101] +8 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [SKIP][102] ([fdo#109441]) -> [PASS][103] +1 similar issue
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb8/igt@kms_psr@psr2_no_drrs.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_universal_plane@cursor-fb-leak-pipe-b:
    - {shard-rkl}:        [SKIP][104] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html

  * igt@kms_vblank@pipe-a-query-idle-hang:
    - shard-apl:          [SKIP][106] ([fdo#109271]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-apl3/igt@kms_vblank@pipe-a-query-idle-hang.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@kms_vblank@pipe-a-query-idle-hang.html
    - shard-glk:          [SKIP][108] ([fdo#109271]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk7/igt@kms_vblank@pipe-a-query-idle-hang.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@kms_vblank@pipe-a-query-idle-hang.html

  * igt@kms_vblank@pipe-a-wait-busy-hang:
    - shard-glk:          [DMESG-WARN][110] ([i915#118]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk2/igt@kms_vblank@pipe-a-wait-busy-hang.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@kms_vblank@pipe-a-wait-busy-hang.html

  * igt@perf_pmu@busy-idle-check-all@vecs0:
    - {shard-dg1}:        [FAIL][112] ([i915#4521]) -> [PASS][113] +2 similar issues
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-dg1-12/igt@perf_pmu@busy-idle-check-all@vecs0.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vecs0.html

  * igt@prime_vgem@basic-fence-read:
    - {shard-rkl}:        [SKIP][114] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@prime_vgem@basic-fence-read.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@prime_vgem@basic-fence-read.html

  * igt@testdisplay:
    - {shard-rkl}:        [SKIP][116] ([i915#4098]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@testdisplay.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@testdisplay.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-iclb:         [SKIP][118] ([i915#4525]) -> [FAIL][119] ([i915#6117])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
    - shard-iclb:         [SKIP][120] ([i915#2920]) -> [SKIP][121] ([i915#658])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-iclb:         [SKIP][122] ([fdo#111068] / [i915#658]) -> [SKIP][123] ([i915#2920])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb3/igt@kms_psr2_sf@cursor-plane-update-sf.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-iclb:         [SKIP][124] ([i915#658]) -> [SKIP][125] ([i915#2920])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-iclb:         [SKIP][126] ([i915#2920]) -> [SKIP][127] ([fdo#111068] / [i915#658])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.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#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#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [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#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
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [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#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
  [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#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532
  [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [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#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [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#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
  [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#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#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [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#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
  [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#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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
  [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#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4855]: https://gitlab.freedesktop.org/drm/intel/issues/4855
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [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#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5584]: https://gitlab.freedesktop.org/drm/intel/issues/5584
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
  [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
  [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7405]: https://gitlab.freedesktop.org/drm/intel/issues/7405
  [i915#7468]: https://gitlab.freedesktop.org/drm/intel/issues/7468
  [i915#7478]: https://gitlab.freedesktop.org/drm/intel/issues/7478
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7056 -> IGTPW_8101
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12379: fbd41f5bba3fa2af510a37dadb4ef872e2c54701 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8101: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/index.html
  IGT_7056: 05096a6754048f4b5a2de798ab4bea32012b556a @ 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_8101/index.html

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2)
  2022-11-15  9:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-11-15  9:34   ` Karolina Stolarek
  2022-11-15 10:49     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 7+ messages in thread
From: Karolina Stolarek @ 2022-11-15  9:34 UTC (permalink / raw)
  To: igt-dev; +Cc: Vudum, Lakshminarayana

On 15.11.2022 10:26, Patchwork wrote:
> *Patch Details*
> *Series:*	tests/api_intel_bb: Run misplaced-blitter only with supported 
> engines (rev2)
> *URL:*	https://patchwork.freedesktop.org/series/110765/ 
> <https://patchwork.freedesktop.org/series/110765/>
> *State:*	failure
> *Details:* 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/index.html 
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/index.html>
> 
> 
>   CI Bug Log - changes from CI_DRM_12379_full -> IGTPW_8101_full
> 
> 
>     Summary
> 
> *FAILURE*
> 
> Serious unknown changes coming with IGTPW_8101_full absolutely need to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_8101_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_8101/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_8101_full:
> 
> 
>       IGT changes
> 
> 
>         Possible regressions
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1:
>       o shard-snb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-snb4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html>
>         -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html>

This regression is not related to my changes.

Thanks,
Karolina

> 
>         Suppressed
> 
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
> 
>   * igt@gem_ppgtt@blt-vs-render-ctx0:
>       o {shard-rkl}: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gem_ppgtt@blt-vs-render-ctx0.html>
> 
> 
>     Known issues
> 
> Here are the changes found in IGTPW_8101_full that come from known issues:
> 
> 
>       IGT changes
> 
> 
>         Issues hit
> 
>   *
> 
>     igt@feature_discovery@psr2:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@feature_discovery@psr2.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@feature_discovery@psr2.html>
>         (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>   *
> 
>     igt@gem_ctx_persistence@engines-cleanup:
> 
>       o shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb4/igt@gem_ctx_persistence@engines-cleanup.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#1099 <https://gitlab.freedesktop.org/drm/intel/issues/1099>)
>   *
> 
>     igt@gem_exec_params@secure-non-master:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@gem_exec_params@secure-non-master.html>
>         (fdo#112283 <https://bugs.freedesktop.org/show_bug.cgi?id=112283>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb3/igt@gem_exec_params@secure-non-master.html>
>         (fdo#112283 <https://bugs.freedesktop.org/show_bug.cgi?id=112283>)
> 
>   *
> 
>     igt@gem_huc_copy@huc-copy:
> 
>       o
> 
>         shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@gem_huc_copy@huc-copy.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@gem_huc_copy@huc-copy.html>
>         (i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@gem_huc_copy@huc-copy.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@gem_huc_copy@huc-copy.html>
>         (i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
> 
>   *
> 
>     igt@gem_lmem_swapping@heavy-verify-multi:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@gem_lmem_swapping@heavy-verify-multi.html>
>         (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> 
>       o
> 
>         shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl1/igt@gem_lmem_swapping@heavy-verify-multi.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#4613
>         <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1
>         similar issue
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@gem_lmem_swapping@heavy-verify-multi.html>
>         (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@gem_lmem_swapping@heavy-verify-multi.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> 
>   *
> 
>     igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html>
>         (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html>
>         (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
> 
>   *
> 
>     igt@gem_vm_create@invalid-create:
> 
>       o shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb5/igt@gem_vm_create@invalid-create.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +32
>         similar issues
>   *
> 
>     igt@i915_pm_dc@dc6-dpms:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html>
>         (i915#3989
>         <https://gitlab.freedesktop.org/drm/intel/issues/3989> /
>         i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>)
>   *
> 
>     igt@i915_selftest@live@hangcheck:
> 
>       o shard-tglb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb3/igt@i915_selftest@live@hangcheck.html>
>         -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb3/igt@i915_selftest@live@hangcheck.html>
>         (i915#5591 <https://gitlab.freedesktop.org/drm/intel/issues/5591>)
>   *
> 
>     igt@i915_suspend@basic-s2idle-without-i915:
> 
>       o shard-snb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html>
>         -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html>
>         (i915#4528 <https://gitlab.freedesktop.org/drm/intel/issues/4528>)
>   *
> 
>     igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2:
> 
>       o shard-glk: NOTRUN -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2.html>
>         (i915#5584 <https://gitlab.freedesktop.org/drm/intel/issues/5584>)
>   *
> 
>     igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
>         (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
>         (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>)
> 
>   *
> 
>     igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs.html>
>         (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>)
>   *
> 
>     igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl8/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +43
>         similar issues
>   *
> 
>     igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
> 
>       o
> 
>         shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html>
>         (fdo#109278
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109278> /
>         i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
> 
>   *
> 
>     igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html>
>         (fdo#111615
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
>         i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>)
>   *
> 
>     igt@kms_chamelium@hdmi-edid-change-during-suspend:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@kms_chamelium@hdmi-edid-change-during-suspend.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         fdo#111827
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2
>         similar issues
>   *
> 
>     igt@kms_chamelium@vga-hpd-for-each-pipe:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_chamelium@vga-hpd-for-each-pipe.html>
>         (fdo#109284
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
>         fdo#111827
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1
>         similar issue
>   *
> 
>     igt@kms_color_chamelium@ctm-blue-to-red:
> 
>       o
> 
>         shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb4/igt@kms_color_chamelium@ctm-blue-to-red.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         fdo#111827
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1
>         similar issue
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_color_chamelium@ctm-blue-to-red.html>
>         (fdo#109284
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
>         fdo#111827
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1
>         similar issue
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@kms_color_chamelium@ctm-blue-to-red.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         fdo#111827
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1
>         similar issue
> 
>   *
> 
>     igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html>
>         (fdo#109274
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109274> /
>         fdo#111825
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +5
>         similar issues
>   *
> 
>     igt@kms_cursor_legacy@cursorb-vs-flipa@legacy:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html>
>         (fdo#109274
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +5
>         similar issues
>   *
> 
>     igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html>
>         (i915#2672
>         <https://gitlab.freedesktop.org/drm/intel/issues/2672> /
>         i915#3555
>         <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +2
>         similar issues
>   *
> 
>     igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html>
>         (i915#3555
>         <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1
>         similar issue
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html>
>         (i915#2587
>         <https://gitlab.freedesktop.org/drm/intel/issues/2587> /
>         i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>)
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html>
>         (i915#2587
>         <https://gitlab.freedesktop.org/drm/intel/issues/2587> /
>         i915#2672
>         <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +3
>         similar issues
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html>
>         (i915#2672
>         <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2
>         similar issues
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html>
>         (i915#6497 <https://gitlab.freedesktop.org/drm/intel/issues/6497>)
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html>
>         (fdo#109280
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109280> /
>         fdo#111825
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +4
>         similar issues
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:
> 
>       o shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +13
>         similar issues
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html>
>         (fdo#109280
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +4
>         similar issues
>   *
> 
>     igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-apl7/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html>
>         -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html>
>         (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>   *
> 
>     igt@kms_plane_lowres@tiling-yf:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@kms_plane_lowres@tiling-yf.html>
>         (fdo#112054
>         <https://bugs.freedesktop.org/show_bug.cgi?id=112054> /
>         i915#5288 <https://gitlab.freedesktop.org/drm/intel/issues/5288>)
>   *
> 
>     igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html>
>         (i915#3536
>         <https://gitlab.freedesktop.org/drm/intel/issues/3536>) +2
>         similar issues
>   *
> 
>     igt@kms_psr@psr2_cursor_blt:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@kms_psr@psr2_cursor_blt.html>
>         (fdo#109441
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +3
>         similar issues
>   *
> 
>     igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
> 
>       o
> 
>         shard-tglb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>         (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>)
> 
>       o
> 
>         shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>         (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>)
> 
>   *
> 
>     igt@kms_vblank@pipe-d-wait-busy:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_vblank@pipe-d-wait-busy.html>
>         (fdo#109278 <https://bugs.freedesktop.org/show_bug.cgi?id=109278>)
> 
> 
>         Possible fixes
> 
>   *
> 
>     igt@gem_exec_balancer@parallel:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb5/igt@gem_exec_balancer@parallel.html>
>         (i915#4525
>         <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@gem_exec_balancer@parallel.html>
>   *
> 
>     igt@gem_exec_fair@basic-flow@rcs0:
> 
>       o shard-tglb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html>
>         (i915#2842
>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html>
>   *
> 
>     igt@gem_exec_fair@basic-pace@vcs0:
> 
>       o shard-glk: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html>
>         (i915#2842
>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html>
>         +4 similar issues
>   *
> 
>     igt@gem_exec_reloc@basic-write-read-noreloc:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-noreloc.html>
>         (i915#3281
>         <https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html>
>         +3 similar issues
>   *
> 
>     igt@gem_readwrite@beyond-eob:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@gem_readwrite@beyond-eob.html>
>         (i915#3282
>         <https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gem_readwrite@beyond-eob.html>
>         +2 similar issues
>   *
> 
>     igt@gen9_exec_parse@bb-start-out:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@gen9_exec_parse@bb-start-out.html>
>         (i915#2527
>         <https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html>
>         +1 similar issue
>   *
> 
>     igt@i915_pm_backlight@basic-brightness:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-5/igt@i915_pm_backlight@basic-brightness.html>
>         (i915#3012
>         <https://gitlab.freedesktop.org/drm/intel/issues/3012>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@i915_pm_backlight@basic-brightness.html>
>   *
> 
>     igt@i915_pm_dc@dc5-psr:
> 
>       o shard-iclb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb8/igt@i915_pm_dc@dc5-psr.html>
>         (i915#3989
>         <https://gitlab.freedesktop.org/drm/intel/issues/3989>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@i915_pm_dc@dc5-psr.html>
>   *
> 
>     igt@i915_pm_dc@dc6-psr:
> 
>       o shard-iclb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@i915_pm_dc@dc6-psr.html>
>         (i915#3989
>         <https://gitlab.freedesktop.org/drm/intel/issues/3989> /
>         i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>)
>         -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@i915_pm_dc@dc6-psr.html>
>   *
> 
>     igt@i915_pm_rpm@modeset-lpsp:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-5/igt@i915_pm_rpm@modeset-lpsp.html>
>         (i915#1397
>         <https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html>
>   *
> 
>     igt@i915_pm_rps@min-max-config-idle:
> 
>       o {shard-rkl}: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-6/igt@i915_pm_rps@min-max-config-idle.html>
>         -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-1/igt@i915_pm_rps@min-max-config-idle.html>
>   *
> 
>     igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1:
> 
>       o shard-glk: INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html>
>         (i915#5584
>         <https://gitlab.freedesktop.org/drm/intel/issues/5584>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html>
>   *
> 
>     igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html>
>         (i915#1845
>         <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
>         i915#4098
>         <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html>
>         +16 similar issues
>   *
> 
>     igt@kms_cursor_legacy@flip-vs-cursor@atomic:
> 
>       o shard-tglb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor@atomic.html>
>         (i915#7405
>         <https://gitlab.freedesktop.org/drm/intel/issues/7405>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_cursor_legacy@flip-vs-cursor@atomic.html>
>   *
> 
>     igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
> 
>       o shard-glk: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html>
>         (i915#2346
>         <https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html>
>   *
> 
>     igt@kms_cursor_legacy@flip-vs-cursor@toggle:
> 
>       o shard-tglb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html>
>         (i915#2346
>         <https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html>
>   *
> 
>     igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
> 
>       o shard-glk: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html>
>         (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>         -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html>
>         +1 similar issue
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
> 
>       o shard-iclb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html>
>         (i915#2546
>         <https://gitlab.freedesktop.org/drm/intel/issues/2546>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html>
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html>
>         (i915#1849
>         <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
>         i915#4098
>         <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html>
>         +16 similar issues
>   *
> 
>     igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html>
>         (i915#5235
>         <https://gitlab.freedesktop.org/drm/intel/issues/5235>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html>
>         +8 similar issues
>   *
> 
>     igt@kms_psr@psr2_no_drrs:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb8/igt@kms_psr@psr2_no_drrs.html>
>         (fdo#109441
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr@psr2_no_drrs.html>
>         +1 similar issue
>   *
> 
>     igt@kms_universal_plane@cursor-fb-leak-pipe-b:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html>
>         (i915#1845
>         <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
>         i915#4070 <https://gitlab.freedesktop.org/drm/intel/issues/4070>
>         / i915#4098
>         <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html>
>   *
> 
>     igt@kms_vblank@pipe-a-query-idle-hang:
> 
>       o
> 
>         shard-apl: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-apl3/igt@kms_vblank@pipe-a-query-idle-hang.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@kms_vblank@pipe-a-query-idle-hang.html>
> 
>       o
> 
>         shard-glk: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk7/igt@kms_vblank@pipe-a-query-idle-hang.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@kms_vblank@pipe-a-query-idle-hang.html>
> 
>   *
> 
>     igt@kms_vblank@pipe-a-wait-busy-hang:
> 
>       o shard-glk: DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk2/igt@kms_vblank@pipe-a-wait-busy-hang.html>
>         (i915#118 <https://gitlab.freedesktop.org/drm/intel/issues/118>)
>         -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@kms_vblank@pipe-a-wait-busy-hang.html>
>   *
> 
>     igt@perf_pmu@busy-idle-check-all@vecs0:
> 
>       o {shard-dg1}: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-dg1-12/igt@perf_pmu@busy-idle-check-all@vecs0.html>
>         (i915#4521
>         <https://gitlab.freedesktop.org/drm/intel/issues/4521>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vecs0.html>
>         +2 similar issues
>   *
> 
>     igt@prime_vgem@basic-fence-read:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@prime_vgem@basic-fence-read.html>
>         (fdo#109295
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109295> /
>         i915#3291 <https://gitlab.freedesktop.org/drm/intel/issues/3291>
>         / i915#3708
>         <https://gitlab.freedesktop.org/drm/intel/issues/3708>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@prime_vgem@basic-fence-read.html>
>   *
> 
>     igt@testdisplay:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@testdisplay.html>
>         (i915#4098
>         <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@testdisplay.html>
> 
> 
>         Warnings
> 
>   *
> 
>     igt@gem_exec_balancer@parallel-ordering:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html>
>         (i915#4525
>         <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html>
>         (i915#6117 <https://gitlab.freedesktop.org/drm/intel/issues/6117>)
>   *
> 
>     igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html>
>         (i915#2920
>         <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html>
>         (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>   *
> 
>     igt@kms_psr2_sf@cursor-plane-update-sf:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb3/igt@kms_psr2_sf@cursor-plane-update-sf.html>
>         (fdo#111068
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658
>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html>
>         (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>   *
> 
>     igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html>
>         (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html>
>         (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>   *
> 
>     igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html>
>         (i915#2920
>         <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html>
>         (fdo#111068
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658
>         <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> 
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> 
>     Build changes
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7056 -> IGTPW_8101
>   * Piglit: piglit_4509 -> None
> 
> CI-20190529: 20190529
> CI_DRM_12379: fbd41f5bba3fa2af510a37dadb4ef872e2c54701 @ 
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_8101: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/index.html
> IGT_7056: 05096a6754048f4b5a2de798ab4bea32012b556a @ 
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> git://anongit.freedesktop.org/piglit
> 

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2)
  2022-11-15  9:34   ` Karolina Stolarek
@ 2022-11-15 10:49     ` Vudum, Lakshminarayana
  2022-11-15 15:45       ` Karolina Stolarek
  0 siblings, 1 reply; 7+ messages in thread
From: Vudum, Lakshminarayana @ 2022-11-15 10:49 UTC (permalink / raw)
  To: Stolarek, Karolina, igt-dev

For some reason I am unable to load the failure.

-----Original Message-----
From: Stolarek, Karolina <karolina.stolarek@intel.com> 
Sent: Tuesday, November 15, 2022 11:35 AM
To: igt-dev@lists.freedesktop.org
Cc: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2)

On 15.11.2022 10:26, Patchwork wrote:
> *Patch Details*
> *Series:*	tests/api_intel_bb: Run misplaced-blitter only with supported 
> engines (rev2)
> *URL:*	https://patchwork.freedesktop.org/series/110765/ 
> <https://patchwork.freedesktop.org/series/110765/>
> *State:*	failure
> *Details:*
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/index.html
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/index.html>
> 
> 
>   CI Bug Log - changes from CI_DRM_12379_full -> IGTPW_8101_full
> 
> 
>     Summary
> 
> *FAILURE*
> 
> Serious unknown changes coming with IGTPW_8101_full absolutely need to 
> be verified manually.
> 
> If you think the reported changes have nothing to do with the changes 
> introduced in IGTPW_8101_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_8101/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_8101_full:
> 
> 
>       IGT changes
> 
> 
>         Possible regressions
> 
>   * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1:
>       o shard-snb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-snb4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html>
>         -> INCOMPLETE
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb6/igt@km
> s_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html>

This regression is not related to my changes.

Thanks,
Karolina

> 
>         Suppressed
> 
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
> 
>   * igt@gem_ppgtt@blt-vs-render-ctx0:
>       o {shard-rkl}: NOTRUN -> FAIL
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@g
> em_ppgtt@blt-vs-render-ctx0.html>
> 
> 
>     Known issues
> 
> Here are the changes found in IGTPW_8101_full that come from known issues:
> 
> 
>       IGT changes
> 
> 
>         Issues hit
> 
>   *
> 
>     igt@feature_discovery@psr2:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@feature_discovery@psr2.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@feature_discovery@psr2.html>
>         (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>   *
> 
>     igt@gem_ctx_persistence@engines-cleanup:
> 
>       o shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb4/igt@gem_ctx_persistence@engines-cleanup.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#1099 <https://gitlab.freedesktop.org/drm/intel/issues/1099>)
>   *
> 
>     igt@gem_exec_params@secure-non-master:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@gem_exec_params@secure-non-master.html>
>         (fdo#112283 
> <https://bugs.freedesktop.org/show_bug.cgi?id=112283>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb3/igt@gem_exec_params@secure-non-master.html>
>         (fdo#112283 
> <https://bugs.freedesktop.org/show_bug.cgi?id=112283>)
> 
>   *
> 
>     igt@gem_huc_copy@huc-copy:
> 
>       o
> 
>         shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@gem_huc_copy@huc-copy.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#2190 
> <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@gem_huc_copy@huc-copy.html>
>         (i915#2190 
> <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@gem_huc_copy@huc-copy.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#2190 
> <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@gem_huc_copy@huc-copy.html>
>         (i915#2190 
> <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
> 
>   *
> 
>     igt@gem_lmem_swapping@heavy-verify-multi:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@gem_lmem_swapping@heavy-verify-multi.html>
>         (i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> 
>       o
> 
>         shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl1/igt@gem_lmem_swapping@heavy-verify-multi.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#4613
>         <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1
>         similar issue
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@gem_lmem_swapping@heavy-verify-multi.html>
>         (i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@gem_lmem_swapping@heavy-verify-multi.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#4613 
> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> 
>   *
> 
>     igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html>
>         (i915#4270 
> <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html>
>         (i915#4270 
> <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
> 
>   *
> 
>     igt@gem_vm_create@invalid-create:
> 
>       o shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb5/igt@gem_vm_create@invalid-create.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +32
>         similar issues
>   *
> 
>     igt@i915_pm_dc@dc6-dpms:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html>
>         (i915#3989
>         <https://gitlab.freedesktop.org/drm/intel/issues/3989> /
>         i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>)
>   *
> 
>     igt@i915_selftest@live@hangcheck:
> 
>       o shard-tglb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb3/igt@i915_selftest@live@hangcheck.html>
>         -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb3/igt@i915_selftest@live@hangcheck.html>
>         (i915#5591 <https://gitlab.freedesktop.org/drm/intel/issues/5591>)
>   *
> 
>     igt@i915_suspend@basic-s2idle-without-i915:
> 
>       o shard-snb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html>
>         -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html>
>         (i915#4528 <https://gitlab.freedesktop.org/drm/intel/issues/4528>)
>   *
> 
>     igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2:
> 
>       o shard-glk: NOTRUN -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2.html>
>         (i915#5584 <https://gitlab.freedesktop.org/drm/intel/issues/5584>)
>   *
> 
>     igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
>         (i915#5286 
> <https://gitlab.freedesktop.org/drm/intel/issues/5286>)
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
>         (i915#5286 
> <https://gitlab.freedesktop.org/drm/intel/issues/5286>)
> 
>   *
> 
>     igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs.html>
>         (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>)
>   *
> 
>     igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl8/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +43
>         similar issues
>   *
> 
>     igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
> 
>       o
> 
>         shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#3886 
> <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#3886 
> <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
> 
>       o
> 
>         shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html>
>         (fdo#109278
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109278> /
>         i915#3886 
> <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
> 
>   *
> 
>     igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html>
>         (fdo#111615
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
>         i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>)
>   *
> 
>     igt@kms_chamelium@hdmi-edid-change-during-suspend:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@kms_chamelium@hdmi-edid-change-during-suspend.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         fdo#111827
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2
>         similar issues
>   *
> 
>     igt@kms_chamelium@vga-hpd-for-each-pipe:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_chamelium@vga-hpd-for-each-pipe.html>
>         (fdo#109284
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
>         fdo#111827
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1
>         similar issue
>   *
> 
>     igt@kms_color_chamelium@ctm-blue-to-red:
> 
>       o
> 
>         shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb4/igt@kms_color_chamelium@ctm-blue-to-red.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         fdo#111827
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1
>         similar issue
> 
>       o
> 
>         shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_color_chamelium@ctm-blue-to-red.html>
>         (fdo#109284
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
>         fdo#111827
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1
>         similar issue
> 
>       o
> 
>         shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@kms_color_chamelium@ctm-blue-to-red.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         fdo#111827
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1
>         similar issue
> 
>   *
> 
>     igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html>
>         (fdo#109274
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109274> /
>         fdo#111825
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +5
>         similar issues
>   *
> 
>     igt@kms_cursor_legacy@cursorb-vs-flipa@legacy:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html>
>         (fdo#109274
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +5
>         similar issues
>   *
> 
>     igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html>
>         (i915#2672
>         <https://gitlab.freedesktop.org/drm/intel/issues/2672> /
>         i915#3555
>         <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +2
>         similar issues
>   *
> 
>     igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html>
>         (i915#3555
>         <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1
>         similar issue
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html>
>         (i915#2587
>         <https://gitlab.freedesktop.org/drm/intel/issues/2587> /
>         i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>)
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html>
>         (i915#2587
>         <https://gitlab.freedesktop.org/drm/intel/issues/2587> /
>         i915#2672
>         <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +3
>         similar issues
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html>
>         (i915#2672
>         <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2
>         similar issues
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html>
>         (i915#6497 <https://gitlab.freedesktop.org/drm/intel/issues/6497>)
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html>
>         (fdo#109280
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109280> /
>         fdo#111825
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +4
>         similar issues
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:
> 
>       o shard-glk: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +13
>         similar issues
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html>
>         (fdo#109280
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +4
>         similar issues
>   *
> 
>     igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-apl7/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html>
>         -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html>
>         (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>   *
> 
>     igt@kms_plane_lowres@tiling-yf:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@kms_plane_lowres@tiling-yf.html>
>         (fdo#112054
>         <https://bugs.freedesktop.org/show_bug.cgi?id=112054> /
>         i915#5288 <https://gitlab.freedesktop.org/drm/intel/issues/5288>)
>   *
> 
>     igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html>
>         (i915#3536
>         <https://gitlab.freedesktop.org/drm/intel/issues/3536>) +2
>         similar issues
>   *
> 
>     igt@kms_psr@psr2_cursor_blt:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@kms_psr@psr2_cursor_blt.html>
>         (fdo#109441
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +3
>         similar issues
>   *
> 
>     igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
> 
>       o
> 
>         shard-tglb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>         (i915#5519 
> <https://gitlab.freedesktop.org/drm/intel/issues/5519>)
> 
>       o
> 
>         shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>         (i915#5519 
> <https://gitlab.freedesktop.org/drm/intel/issues/5519>)
> 
>   *
> 
>     igt@kms_vblank@pipe-d-wait-busy:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_vblank@pipe-d-wait-busy.html>
>         (fdo#109278 
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278>)
> 
> 
>         Possible fixes
> 
>   *
> 
>     igt@gem_exec_balancer@parallel:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb5/igt@gem_exec_balancer@parallel.html>
>         (i915#4525
>         <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@gem_exec_balancer@parallel.html>
>   *
> 
>     igt@gem_exec_fair@basic-flow@rcs0:
> 
>       o shard-tglb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html>
>         (i915#2842
>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html>
>   *
> 
>     igt@gem_exec_fair@basic-pace@vcs0:
> 
>       o shard-glk: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html>
>         (i915#2842
>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html>
>         +4 similar issues
>   *
> 
>     igt@gem_exec_reloc@basic-write-read-noreloc:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-noreloc.html>
>         (i915#3281
>         <https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html>
>         +3 similar issues
>   *
> 
>     igt@gem_readwrite@beyond-eob:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@gem_readwrite@beyond-eob.html>
>         (i915#3282
>         <https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gem_readwrite@beyond-eob.html>
>         +2 similar issues
>   *
> 
>     igt@gen9_exec_parse@bb-start-out:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@gen9_exec_parse@bb-start-out.html>
>         (i915#2527
>         <https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html>
>         +1 similar issue
>   *
> 
>     igt@i915_pm_backlight@basic-brightness:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-5/igt@i915_pm_backlight@basic-brightness.html>
>         (i915#3012
>         <https://gitlab.freedesktop.org/drm/intel/issues/3012>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@i915_pm_backlight@basic-brightness.html>
>   *
> 
>     igt@i915_pm_dc@dc5-psr:
> 
>       o shard-iclb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb8/igt@i915_pm_dc@dc5-psr.html>
>         (i915#3989
>         <https://gitlab.freedesktop.org/drm/intel/issues/3989>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@i915_pm_dc@dc5-psr.html>
>   *
> 
>     igt@i915_pm_dc@dc6-psr:
> 
>       o shard-iclb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@i915_pm_dc@dc6-psr.html>
>         (i915#3989
>         <https://gitlab.freedesktop.org/drm/intel/issues/3989> /
>         i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>)
>         -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@i915_pm_dc@dc6-psr.html>
>   *
> 
>     igt@i915_pm_rpm@modeset-lpsp:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-5/igt@i915_pm_rpm@modeset-lpsp.html>
>         (i915#1397
>         <https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html>
>   *
> 
>     igt@i915_pm_rps@min-max-config-idle:
> 
>       o {shard-rkl}: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-6/igt@i915_pm_rps@min-max-config-idle.html>
>         -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-1/igt@i915_pm_rps@min-max-config-idle.html>
>   *
> 
>     igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1:
> 
>       o shard-glk: INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html>
>         (i915#5584
>         <https://gitlab.freedesktop.org/drm/intel/issues/5584>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html>
>   *
> 
>     igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html>
>         (i915#1845
>         <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
>         i915#4098
>         <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html>
>         +16 similar issues
>   *
> 
>     igt@kms_cursor_legacy@flip-vs-cursor@atomic:
> 
>       o shard-tglb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor@atomic.html>
>         (i915#7405
>         <https://gitlab.freedesktop.org/drm/intel/issues/7405>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_cursor_legacy@flip-vs-cursor@atomic.html>
>   *
> 
>     igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
> 
>       o shard-glk: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html>
>         (i915#2346
>         <https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html>
>   *
> 
>     igt@kms_cursor_legacy@flip-vs-cursor@toggle:
> 
>       o shard-tglb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html>
>         (i915#2346
>         <https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html>
>   *
> 
>     igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
> 
>       o shard-glk: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html>
>         (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>         -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html>
>         +1 similar issue
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
> 
>       o shard-iclb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html>
>         (i915#2546
>         <https://gitlab.freedesktop.org/drm/intel/issues/2546>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html>
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html>
>         (i915#1849
>         <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
>         i915#4098
>         <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html>
>         +16 similar issues
>   *
> 
>     igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html>
>         (i915#5235
>         <https://gitlab.freedesktop.org/drm/intel/issues/5235>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html>
>         +8 similar issues
>   *
> 
>     igt@kms_psr@psr2_no_drrs:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb8/igt@kms_psr@psr2_no_drrs.html>
>         (fdo#109441
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr@psr2_no_drrs.html>
>         +1 similar issue
>   *
> 
>     igt@kms_universal_plane@cursor-fb-leak-pipe-b:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html>
>         (i915#1845
>         <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
>         i915#4070 <https://gitlab.freedesktop.org/drm/intel/issues/4070>
>         / i915#4098
>         <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html>
>   *
> 
>     igt@kms_vblank@pipe-a-query-idle-hang:
> 
>       o
> 
>         shard-apl: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-apl3/igt@kms_vblank@pipe-a-query-idle-hang.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@km
> s_vblank@pipe-a-query-idle-hang.html>
> 
>       o
> 
>         shard-glk: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk7/igt@kms_vblank@pipe-a-query-idle-hang.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@km
> s_vblank@pipe-a-query-idle-hang.html>
> 
>   *
> 
>     igt@kms_vblank@pipe-a-wait-busy-hang:
> 
>       o shard-glk: DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk2/igt@kms_vblank@pipe-a-wait-busy-hang.html>
>         (i915#118 <https://gitlab.freedesktop.org/drm/intel/issues/118>)
>         -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@kms_vblank@pipe-a-wait-busy-hang.html>
>   *
> 
>     igt@perf_pmu@busy-idle-check-all@vecs0:
> 
>       o {shard-dg1}: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-dg1-12/igt@perf_pmu@busy-idle-check-all@vecs0.html>
>         (i915#4521
>         <https://gitlab.freedesktop.org/drm/intel/issues/4521>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vecs0.html>
>         +2 similar issues
>   *
> 
>     igt@prime_vgem@basic-fence-read:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@prime_vgem@basic-fence-read.html>
>         (fdo#109295
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109295> /
>         i915#3291 <https://gitlab.freedesktop.org/drm/intel/issues/3291>
>         / i915#3708
>         <https://gitlab.freedesktop.org/drm/intel/issues/3708>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@prime_vgem@basic-fence-read.html>
>   *
> 
>     igt@testdisplay:
> 
>       o {shard-rkl}: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@testdisplay.html>
>         (i915#4098
>         <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
>         
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@t
> estdisplay.html>
> 
> 
>         Warnings
> 
>   *
> 
>     igt@gem_exec_balancer@parallel-ordering:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html>
>         (i915#4525
>         <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html>
>         (i915#6117 <https://gitlab.freedesktop.org/drm/intel/issues/6117>)
>   *
> 
>     igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html>
>         (i915#2920
>         <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html>
>         (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>   *
> 
>     igt@kms_psr2_sf@cursor-plane-update-sf:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb3/igt@kms_psr2_sf@cursor-plane-update-sf.html>
>         (fdo#111068
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658
>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html>
>         (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>   *
> 
>     igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html>
>         (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html>
>         (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>   *
> 
>     igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html>
>         (i915#2920
>         <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html>
>         (fdo#111068
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658
>         <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> 
> {name}: This element is suppressed. This means it is ignored when 
> computing the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> 
>     Build changes
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_7056 -> IGTPW_8101
>   * Piglit: piglit_4509 -> None
> 
> CI-20190529: 20190529
> CI_DRM_12379: fbd41f5bba3fa2af510a37dadb4ef872e2c54701 @ 
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_8101: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/index.html
> IGT_7056: 05096a6754048f4b5a2de798ab4bea32012b556a @ 
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> git://anongit.freedesktop.org/piglit
> 

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2)
  2022-11-15 10:49     ` Vudum, Lakshminarayana
@ 2022-11-15 15:45       ` Karolina Stolarek
  0 siblings, 0 replies; 7+ messages in thread
From: Karolina Stolarek @ 2022-11-15 15:45 UTC (permalink / raw)
  To: Vudum, Lakshminarayana; +Cc: igt-dev

On 15.11.2022 11:49, Vudum, Lakshminarayana wrote:
> For some reason I am unable to load the failure.

Maybe it needed more time to sync the files, I can see the logs now:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html

All the best,
Karolina

> -----Original Message-----
> From: Stolarek, Karolina <karolina.stolarek@intel.com>
> Sent: Tuesday, November 15, 2022 11:35 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
> Subject: Re: ✗ Fi.CI.IGT: failure for tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2)
> 
> On 15.11.2022 10:26, Patchwork wrote:
>> *Patch Details*
>> *Series:*	tests/api_intel_bb: Run misplaced-blitter only with supported
>> engines (rev2)
>> *URL:*	https://patchwork.freedesktop.org/series/110765/
>> <https://patchwork.freedesktop.org/series/110765/>
>> *State:*	failure
>> *Details:*
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/index.html
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/index.html>
>>
>>
>>    CI Bug Log - changes from CI_DRM_12379_full -> IGTPW_8101_full
>>
>>
>>      Summary
>>
>> *FAILURE*
>>
>> Serious unknown changes coming with IGTPW_8101_full absolutely need to
>> be verified manually.
>>
>> If you think the reported changes have nothing to do with the changes
>> introduced in IGTPW_8101_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_8101/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_8101_full:
>>
>>
>>        IGT changes
>>
>>
>>          Possible regressions
>>
>>    * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1:
>>        o shard-snb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-snb4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html>
>>          -> INCOMPLETE
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb6/igt@km
>> s_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html>
> 
> This regression is not related to my changes.
> 
> Thanks,
> Karolina
> 
>>
>>          Suppressed
>>
>> The following results come from untrusted machines, tests, or statuses.
>> They do not affect the overall result.
>>
>>    * igt@gem_ppgtt@blt-vs-render-ctx0:
>>        o {shard-rkl}: NOTRUN -> FAIL
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@g
>> em_ppgtt@blt-vs-render-ctx0.html>
>>
>>
>>      Known issues
>>
>> Here are the changes found in IGTPW_8101_full that come from known issues:
>>
>>
>>        IGT changes
>>
>>
>>          Issues hit
>>
>>    *
>>
>>      igt@feature_discovery@psr2:
>>
>>        o shard-iclb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@feature_discovery@psr2.html>
>>          -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@feature_discovery@psr2.html>
>>          (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>>    *
>>
>>      igt@gem_ctx_persistence@engines-cleanup:
>>
>>        o shard-snb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb4/igt@gem_ctx_persistence@engines-cleanup.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>          i915#1099 <https://gitlab.freedesktop.org/drm/intel/issues/1099>)
>>    *
>>
>>      igt@gem_exec_params@secure-non-master:
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@gem_exec_params@secure-non-master.html>
>>          (fdo#112283
>> <https://bugs.freedesktop.org/show_bug.cgi?id=112283>)
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb3/igt@gem_exec_params@secure-non-master.html>
>>          (fdo#112283
>> <https://bugs.freedesktop.org/show_bug.cgi?id=112283>)
>>
>>    *
>>
>>      igt@gem_huc_copy@huc-copy:
>>
>>        o
>>
>>          shard-apl: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@gem_huc_copy@huc-copy.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>          i915#2190
>> <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@gem_huc_copy@huc-copy.html>
>>          (i915#2190
>> <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
>>
>>        o
>>
>>          shard-glk: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@gem_huc_copy@huc-copy.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>          i915#2190
>> <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@gem_huc_copy@huc-copy.html>
>>          (i915#2190
>> <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
>>
>>    *
>>
>>      igt@gem_lmem_swapping@heavy-verify-multi:
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@gem_lmem_swapping@heavy-verify-multi.html>
>>          (i915#4613
>> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>>
>>        o
>>
>>          shard-apl: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl1/igt@gem_lmem_swapping@heavy-verify-multi.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>          i915#4613
>>          <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1
>>          similar issue
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@gem_lmem_swapping@heavy-verify-multi.html>
>>          (i915#4613
>> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>>
>>        o
>>
>>          shard-glk: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@gem_lmem_swapping@heavy-verify-multi.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>          i915#4613
>> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>>
>>    *
>>
>>      igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html>
>>          (i915#4270
>> <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html>
>>          (i915#4270
>> <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
>>
>>    *
>>
>>      igt@gem_vm_create@invalid-create:
>>
>>        o shard-snb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb5/igt@gem_vm_create@invalid-create.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +32
>>          similar issues
>>    *
>>
>>      igt@i915_pm_dc@dc6-dpms:
>>
>>        o shard-iclb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html>
>>          -> FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html>
>>          (i915#3989
>>          <https://gitlab.freedesktop.org/drm/intel/issues/3989> /
>>          i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>)
>>    *
>>
>>      igt@i915_selftest@live@hangcheck:
>>
>>        o shard-tglb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb3/igt@i915_selftest@live@hangcheck.html>
>>          -> DMESG-WARN
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb3/igt@i915_selftest@live@hangcheck.html>
>>          (i915#5591 <https://gitlab.freedesktop.org/drm/intel/issues/5591>)
>>    *
>>
>>      igt@i915_suspend@basic-s2idle-without-i915:
>>
>>        o shard-snb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html>
>>          -> DMESG-WARN
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html>
>>          (i915#4528 <https://gitlab.freedesktop.org/drm/intel/issues/4528>)
>>    *
>>
>>      igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2:
>>
>>        o shard-glk: NOTRUN -> INCOMPLETE
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2.html>
>>          (i915#5584 <https://gitlab.freedesktop.org/drm/intel/issues/5584>)
>>    *
>>
>>      igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
>>          (i915#5286
>> <https://gitlab.freedesktop.org/drm/intel/issues/5286>)
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
>>          (i915#5286
>> <https://gitlab.freedesktop.org/drm/intel/issues/5286>)
>>
>>    *
>>
>>      igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs.html>
>>          (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>)
>>    *
>>
>>      igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs:
>>
>>        o shard-apl: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl8/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +43
>>          similar issues
>>    *
>>
>>      igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
>>
>>        o
>>
>>          shard-apl: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>          i915#3886
>> <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
>>
>>        o
>>
>>          shard-glk: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>          i915#3886
>> <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
>>
>>        o
>>
>>          shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html>
>>          (fdo#109278
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109278> /
>>          i915#3886
>> <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
>>
>>    *
>>
>>      igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html>
>>          (fdo#111615
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
>>          i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689>)
>>    *
>>
>>      igt@kms_chamelium@hdmi-edid-change-during-suspend:
>>
>>        o shard-apl: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@kms_chamelium@hdmi-edid-change-during-suspend.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>          fdo#111827
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +2
>>          similar issues
>>    *
>>
>>      igt@kms_chamelium@vga-hpd-for-each-pipe:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_chamelium@vga-hpd-for-each-pipe.html>
>>          (fdo#109284
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
>>          fdo#111827
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1
>>          similar issue
>>    *
>>
>>      igt@kms_color_chamelium@ctm-blue-to-red:
>>
>>        o
>>
>>          shard-snb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb4/igt@kms_color_chamelium@ctm-blue-to-red.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>          fdo#111827
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1
>>          similar issue
>>
>>        o
>>
>>          shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_color_chamelium@ctm-blue-to-red.html>
>>          (fdo#109284
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
>>          fdo#111827
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1
>>          similar issue
>>
>>        o
>>
>>          shard-glk: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@kms_color_chamelium@ctm-blue-to-red.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>          fdo#111827
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1
>>          similar issue
>>
>>    *
>>
>>      igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html>
>>          (fdo#109274
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109274> /
>>          fdo#111825
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +5
>>          similar issues
>>    *
>>
>>      igt@kms_cursor_legacy@cursorb-vs-flipa@legacy:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html>
>>          (fdo#109274
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +5
>>          similar issues
>>    *
>>
>>      igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html>
>>          (i915#2672
>>          <https://gitlab.freedesktop.org/drm/intel/issues/2672> /
>>          i915#3555
>>          <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +2
>>          similar issues
>>    *
>>
>>      igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html>
>>          (i915#3555
>>          <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1
>>          similar issue
>>    *
>>
>>      igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html>
>>          (i915#2587
>>          <https://gitlab.freedesktop.org/drm/intel/issues/2587> /
>>          i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>)
>>    *
>>
>>      igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html>
>>          (i915#2587
>>          <https://gitlab.freedesktop.org/drm/intel/issues/2587> /
>>          i915#2672
>>          <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +3
>>          similar issues
>>    *
>>
>>      igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html>
>>          (i915#2672
>>          <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2
>>          similar issues
>>    *
>>
>>      igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html>
>>          (i915#6497 <https://gitlab.freedesktop.org/drm/intel/issues/6497>)
>>    *
>>
>>      igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html>
>>          (fdo#109280
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109280> /
>>          fdo#111825
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +4
>>          similar issues
>>    *
>>
>>      igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:
>>
>>        o shard-glk: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +13
>>          similar issues
>>    *
>>
>>      igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html>
>>          (fdo#109280
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +4
>>          similar issues
>>    *
>>
>>      igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
>>
>>        o shard-apl: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-apl7/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html>
>>          -> DMESG-WARN
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html>
>>          (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>>    *
>>
>>      igt@kms_plane_lowres@tiling-yf:
>>
>>        o shard-tglb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@kms_plane_lowres@tiling-yf.html>
>>          (fdo#112054
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=112054> /
>>          i915#5288 <https://gitlab.freedesktop.org/drm/intel/issues/5288>)
>>    *
>>
>>      igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html>
>>          (i915#3536
>>          <https://gitlab.freedesktop.org/drm/intel/issues/3536>) +2
>>          similar issues
>>    *
>>
>>      igt@kms_psr@psr2_cursor_blt:
>>
>>        o shard-iclb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html>
>>          -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@kms_psr@psr2_cursor_blt.html>
>>          (fdo#109441
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +3
>>          similar issues
>>    *
>>
>>      igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>>
>>        o
>>
>>          shard-tglb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>>          -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>>          (i915#5519
>> <https://gitlab.freedesktop.org/drm/intel/issues/5519>)
>>
>>        o
>>
>>          shard-iclb: PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>>          -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>>          (i915#5519
>> <https://gitlab.freedesktop.org/drm/intel/issues/5519>)
>>
>>    *
>>
>>      igt@kms_vblank@pipe-d-wait-busy:
>>
>>        o shard-iclb: NOTRUN -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_vblank@pipe-d-wait-busy.html>
>>          (fdo#109278
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109278>)
>>
>>
>>          Possible fixes
>>
>>    *
>>
>>      igt@gem_exec_balancer@parallel:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb5/igt@gem_exec_balancer@parallel.html>
>>          (i915#4525
>>          <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@gem_exec_balancer@parallel.html>
>>    *
>>
>>      igt@gem_exec_fair@basic-flow@rcs0:
>>
>>        o shard-tglb: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html>
>>          (i915#2842
>>          <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html>
>>    *
>>
>>      igt@gem_exec_fair@basic-pace@vcs0:
>>
>>        o shard-glk: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html>
>>          (i915#2842
>>          <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html>
>>          +4 similar issues
>>    *
>>
>>      igt@gem_exec_reloc@basic-write-read-noreloc:
>>
>>        o {shard-rkl}: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-noreloc.html>
>>          (i915#3281
>>          <https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html>
>>          +3 similar issues
>>    *
>>
>>      igt@gem_readwrite@beyond-eob:
>>
>>        o {shard-rkl}: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@gem_readwrite@beyond-eob.html>
>>          (i915#3282
>>          <https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gem_readwrite@beyond-eob.html>
>>          +2 similar issues
>>    *
>>
>>      igt@gen9_exec_parse@bb-start-out:
>>
>>        o {shard-rkl}: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@gen9_exec_parse@bb-start-out.html>
>>          (i915#2527
>>          <https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html>
>>          +1 similar issue
>>    *
>>
>>      igt@i915_pm_backlight@basic-brightness:
>>
>>        o {shard-rkl}: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-5/igt@i915_pm_backlight@basic-brightness.html>
>>          (i915#3012
>>          <https://gitlab.freedesktop.org/drm/intel/issues/3012>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@i915_pm_backlight@basic-brightness.html>
>>    *
>>
>>      igt@i915_pm_dc@dc5-psr:
>>
>>        o shard-iclb: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb8/igt@i915_pm_dc@dc5-psr.html>
>>          (i915#3989
>>          <https://gitlab.freedesktop.org/drm/intel/issues/3989>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@i915_pm_dc@dc5-psr.html>
>>    *
>>
>>      igt@i915_pm_dc@dc6-psr:
>>
>>        o shard-iclb: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@i915_pm_dc@dc6-psr.html>
>>          (i915#3989
>>          <https://gitlab.freedesktop.org/drm/intel/issues/3989> /
>>          i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>)
>>          -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@i915_pm_dc@dc6-psr.html>
>>    *
>>
>>      igt@i915_pm_rpm@modeset-lpsp:
>>
>>        o {shard-rkl}: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-5/igt@i915_pm_rpm@modeset-lpsp.html>
>>          (i915#1397
>>          <https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html>
>>    *
>>
>>      igt@i915_pm_rps@min-max-config-idle:
>>
>>        o {shard-rkl}: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-6/igt@i915_pm_rps@min-max-config-idle.html>
>>          -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-1/igt@i915_pm_rps@min-max-config-idle.html>
>>    *
>>
>>      igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1:
>>
>>        o shard-glk: INCOMPLETE
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html>
>>          (i915#5584
>>          <https://gitlab.freedesktop.org/drm/intel/issues/5584>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html>
>>    *
>>
>>      igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
>>
>>        o {shard-rkl}: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html>
>>          (i915#1845
>>          <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
>>          i915#4098
>>          <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html>
>>          +16 similar issues
>>    *
>>
>>      igt@kms_cursor_legacy@flip-vs-cursor@atomic:
>>
>>        o shard-tglb: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor@atomic.html>
>>          (i915#7405
>>          <https://gitlab.freedesktop.org/drm/intel/issues/7405>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_cursor_legacy@flip-vs-cursor@atomic.html>
>>    *
>>
>>      igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
>>
>>        o shard-glk: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html>
>>          (i915#2346
>>          <https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html>
>>    *
>>
>>      igt@kms_cursor_legacy@flip-vs-cursor@toggle:
>>
>>        o shard-tglb: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html>
>>          (i915#2346
>>          <https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html>
>>    *
>>
>>      igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
>>
>>        o shard-glk: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html>
>>          (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>>          -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html>
>>          +1 similar issue
>>    *
>>
>>      igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
>>
>>        o shard-iclb: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html>
>>          (i915#2546
>>          <https://gitlab.freedesktop.org/drm/intel/issues/2546>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html>
>>    *
>>
>>      igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
>>
>>        o {shard-rkl}: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html>
>>          (i915#1849
>>          <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
>>          i915#4098
>>          <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html>
>>          +16 similar issues
>>    *
>>
>>      igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html>
>>          (i915#5235
>>          <https://gitlab.freedesktop.org/drm/intel/issues/5235>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html>
>>          +8 similar issues
>>    *
>>
>>      igt@kms_psr@psr2_no_drrs:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb8/igt@kms_psr@psr2_no_drrs.html>
>>          (fdo#109441
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr@psr2_no_drrs.html>
>>          +1 similar issue
>>    *
>>
>>      igt@kms_universal_plane@cursor-fb-leak-pipe-b:
>>
>>        o {shard-rkl}: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html>
>>          (i915#1845
>>          <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
>>          i915#4070 <https://gitlab.freedesktop.org/drm/intel/issues/4070>
>>          / i915#4098
>>          <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html>
>>    *
>>
>>      igt@kms_vblank@pipe-a-query-idle-hang:
>>
>>        o
>>
>>          shard-apl: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-apl3/igt@kms_vblank@pipe-a-query-idle-hang.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@km
>> s_vblank@pipe-a-query-idle-hang.html>
>>
>>        o
>>
>>          shard-glk: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk7/igt@kms_vblank@pipe-a-query-idle-hang.html>
>>          (fdo#109271
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@km
>> s_vblank@pipe-a-query-idle-hang.html>
>>
>>    *
>>
>>      igt@kms_vblank@pipe-a-wait-busy-hang:
>>
>>        o shard-glk: DMESG-WARN
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk2/igt@kms_vblank@pipe-a-wait-busy-hang.html>
>>          (i915#118 <https://gitlab.freedesktop.org/drm/intel/issues/118>)
>>          -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@kms_vblank@pipe-a-wait-busy-hang.html>
>>    *
>>
>>      igt@perf_pmu@busy-idle-check-all@vecs0:
>>
>>        o {shard-dg1}: FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-dg1-12/igt@perf_pmu@busy-idle-check-all@vecs0.html>
>>          (i915#4521
>>          <https://gitlab.freedesktop.org/drm/intel/issues/4521>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vecs0.html>
>>          +2 similar issues
>>    *
>>
>>      igt@prime_vgem@basic-fence-read:
>>
>>        o {shard-rkl}: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@prime_vgem@basic-fence-read.html>
>>          (fdo#109295
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=109295> /
>>          i915#3291 <https://gitlab.freedesktop.org/drm/intel/issues/3291>
>>          / i915#3708
>>          <https://gitlab.freedesktop.org/drm/intel/issues/3708>) -> PASS
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@prime_vgem@basic-fence-read.html>
>>    *
>>
>>      igt@testdisplay:
>>
>>        o {shard-rkl}: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@testdisplay.html>
>>          (i915#4098
>>          <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
>>          
>> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@t
>> estdisplay.html>
>>
>>
>>          Warnings
>>
>>    *
>>
>>      igt@gem_exec_balancer@parallel-ordering:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html>
>>          (i915#4525
>>          <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> FAIL
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html>
>>          (i915#6117 <https://gitlab.freedesktop.org/drm/intel/issues/6117>)
>>    *
>>
>>      igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html>
>>          (i915#2920
>>          <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html>
>>          (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>>    *
>>
>>      igt@kms_psr2_sf@cursor-plane-update-sf:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb3/igt@kms_psr2_sf@cursor-plane-update-sf.html>
>>          (fdo#111068
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658
>>          <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html>
>>          (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>>    *
>>
>>      igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html>
>>          (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>>          -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html>
>>          (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>>    *
>>
>>      igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
>>
>>        o shard-iclb: SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html>
>>          (i915#2920
>>          <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP
>>          <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html>
>>          (fdo#111068
>>          <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658
>>          <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>>
>> {name}: This element is suppressed. This means it is ignored when
>> computing the status of the difference (SUCCESS, WARNING, or FAILURE).
>>
>>
>>      Build changes
>>
>>    * CI: CI-20190529 -> None
>>    * IGT: IGT_7056 -> IGTPW_8101
>>    * Piglit: piglit_4509 -> None
>>
>> CI-20190529: 20190529
>> CI_DRM_12379: fbd41f5bba3fa2af510a37dadb4ef872e2c54701 @
>> git://anongit.freedesktop.org/gfx-ci/linux
>> IGTPW_8101:
>> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/index.html
>> IGT_7056: 05096a6754048f4b5a2de798ab4bea32012b556a @
>> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
>> git://anongit.freedesktop.org/piglit
>>

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2)
  2022-11-15  6:23 [igt-dev] [PATCH i-g-t v2] tests/api_intel_bb: Run misplaced-blitter only with supported engines Karolina Stolarek
  2022-11-15  7:21 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2) Patchwork
  2022-11-15  9:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-11-15 18:37 ` Patchwork
  2 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2022-11-15 18:37 UTC (permalink / raw)
  To: Karolina Stolarek; +Cc: igt-dev

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

== Series Details ==

Series: tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2)
URL   : https://patchwork.freedesktop.org/series/110765/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12379_full -> IGTPW_8101_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/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_8101_full:

### IGT changes ###

#### Suppressed ####

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

  * igt@gem_ppgtt@blt-vs-render-ctx0:
    - {shard-rkl}:        NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gem_ppgtt@blt-vs-render-ctx0.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         [PASS][2] -> [SKIP][3] ([i915#658])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@feature_discovery@psr2.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@feature_discovery@psr2.html

  * igt@gem_ctx_persistence@engines-cleanup:
    - shard-snb:          NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb4/igt@gem_ctx_persistence@engines-cleanup.html

  * igt@gem_exec_params@secure-non-master:
    - shard-iclb:         NOTRUN -> [SKIP][5] ([fdo#112283])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@gem_exec_params@secure-non-master.html
    - shard-tglb:         NOTRUN -> [SKIP][6] ([fdo#112283])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb3/igt@gem_exec_params@secure-non-master.html

  * igt@gem_huc_copy@huc-copy:
    - shard-apl:          NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#2190])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@gem_huc_copy@huc-copy.html
    - shard-tglb:         NOTRUN -> [SKIP][8] ([i915#2190])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@gem_huc_copy@huc-copy.html
    - shard-glk:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#2190])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@gem_huc_copy@huc-copy.html
    - shard-iclb:         NOTRUN -> [SKIP][10] ([i915#2190])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-iclb:         NOTRUN -> [SKIP][11] ([i915#4613])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@gem_lmem_swapping@heavy-verify-multi.html
    - shard-apl:          NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#4613]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl1/igt@gem_lmem_swapping@heavy-verify-multi.html
    - shard-tglb:         NOTRUN -> [SKIP][13] ([i915#4613])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@gem_lmem_swapping@heavy-verify-multi.html
    - shard-glk:          NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4613])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@gem_lmem_swapping@heavy-verify-multi.html

  * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
    - shard-tglb:         NOTRUN -> [SKIP][15] ([i915#4270])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
    - shard-iclb:         NOTRUN -> [SKIP][16] ([i915#4270])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html

  * igt@gem_vm_create@invalid-create:
    - shard-snb:          NOTRUN -> [SKIP][17] ([fdo#109271]) +32 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb5/igt@gem_vm_create@invalid-create.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-iclb:         [PASS][18] -> [FAIL][19] ([i915#3989] / [i915#454])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_selftest@live@hangcheck:
    - shard-tglb:         [PASS][20] -> [DMESG-WARN][21] ([i915#5591])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb3/igt@i915_selftest@live@hangcheck.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb3/igt@i915_selftest@live@hangcheck.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - shard-snb:          [PASS][22] -> [DMESG-WARN][23] ([i915#4528])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2:
    - shard-glk:          NOTRUN -> [INCOMPLETE][24] ([i915#5584])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-iclb:         NOTRUN -> [SKIP][25] ([i915#5286])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
    - shard-tglb:         NOTRUN -> [SKIP][26] ([i915#5286])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][27] ([i915#3689])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs.html

  * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][28] ([fdo#109271]) +43 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl8/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html

  * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#3886])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
    - shard-glk:          NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#3886])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
    - shard-iclb:         NOTRUN -> [SKIP][31] ([fdo#109278] / [i915#3886])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][32] ([fdo#111615] / [i915#3689])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html

  * igt@kms_chamelium@hdmi-edid-change-during-suspend:
    - shard-apl:          NOTRUN -> [SKIP][33] ([fdo#109271] / [fdo#111827]) +2 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@kms_chamelium@hdmi-edid-change-during-suspend.html

  * igt@kms_chamelium@vga-hpd-for-each-pipe:
    - shard-iclb:         NOTRUN -> [SKIP][34] ([fdo#109284] / [fdo#111827]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_chamelium@vga-hpd-for-each-pipe.html

  * igt@kms_color_chamelium@ctm-blue-to-red:
    - shard-snb:          NOTRUN -> [SKIP][35] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb4/igt@kms_color_chamelium@ctm-blue-to-red.html
    - shard-tglb:         NOTRUN -> [SKIP][36] ([fdo#109284] / [fdo#111827]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_color_chamelium@ctm-blue-to-red.html
    - shard-glk:          NOTRUN -> [SKIP][37] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@kms_color_chamelium@ctm-blue-to-red.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size:
    - shard-tglb:         NOTRUN -> [SKIP][38] ([fdo#109274] / [fdo#111825]) +5 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_cursor_legacy@cursorb-vs-flipa@atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa@legacy:
    - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#109274]) +5 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa@legacy.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([i915#2672] / [i915#3555]) +2 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][41] ([i915#3555]) +1 similar issue
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
    - shard-tglb:         NOTRUN -> [SKIP][42] ([i915#2587] / [i915#2672])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-iclb:         NOTRUN -> [SKIP][43] ([i915#2587] / [i915#2672]) +3 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][44] ([i915#2672]) +2 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([i915#6497])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#109280] / [fdo#111825]) +4 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-glk:          NOTRUN -> [SKIP][47] ([fdo#109271]) +13 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#109280]) +4 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
    - shard-apl:          [PASS][49] -> [DMESG-WARN][50] ([i915#180])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-apl7/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1:
    - shard-snb:          [PASS][51] -> [INCOMPLETE][52] ([i915#7266])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-snb4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-snb6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][53] ([fdo#112054] / [i915#5288])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb6/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1:
    - shard-iclb:         NOTRUN -> [SKIP][54] ([i915#3536]) +2 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html

  * igt@kms_psr@psr2_cursor_blt:
    - shard-iclb:         [PASS][55] -> [SKIP][56] ([fdo#109441]) +3 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@kms_psr@psr2_cursor_blt.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-tglb:         [PASS][57] -> [SKIP][58] ([i915#5519])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-iclb:         [PASS][59] -> [SKIP][60] ([i915#5519])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_vblank@pipe-d-wait-busy:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109278])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_vblank@pipe-d-wait-busy.html

  
#### Possible fixes ####

  * igt@gem_exec_balancer@parallel:
    - shard-iclb:         [SKIP][62] ([i915#4525]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb5/igt@gem_exec_balancer@parallel.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [FAIL][64] ([i915#2842]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-glk:          [FAIL][66] ([i915#2842]) -> [PASS][67] +4 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_reloc@basic-write-read-noreloc:
    - {shard-rkl}:        [SKIP][68] ([i915#3281]) -> [PASS][69] +3 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-noreloc.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html

  * igt@gem_readwrite@beyond-eob:
    - {shard-rkl}:        [SKIP][70] ([i915#3282]) -> [PASS][71] +2 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@gem_readwrite@beyond-eob.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gem_readwrite@beyond-eob.html

  * igt@gen9_exec_parse@bb-start-out:
    - {shard-rkl}:        [SKIP][72] ([i915#2527]) -> [PASS][73] +1 similar issue
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@gen9_exec_parse@bb-start-out.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html

  * igt@i915_pm_backlight@basic-brightness:
    - {shard-rkl}:        [SKIP][74] ([i915#3012]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-5/igt@i915_pm_backlight@basic-brightness.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_pm_dc@dc5-psr:
    - shard-iclb:         [FAIL][76] ([i915#3989]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb8/igt@i915_pm_dc@dc5-psr.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@i915_pm_dc@dc5-psr.html

  * igt@i915_pm_dc@dc6-psr:
    - shard-iclb:         [FAIL][78] ([i915#3989] / [i915#454]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@i915_pm_dc@dc6-psr.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb5/igt@i915_pm_dc@dc6-psr.html

  * igt@i915_pm_rpm@modeset-lpsp:
    - {shard-rkl}:        [SKIP][80] ([i915#1397]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-5/igt@i915_pm_rpm@modeset-lpsp.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html

  * igt@i915_pm_rps@min-max-config-idle:
    - {shard-rkl}:        [FAIL][82] ([i915#7142]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-6/igt@i915_pm_rps@min-max-config-idle.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-1/igt@i915_pm_rps@min-max-config-idle.html

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1:
    - shard-glk:          [INCOMPLETE][84] ([i915#5584]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - {shard-rkl}:        [SKIP][86] ([i915#1845] / [i915#4098]) -> [PASS][87] +16 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_cursor_legacy@flip-vs-cursor@atomic:
    - shard-tglb:         [FAIL][88] ([i915#7405]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor@atomic.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_cursor_legacy@flip-vs-cursor@atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
    - shard-glk:          [FAIL][90] ([i915#2346]) -> [PASS][91]
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor@toggle:
    - shard-tglb:         [FAIL][92] ([i915#2346]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-tglb6/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-tglb7/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
    - shard-glk:          [FAIL][94] ([i915#79]) -> [PASS][95] +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
    - shard-iclb:         [FAIL][96] ([i915#2546]) -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
    - {shard-rkl}:        [SKIP][98] ([i915#1849] / [i915#4098]) -> [PASS][99] +16 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1:
    - shard-iclb:         [SKIP][100] ([i915#5235]) -> [PASS][101] +8 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [SKIP][102] ([fdo#109441]) -> [PASS][103] +1 similar issue
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb8/igt@kms_psr@psr2_no_drrs.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_universal_plane@cursor-fb-leak-pipe-b:
    - {shard-rkl}:        [SKIP][104] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html

  * igt@kms_vblank@pipe-a-query-idle-hang:
    - shard-apl:          [SKIP][106] ([fdo#109271]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-apl3/igt@kms_vblank@pipe-a-query-idle-hang.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-apl6/igt@kms_vblank@pipe-a-query-idle-hang.html
    - shard-glk:          [SKIP][108] ([fdo#109271]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk7/igt@kms_vblank@pipe-a-query-idle-hang.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@kms_vblank@pipe-a-query-idle-hang.html

  * igt@kms_vblank@pipe-a-wait-busy-hang:
    - shard-glk:          [DMESG-WARN][110] ([i915#118]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-glk2/igt@kms_vblank@pipe-a-wait-busy-hang.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-glk2/igt@kms_vblank@pipe-a-wait-busy-hang.html

  * igt@perf_pmu@busy-idle-check-all@vecs0:
    - {shard-dg1}:        [FAIL][112] ([i915#4521]) -> [PASS][113] +2 similar issues
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-dg1-12/igt@perf_pmu@busy-idle-check-all@vecs0.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vecs0.html

  * igt@prime_vgem@basic-fence-read:
    - {shard-rkl}:        [SKIP][114] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@prime_vgem@basic-fence-read.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-5/igt@prime_vgem@basic-fence-read.html

  * igt@testdisplay:
    - {shard-rkl}:        [SKIP][116] ([i915#4098]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-rkl-2/igt@testdisplay.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-rkl-6/igt@testdisplay.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-iclb:         [SKIP][118] ([i915#4525]) -> [FAIL][119] ([i915#6117])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
    - shard-iclb:         [SKIP][120] ([i915#2920]) -> [SKIP][121] ([i915#658])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb7/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-iclb:         [SKIP][122] ([fdo#111068] / [i915#658]) -> [SKIP][123] ([i915#2920])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb3/igt@kms_psr2_sf@cursor-plane-update-sf.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-iclb:         [SKIP][124] ([i915#658]) -> [SKIP][125] ([i915#2920])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb7/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-iclb:         [SKIP][126] ([i915#2920]) -> [SKIP][127] ([fdo#111068] / [i915#658])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12379/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.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#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#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [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#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
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [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#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
  [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#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532
  [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [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#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [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#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
  [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#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#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [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#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
  [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#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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
  [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#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4855]: https://gitlab.freedesktop.org/drm/intel/issues/4855
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [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#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5584]: https://gitlab.freedesktop.org/drm/intel/issues/5584
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
  [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
  [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7142]: https://gitlab.freedesktop.org/drm/intel/issues/7142
  [i915#7266]: https://gitlab.freedesktop.org/drm/intel/issues/7266
  [i915#7405]: https://gitlab.freedesktop.org/drm/intel/issues/7405
  [i915#7468]: https://gitlab.freedesktop.org/drm/intel/issues/7468
  [i915#7478]: https://gitlab.freedesktop.org/drm/intel/issues/7478
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7056 -> IGTPW_8101
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12379: fbd41f5bba3fa2af510a37dadb4ef872e2c54701 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8101: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8101/index.html
  IGT_7056: 05096a6754048f4b5a2de798ab4bea32012b556a @ 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_8101/index.html

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

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

end of thread, other threads:[~2022-11-15 18:37 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-15  6:23 [igt-dev] [PATCH i-g-t v2] tests/api_intel_bb: Run misplaced-blitter only with supported engines Karolina Stolarek
2022-11-15  7:21 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/api_intel_bb: Run misplaced-blitter only with supported engines (rev2) Patchwork
2022-11-15  9:26 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-11-15  9:34   ` Karolina Stolarek
2022-11-15 10:49     ` Vudum, Lakshminarayana
2022-11-15 15:45       ` Karolina Stolarek
2022-11-15 18:37 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork

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.