Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 0/2] Add xe_media_fill test
@ 2023-08-03  7:49 Zbigniew Kempczyński
  2023-08-03  7:49 ` [igt-dev] [PATCH i-g-t 1/2] lib/media_fill: Use RENDER engine flag to work on Xe Zbigniew Kempczyński
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Zbigniew Kempczyński @ 2023-08-03  7:49 UTC (permalink / raw)
  To: igt-dev

It's adopted to xe gem_media_fill test.

Zbigniew Kempczyński (2):
  lib/media_fill: Use RENDER engine flag to work on Xe
  tests/xe_media_fill: Exercise media fill on Xe

 lib/media_fill.c         |   2 +-
 tests/meson.build        |   1 +
 tests/xe/xe_media_fill.c | 135 +++++++++++++++++++++++++++++++++++++++
 3 files changed, 137 insertions(+), 1 deletion(-)
 create mode 100644 tests/xe/xe_media_fill.c

-- 
2.34.1

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

* [igt-dev] [PATCH i-g-t 1/2] lib/media_fill: Use RENDER engine flag to work on Xe
  2023-08-03  7:49 [igt-dev] [PATCH i-g-t 0/2] Add xe_media_fill test Zbigniew Kempczyński
@ 2023-08-03  7:49 ` Zbigniew Kempczyński
  2023-08-03 21:11   ` Manszewski, Christoph
  2023-08-03  7:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe_media_fill: Exercise media fill " Zbigniew Kempczyński
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Zbigniew Kempczyński @ 2023-08-03  7:49 UTC (permalink / raw)
  To: igt-dev

Due to explicit requirement of running on valid hw engine on xe
change I915_EXEC_DEFAULT to I915_EXEC_RENDER. This change doesn't
break i915 media pipeline allowing to create and assign valid xe
engine to execute media fill test.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
---
 lib/media_fill.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/media_fill.c b/lib/media_fill.c
index e80dae1505..2520995d97 100644
--- a/lib/media_fill.c
+++ b/lib/media_fill.c
@@ -281,7 +281,7 @@ __gen9_media_fillfunc(int i915,
 	intel_bb_ptr_align(ibb, 32);
 
 	intel_bb_exec(ibb, intel_bb_offset(ibb),
-		      I915_EXEC_DEFAULT | I915_EXEC_NO_RELOC, true);
+		      I915_EXEC_RENDER | I915_EXEC_NO_RELOC, true);
 
 	intel_bb_destroy(ibb);
 }
-- 
2.34.1

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

* [igt-dev] [PATCH i-g-t 2/2] tests/xe_media_fill: Exercise media fill on Xe
  2023-08-03  7:49 [igt-dev] [PATCH i-g-t 0/2] Add xe_media_fill test Zbigniew Kempczyński
  2023-08-03  7:49 ` [igt-dev] [PATCH i-g-t 1/2] lib/media_fill: Use RENDER engine flag to work on Xe Zbigniew Kempczyński
@ 2023-08-03  7:49 ` Zbigniew Kempczyński
  2023-08-03 21:18   ` Manszewski, Christoph
  2023-08-03  8:25 ` [igt-dev] ○ CI.xeBAT: info for Add xe_media_fill test Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Zbigniew Kempczyński @ 2023-08-03  7:49 UTC (permalink / raw)
  To: igt-dev

Platforms like Tigerlake and DG1 have dedicated media pipeline so
add simple test which exercises it.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Christoph Manszewski <christoph.manszewski@intel.com>
---
 tests/meson.build        |   1 +
 tests/xe/xe_media_fill.c | 135 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 136 insertions(+)
 create mode 100644 tests/xe/xe_media_fill.c

diff --git a/tests/meson.build b/tests/meson.build
index b9f0a9c159..58061dbc26 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -282,6 +282,7 @@ xe_progs = [
 	'xe_huc_copy',
 	'xe_intel_bb',
 	'xe_live_ktest',
+	'xe_media_fill',
 	'xe_mmap',
 	'xe_mmio',
 	'xe_module_load',
diff --git a/tests/xe/xe_media_fill.c b/tests/xe/xe_media_fill.c
new file mode 100644
index 0000000000..5227ac3ee6
--- /dev/null
+++ b/tests/xe/xe_media_fill.c
@@ -0,0 +1,135 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+/*
+ * This file is a basic test for the media_fill() function, a very simple
+ * workload for the Media pipeline.
+ */
+
+#include <stdbool.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include <sys/ioctl.h>
+#include <stdio.h>
+#include <string.h>
+#include <fcntl.h>
+#include <inttypes.h>
+#include <errno.h>
+#include <sys/stat.h>
+#include <sys/time.h>
+
+#include "drm.h"
+#include "igt.h"
+#include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
+
+/**
+ * TEST: xe media fill
+ * Description: Basic test for the media_fill() function,
+ *              a very simple workload for the Media pipeline.
+ * Feature: media
+ * Run type: FULL
+ *
+ * SUBTEST: media-fill
+ */
+
+IGT_TEST_DESCRIPTION("Basic test for the media_fill() function, a very simple"
+		     " xe workload for the Media pipeline.");
+
+#define WIDTH 64
+#define STRIDE (WIDTH)
+#define HEIGHT 64
+#define SIZE (HEIGHT*STRIDE)
+
+#define COLOR_C4	0xc4
+#define COLOR_4C	0x4c
+
+struct data_t {
+	int drm_fd;
+	uint32_t devid;
+	struct buf_ops *bops;
+};
+
+static struct intel_buf *
+create_buf(struct data_t *data, int width, int height, uint8_t color)
+{
+	struct intel_buf *buf;
+	uint8_t *ptr;
+	int i;
+
+	buf = calloc(1, sizeof(*buf));
+	igt_assert(buf);
+
+	buf = intel_buf_create(data->bops, width/4, height, 32, 0,
+			       I915_TILING_NONE, 0);
+
+	ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size);
+
+	for (i = 0; i < buf->surface[0].size; i++)
+		ptr[i] = color;
+
+	munmap(ptr, buf->surface[0].size);
+
+	return buf;
+}
+
+static void buf_check(uint8_t *ptr, int x, int y, uint8_t color)
+{
+	uint8_t val;
+
+	val = ptr[y * WIDTH + x];
+	igt_assert_f(val == color,
+		     "Expected 0x%02x, found 0x%02x at (%d,%d)\n",
+		     color, val, x, y);
+}
+
+static void media_fill(struct data_t *data, igt_fillfunc_t fill)
+{
+	struct intel_buf *buf;
+	uint8_t *ptr;
+	int i, j;
+
+	buf = create_buf(data, WIDTH, HEIGHT, COLOR_C4);
+	ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size);
+
+	for (i = 0; i < WIDTH; i++)
+		for (j = 0; j < HEIGHT; j++)
+			buf_check(ptr, i, j, COLOR_C4);
+
+	fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
+
+	for (i = 0; i < WIDTH; i++)
+		for (j = 0; j < HEIGHT; j++)
+			if (i < WIDTH / 2 && j < HEIGHT / 2)
+				buf_check(ptr, i, j, COLOR_4C);
+			else
+				buf_check(ptr, i, j, COLOR_C4);
+
+	munmap(ptr, buf->surface[0].size);
+}
+
+igt_main
+{
+	struct data_t data = {0, };
+	igt_fillfunc_t fill_fn = NULL;
+
+	igt_fixture {
+		data.drm_fd = drm_open_driver_render(DRIVER_XE);
+		data.devid = intel_get_drm_devid(data.drm_fd);
+		data.bops = buf_ops_create(data.drm_fd);
+
+		fill_fn = igt_get_media_fillfunc(data.devid);
+
+		igt_require_f(fill_fn, "no media-fill function\n");
+	}
+
+	igt_subtest("media-fill")
+		media_fill(&data, fill_fn);
+
+	igt_fixture {
+		drm_close_driver(data.drm_fd);
+	}
+}
+
-- 
2.34.1

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

* [igt-dev] ○ CI.xeBAT: info for Add xe_media_fill test
  2023-08-03  7:49 [igt-dev] [PATCH i-g-t 0/2] Add xe_media_fill test Zbigniew Kempczyński
  2023-08-03  7:49 ` [igt-dev] [PATCH i-g-t 1/2] lib/media_fill: Use RENDER engine flag to work on Xe Zbigniew Kempczyński
  2023-08-03  7:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe_media_fill: Exercise media fill " Zbigniew Kempczyński
@ 2023-08-03  8:25 ` Patchwork
  2023-08-03  8:33 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
  2023-08-03 11:51 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-08-03  8:25 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: Add xe_media_fill test
URL   : https://patchwork.freedesktop.org/series/121943/
State : info

== Summary ==

Participating hosts:
bat-pvc-2
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[0]:
Results: [IGTPW_9504](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9504/index.html)



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

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

* [igt-dev] ✓ Fi.CI.BAT: success for Add xe_media_fill test
  2023-08-03  7:49 [igt-dev] [PATCH i-g-t 0/2] Add xe_media_fill test Zbigniew Kempczyński
                   ` (2 preceding siblings ...)
  2023-08-03  8:25 ` [igt-dev] ○ CI.xeBAT: info for Add xe_media_fill test Patchwork
@ 2023-08-03  8:33 ` Patchwork
  2023-08-03 11:51 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-08-03  8:33 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: Add xe_media_fill test
URL   : https://patchwork.freedesktop.org/series/121943/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13463 -> IGTPW_9504
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (42 -> 41)
------------------------------

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_suspend@basic-s3@smem:
    - bat-rpls-2:         [PASS][1] -> [ABORT][2] ([i915#6687] / [i915#7978] / [i915#8668])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/bat-rpls-2/igt@gem_exec_suspend@basic-s3@smem.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-rpls-2/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - bat-mtlp-8:         NOTRUN -> [SKIP][3] ([i915#4613]) +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@i915_pm_rpm@module-reload:
    - fi-rkl-11600:       [PASS][4] -> [FAIL][5] ([i915#7940])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
    - fi-cfl-8109u:       [PASS][6] -> [FAIL][7] ([i915#7940])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html

  * igt@i915_pm_rps@basic-api:
    - bat-mtlp-8:         NOTRUN -> [SKIP][8] ([i915#6621])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-mtlp-8/igt@i915_pm_rps@basic-api.html

  * igt@i915_selftest@live@gt_lrc:
    - bat-dg2-11:         [PASS][9] -> [INCOMPLETE][10] ([i915#7609] / [i915#7913])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/bat-dg2-11/igt@i915_selftest@live@gt_lrc.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-dg2-11/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@gt_mocs:
    - bat-mtlp-8:         NOTRUN -> [DMESG-FAIL][11] ([i915#7059])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html
    - bat-mtlp-6:         [PASS][12] -> [DMESG-FAIL][13] ([i915#7059])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html

  * igt@i915_selftest@live@slpc:
    - bat-mtlp-8:         NOTRUN -> [DMESG-WARN][14] ([i915#6367])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-mtlp-8/igt@i915_selftest@live@slpc.html

  * igt@i915_selftest@live@workarounds:
    - bat-mtlp-6:         [PASS][15] -> [DMESG-FAIL][16] ([i915#6763])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-mtlp-6/igt@i915_selftest@live@workarounds.html

  * igt@i915_suspend@basic-s3-without-i915:
    - bat-mtlp-8:         NOTRUN -> [SKIP][17] ([i915#6645])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - bat-mtlp-8:         NOTRUN -> [SKIP][18] ([i915#7828])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_psr@cursor_plane_move:
    - bat-rplp-1:         NOTRUN -> [SKIP][19] ([i915#1072])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-rplp-1/igt@kms_psr@cursor_plane_move.html

  * igt@kms_psr@sprite_plane_onoff:
    - bat-rplp-1:         NOTRUN -> [ABORT][20] ([i915#8442] / [i915#8668] / [i915#8712])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html

  * igt@prime_vgem@basic-fence-read:
    - bat-mtlp-8:         NOTRUN -> [SKIP][21] ([i915#3708]) +2 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html

  * igt@prime_vgem@basic-gtt:
    - bat-mtlp-8:         NOTRUN -> [SKIP][22] ([i915#3708] / [i915#4077]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-mtlp-8/igt@prime_vgem@basic-gtt.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - bat-mtlp-8:         [ABORT][23] ([i915#7077] / [i915#7977] / [i915#8668]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_pm_rpm@basic-rte:
    - fi-kbl-x1275:       [FAIL][25] ([i915#7940]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/fi-kbl-x1275/igt@i915_pm_rpm@basic-rte.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/fi-kbl-x1275/igt@i915_pm_rpm@basic-rte.html
    - fi-kbl-7567u:       [FAIL][27] ([i915#7940]) -> [PASS][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/fi-kbl-7567u/igt@i915_pm_rpm@basic-rte.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/fi-kbl-7567u/igt@i915_pm_rpm@basic-rte.html

  * igt@i915_pm_rpm@module-reload:
    - fi-cfl-8700k:       [FAIL][29] ([i915#7940]) -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-apl-guc:         [DMESG-FAIL][31] ([i915#5334]) -> [PASS][32]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
    - fi-kbl-soraka:      [DMESG-FAIL][33] ([i915#5334] / [i915#7872]) -> [PASS][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@guc:
    - bat-rpls-1:         [DMESG-WARN][35] ([i915#7852]) -> [PASS][36]
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/bat-rpls-1/igt@i915_selftest@live@guc.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-rpls-1/igt@i915_selftest@live@guc.html

  * igt@i915_selftest@live@requests:
    - bat-mtlp-6:         [DMESG-FAIL][37] ([i915#8497]) -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/bat-mtlp-6/igt@i915_selftest@live@requests.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-mtlp-6/igt@i915_selftest@live@requests.html

  * igt@i915_selftest@live@slpc:
    - bat-mtlp-6:         [DMESG-WARN][39] ([i915#6367]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/bat-mtlp-6/igt@i915_selftest@live@slpc.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-mtlp-6/igt@i915_selftest@live@slpc.html

  
#### Warnings ####

  * igt@i915_module_load@load:
    - bat-adlp-11:        [DMESG-WARN][41] ([i915#4423]) -> [ABORT][42] ([i915#4423])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/bat-adlp-11/igt@i915_module_load@load.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-adlp-11/igt@i915_module_load@load.html

  * igt@kms_psr@primary_page_flip:
    - bat-rplp-1:         [ABORT][43] ([i915#8860]) -> [SKIP][44] ([i915#1072])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/bat-rplp-1/igt@kms_psr@primary_page_flip.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/bat-rplp-1/igt@kms_psr@primary_page_flip.html

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

  [Intel XE#485]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/485
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
  [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
  [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
  [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
  [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077
  [i915#7609]: https://gitlab.freedesktop.org/drm/intel/issues/7609
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7852]: https://gitlab.freedesktop.org/drm/intel/issues/7852
  [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872
  [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
  [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
  [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977
  [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
  [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
  [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497
  [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
  [i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712
  [i915#8860]: https://gitlab.freedesktop.org/drm/intel/issues/8860


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7412 -> IGTPW_9504

  CI-20190529: 20190529
  CI_DRM_13463: 20610a111d61d6945d578360942dc5c7bd828eb5 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_9504: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/index.html
  IGT_7412: 7412


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

+igt@xe_media_fill@media-fill

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for Add xe_media_fill test
  2023-08-03  7:49 [igt-dev] [PATCH i-g-t 0/2] Add xe_media_fill test Zbigniew Kempczyński
                   ` (3 preceding siblings ...)
  2023-08-03  8:33 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-08-03 11:51 ` Patchwork
  2023-08-03 20:15   ` Zbigniew Kempczyński
  4 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2023-08-03 11:51 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

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

== Series Details ==

Series: Add xe_media_fill test
URL   : https://patchwork.freedesktop.org/series/121943/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13463_full -> IGTPW_9504_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_9504_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_9504_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_9504/index.html

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

  Additional (1): shard-rkl0 
  Missing    (1): pig-kbl-iris 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_userptr_blits@nohangcheck:
    - shard-mtlp:         [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-4/igt@gem_userptr_blits@nohangcheck.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@gem_userptr_blits@nohangcheck.html

  
New tests
---------

  New tests have been introduced between CI_DRM_13463_full and IGTPW_9504_full:

### New IGT tests (2) ###

  * igt@kms_cursor_crc@cursor-dpms@pipe-a-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_cursor_crc@cursor-dpms@pipe-d-hdmi-a-4:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@drm_fdinfo@busy-idle-check-all@ccs0:
    - shard-mtlp:         NOTRUN -> [SKIP][3] ([i915#8414]) +5 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html

  * igt@drm_fdinfo@busy-idle@bcs0:
    - shard-dg2:          NOTRUN -> [SKIP][4] ([i915#8414]) +9 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@drm_fdinfo@busy-idle@bcs0.html

  * igt@gem_caching@read-writes:
    - shard-mtlp:         NOTRUN -> [SKIP][5] ([i915#4873])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-3/igt@gem_caching@read-writes.html

  * igt@gem_ccs@block-copy-compressed:
    - shard-rkl:          NOTRUN -> [SKIP][6] ([i915#3555] / [i915#5325])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-4/igt@gem_ccs@block-copy-compressed.html
    - shard-dg1:          NOTRUN -> [SKIP][7] ([i915#3555] / [i915#5325])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-tglu:         NOTRUN -> [SKIP][8] ([i915#5325])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
    - shard-mtlp:         NOTRUN -> [SKIP][9] ([i915#5325])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

  * igt@gem_ctx_exec@basic-nohangcheck:
    - shard-rkl:          [PASS][10] -> [FAIL][11] ([i915#6268])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-snb:          NOTRUN -> [DMESG-WARN][12] ([i915#8841]) +8 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-snb2/igt@gem_ctx_isolation@preservation-s3@rcs0.html

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-mtlp:         NOTRUN -> [SKIP][13] ([fdo#109314])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-3/igt@gem_ctx_param@set-priority-not-supported.html

  * igt@gem_ctx_persistence@engines-hang:
    - shard-snb:          NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#1099]) +2 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-snb5/igt@gem_ctx_persistence@engines-hang.html

  * igt@gem_ctx_persistence@saturated-hostile@vecs0:
    - shard-mtlp:         [PASS][15] -> [FAIL][16] ([i915#7816]) +2 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-4/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile@vecs0.html

  * igt@gem_eio@reset-stress:
    - shard-dg1:          [PASS][17] -> [FAIL][18] ([i915#5784])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-15/igt@gem_eio@reset-stress.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-16/igt@gem_eio@reset-stress.html

  * igt@gem_exec_await@wide-contexts:
    - shard-dg2:          [PASS][19] -> [FAIL][20] ([i915#5892])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-1/igt@gem_exec_await@wide-contexts.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@gem_exec_await@wide-contexts.html

  * igt@gem_exec_balancer@bonded-dual:
    - shard-dg2:          NOTRUN -> [SKIP][21] ([i915#4771])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-1/igt@gem_exec_balancer@bonded-dual.html
    - shard-dg1:          NOTRUN -> [SKIP][22] ([i915#4771]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-13/igt@gem_exec_balancer@bonded-dual.html

  * igt@gem_exec_flush@basic-wb-ro-before-default:
    - shard-dg2:          NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@gem_exec_flush@basic-wb-ro-before-default.html
    - shard-dg1:          NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-15/igt@gem_exec_flush@basic-wb-ro-before-default.html

  * igt@gem_exec_gttfill@multigpu-basic:
    - shard-dg2:          NOTRUN -> [SKIP][25] ([i915#7697])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@gem_exec_gttfill@multigpu-basic.html

  * igt@gem_exec_reloc@basic-active:
    - shard-dg2:          NOTRUN -> [SKIP][26] ([i915#3281]) +3 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-1/igt@gem_exec_reloc@basic-active.html

  * igt@gem_exec_reloc@basic-cpu-noreloc:
    - shard-rkl:          NOTRUN -> [SKIP][27] ([i915#3281]) +3 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-noreloc.html

  * igt@gem_exec_reloc@basic-range:
    - shard-mtlp:         NOTRUN -> [SKIP][28] ([i915#3281]) +2 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-8/igt@gem_exec_reloc@basic-range.html

  * igt@gem_exec_reloc@basic-write-cpu-active:
    - shard-dg1:          NOTRUN -> [SKIP][29] ([i915#3281]) +1 similar issue
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-16/igt@gem_exec_reloc@basic-write-cpu-active.html

  * igt@gem_exec_schedule@semaphore-power:
    - shard-mtlp:         NOTRUN -> [SKIP][30] ([i915#4812])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-8/igt@gem_exec_schedule@semaphore-power.html

  * igt@gem_fence_thrash@bo-write-verify-x:
    - shard-dg1:          NOTRUN -> [SKIP][31] ([i915#4860])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-x.html

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

  * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
    - shard-mtlp:         NOTRUN -> [SKIP][33] ([i915#4860])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-mtlp:         NOTRUN -> [SKIP][34] ([i915#4613]) +3 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-multi.html

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

  * igt@gem_mmap_gtt@basic-small-bo-tiledx:
    - shard-dg1:          NOTRUN -> [SKIP][36] ([i915#4077]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-18/igt@gem_mmap_gtt@basic-small-bo-tiledx.html

  * igt@gem_mmap_gtt@basic-write-cpu-read-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][37] ([i915#4077]) +4 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-1/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html

  * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
    - shard-dg2:          NOTRUN -> [SKIP][38] ([i915#4077]) +3 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html

  * igt@gem_mmap_wc@copy:
    - shard-mtlp:         NOTRUN -> [SKIP][39] ([i915#4083]) +1 similar issue
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-1/igt@gem_mmap_wc@copy.html

  * igt@gem_pxp@create-valid-protected-context:
    - shard-mtlp:         NOTRUN -> [SKIP][40] ([i915#4270]) +1 similar issue
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-2/igt@gem_pxp@create-valid-protected-context.html

  * igt@gem_readwrite@read-bad-handle:
    - shard-mtlp:         NOTRUN -> [SKIP][41] ([i915#3282]) +2 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-5/igt@gem_readwrite@read-bad-handle.html

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][42] ([i915#5190]) +2 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-1/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html

  * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][43] ([i915#8428]) +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-5/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html

  * igt@gem_set_tiling_vs_pwrite:
    - shard-rkl:          NOTRUN -> [SKIP][44] ([i915#3282]) +1 similar issue
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html
    - shard-dg1:          NOTRUN -> [SKIP][45] ([i915#4079]) +1 similar issue
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-16/igt@gem_set_tiling_vs_pwrite.html

  * igt@gem_tiled_pread_basic:
    - shard-dg2:          NOTRUN -> [SKIP][46] ([i915#4079]) +2 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@gem_tiled_pread_basic.html

  * igt@gem_userptr_blits@access-control:
    - shard-dg2:          NOTRUN -> [SKIP][47] ([i915#3297])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@gem_userptr_blits@access-control.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-mtlp:         NOTRUN -> [SKIP][48] ([i915#3297])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - shard-dg1:          NOTRUN -> [SKIP][49] ([i915#3297] / [i915#4880])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-dg2:          [PASS][50] -> [FAIL][51] ([fdo#103375]) +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-1/igt@gem_workarounds@suspend-resume-fd.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen3_render_tiledy_blits:
    - shard-dg2:          NOTRUN -> [SKIP][52] ([fdo#109289])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@gen3_render_tiledy_blits.html

  * igt@gen7_exec_parse@chained-batch:
    - shard-rkl:          NOTRUN -> [SKIP][53] ([fdo#109289]) +1 similar issue
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-6/igt@gen7_exec_parse@chained-batch.html
    - shard-dg1:          NOTRUN -> [SKIP][54] ([fdo#109289]) +2 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-19/igt@gen7_exec_parse@chained-batch.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-mtlp:         NOTRUN -> [SKIP][55] ([i915#2856]) +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-7/igt@gen9_exec_parse@bb-oversize.html

  * igt@gen9_exec_parse@bb-start-cmd:
    - shard-dg1:          NOTRUN -> [SKIP][56] ([i915#2527])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-15/igt@gen9_exec_parse@bb-start-cmd.html
    - shard-dg2:          NOTRUN -> [SKIP][57] ([i915#2856])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@gen9_exec_parse@bb-start-cmd.html
    - shard-rkl:          NOTRUN -> [SKIP][58] ([i915#2527])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-4/igt@gen9_exec_parse@bb-start-cmd.html

  * igt@i915_pipe_stress@stress-xrgb8888-untiled:
    - shard-mtlp:         [PASS][59] -> [FAIL][60] ([i915#8691])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@i915_pipe_stress@stress-xrgb8888-untiled.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-tglu:         [PASS][61] -> [FAIL][62] ([i915#3989] / [i915#454])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-tglu-4/igt@i915_pm_dc@dc6-dpms.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-9/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_freq_api@freq-reset:
    - shard-rkl:          NOTRUN -> [SKIP][63] ([i915#8399])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-1/igt@i915_pm_freq_api@freq-reset.html

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

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-mtlp:         NOTRUN -> [SKIP][65] ([i915#6645])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-6/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@i915_pm_freq_api@freq-suspend@gt1:
    - shard-mtlp:         NOTRUN -> [SKIP][66] ([i915#8805])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-6/igt@i915_pm_freq_api@freq-suspend@gt1.html

  * igt@i915_pm_rpm@cursor:
    - shard-dg1:          [PASS][67] -> [FAIL][68] ([i915#7940])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-18/igt@i915_pm_rpm@cursor.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-14/igt@i915_pm_rpm@cursor.html

  * igt@i915_pm_rpm@dpms-mode-unset-lpsp:
    - shard-rkl:          [PASS][69] -> [SKIP][70] ([i915#1397])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-dg2:          [PASS][71] -> [SKIP][72] ([i915#1397])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_pm_rps@thresholds-idle@gt0:
    - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#8925]) +1 similar issue
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-6/igt@i915_pm_rps@thresholds-idle@gt0.html
    - shard-dg1:          NOTRUN -> [SKIP][74] ([i915#8925])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-12/igt@i915_pm_rps@thresholds-idle@gt0.html

  * igt@i915_selftest@live@slpc:
    - shard-mtlp:         [PASS][75] -> [DMESG-WARN][76] ([i915#6367])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-3/igt@i915_selftest@live@slpc.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@i915_selftest@live@slpc.html

  * igt@i915_selftest@live@workarounds:
    - shard-mtlp:         [PASS][77] -> [DMESG-FAIL][78] ([i915#6763])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@i915_selftest@live@workarounds.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-mtlp:         NOTRUN -> [SKIP][79] ([i915#4212])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-3/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
    - shard-dg2:          NOTRUN -> [SKIP][80] ([i915#4212])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2:
    - shard-glk:          [PASS][81] -> [FAIL][82] ([i915#2521])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-glk7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs:
    - shard-dg2:          NOTRUN -> [SKIP][83] ([i915#8502] / [i915#8709]) +11 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-180:
    - shard-rkl:          NOTRUN -> [SKIP][84] ([i915#5286])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
    - shard-dg1:          NOTRUN -> [SKIP][85] ([i915#4538] / [i915#5286])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-14/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-mtlp:         [PASS][86] -> [FAIL][87] ([i915#5138])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-dg1:          NOTRUN -> [SKIP][88] ([i915#5286])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb.html
    - shard-tglu:         NOTRUN -> [SKIP][89] ([i915#5286])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-4/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-dg2:          NOTRUN -> [SKIP][90] ([fdo#111614]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
    - shard-rkl:          NOTRUN -> [SKIP][91] ([fdo#111614] / [i915#3638]) +1 similar issue
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
    - shard-dg1:          NOTRUN -> [SKIP][92] ([i915#3638]) +1 similar issue
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-13/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-mtlp:         [PASS][93] -> [FAIL][94] ([i915#3743]) +1 similar issue
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-mtlp:         NOTRUN -> [SKIP][95] ([i915#6187])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-1/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
    - shard-dg2:          NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5190]) +1 similar issue
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
    - shard-rkl:          NOTRUN -> [SKIP][97] ([fdo#110723])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
    - shard-dg1:          NOTRUN -> [SKIP][98] ([i915#4538])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-mtlp:         NOTRUN -> [SKIP][99] ([fdo#111615]) +1 similar issue
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][100] ([i915#3886] / [i915#5354] / [i915#6095])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][101] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-12/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][102] ([i915#3886] / [i915#6095]) +4 similar issues
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-8/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs:
    - shard-dg2:          NOTRUN -> [SKIP][103] ([i915#3689] / [i915#5354]) +7 similar issues
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html
    - shard-rkl:          NOTRUN -> [SKIP][104] ([i915#3734] / [i915#5354] / [i915#6095])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-6/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][105] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-17/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_ccs:
    - shard-mtlp:         NOTRUN -> [SKIP][106] ([i915#6095]) +11 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-8/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_ccs.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_mtl_rc_ccs_cc:
    - shard-tglu:         NOTRUN -> [SKIP][107] ([i915#5354] / [i915#6095])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-3/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_mtl_rc_ccs_cc.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_rc_ccs:
    - shard-dg1:          NOTRUN -> [SKIP][108] ([i915#5354] / [i915#6095])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-12/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_rc_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
    - shard-tglu:         NOTRUN -> [SKIP][109] ([i915#3689] / [i915#5354] / [i915#6095])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html

  * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][110] ([i915#5354]) +4 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-7/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs.html

  * igt@kms_cdclk@mode-transition@pipe-d-dp-4:
    - shard-dg2:          NOTRUN -> [SKIP][111] ([i915#4087] / [i915#7213]) +3 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html

  * igt@kms_cdclk@plane-scaling:
    - shard-rkl:          NOTRUN -> [SKIP][112] ([i915#3742])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-2/igt@kms_cdclk@plane-scaling.html
    - shard-dg1:          NOTRUN -> [SKIP][113] ([i915#3742])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-17/igt@kms_cdclk@plane-scaling.html

  * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][114] ([i915#4087]) +3 similar issues
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-mtlp:         NOTRUN -> [SKIP][115] ([fdo#111827])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-7/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_frames@dp-frame-dump:
    - shard-dg2:          NOTRUN -> [SKIP][116] ([i915#7828])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@kms_chamelium_frames@dp-frame-dump.html
    - shard-rkl:          NOTRUN -> [SKIP][117] ([i915#7828])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-4/igt@kms_chamelium_frames@dp-frame-dump.html
    - shard-dg1:          NOTRUN -> [SKIP][118] ([i915#7828]) +1 similar issue
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-15/igt@kms_chamelium_frames@dp-frame-dump.html

  * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][119] ([i915#7828]) +3 similar issues
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-7/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
    - shard-dg2:          NOTRUN -> [TIMEOUT][120] ([i915#7173])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-mtlp:         NOTRUN -> [SKIP][121] ([i915#3299])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_cursor_crc@cursor-onscreen-32x32:
    - shard-mtlp:         NOTRUN -> [SKIP][122] ([i915#8814]) +1 similar issue
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-mtlp:         NOTRUN -> [SKIP][123] ([i915#3359])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#3359])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html
    - shard-rkl:          NOTRUN -> [SKIP][125] ([i915#3359])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#3555]) +1 similar issue
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-max-size.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][127] ([i915#4103] / [i915#4213])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-rkl:          NOTRUN -> [SKIP][128] ([i915#4103])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - shard-dg1:          NOTRUN -> [SKIP][129] ([i915#4103] / [i915#4213]) +1 similar issue
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@cursor-vs-flip-legacy:
    - shard-mtlp:         [PASS][130] -> [FAIL][131] ([i915#8248])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][132] ([fdo#111825]) +3 similar issues
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-mtlp:         NOTRUN -> [SKIP][133] ([i915#3546])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-mtlp:         NOTRUN -> [SKIP][134] ([fdo#111767] / [i915#3546])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
    - shard-tglu:         NOTRUN -> [SKIP][135] ([fdo#109274] / [fdo#111767])
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-apl:          [PASS][136] -> [FAIL][137] ([i915#2346])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-dg1:          NOTRUN -> [SKIP][138] ([i915#3555])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-13/igt@kms_display_modes@extended-mode-basic.html

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

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-dg2:          NOTRUN -> [SKIP][140] ([fdo#109274]) +2 similar issues
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-mtlp:         NOTRUN -> [SKIP][141] ([i915#3637]) +1 similar issue
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-1/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
    - shard-mtlp:         NOTRUN -> [SKIP][142] ([fdo#111767] / [i915#3637])
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-tglu:         NOTRUN -> [SKIP][143] ([fdo#109274] / [i915#3637])
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-4/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-tglu:         NOTRUN -> [SKIP][144] ([i915#2587] / [i915#2672])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][145] ([i915#2672]) +2 similar issues
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][146] ([i915#2672])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
    - shard-dg1:          NOTRUN -> [SKIP][147] ([i915#2587] / [i915#2672])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-dg2:          NOTRUN -> [SKIP][148] ([i915#2672]) +1 similar issue
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][149] ([i915#8708]) +3 similar issues
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
    - shard-dg2:          [PASS][150] -> [FAIL][151] ([i915#6880])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
    - shard-dg2:          NOTRUN -> [FAIL][152] ([i915#6880])
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
    - shard-mtlp:         NOTRUN -> [SKIP][153] ([i915#1825]) +12 similar issues
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
    - shard-dg1:          NOTRUN -> [SKIP][154] ([fdo#111825]) +10 similar issues
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
    - shard-tglu:         NOTRUN -> [SKIP][155] ([fdo#109280]) +2 similar issues
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
    - shard-dg2:          NOTRUN -> [SKIP][156] ([i915#5354]) +2 similar issues
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][157] ([i915#8708]) +4 similar issues
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][158] ([i915#8708]) +2 similar issues
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][159] ([i915#3458]) +3 similar issues
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
    - shard-tglu:         NOTRUN -> [SKIP][160] ([fdo#110189])
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite:
    - shard-rkl:          NOTRUN -> [SKIP][161] ([fdo#111825] / [i915#1825]) +6 similar issues
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
    - shard-rkl:          NOTRUN -> [SKIP][162] ([i915#3023]) +2 similar issues
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
    - shard-dg1:          NOTRUN -> [SKIP][163] ([i915#3458]) +2 similar issues
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][164] ([i915#3555] / [i915#8228]) +1 similar issue
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-mtlp:         NOTRUN -> [SKIP][165] ([i915#4816])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
    - shard-tglu:         NOTRUN -> [SKIP][166] ([fdo#109289])
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-4/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
    - shard-mtlp:         NOTRUN -> [SKIP][167] ([fdo#109289]) +3 similar issues
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-3/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html

  * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes:
    - shard-mtlp:         [PASS][168] -> [FAIL][169] ([i915#1623])
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html

  * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][170] ([i915#5176]) +19 similar issues
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-14/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][171] ([i915#5235]) +7 similar issues
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
    - shard-snb:          NOTRUN -> [SKIP][172] ([fdo#109271]) +193 similar issues
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-snb2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][173] ([i915#5235]) +1 similar issue
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1:
    - shard-dg1:          NOTRUN -> [SKIP][174] ([i915#5235]) +19 similar issues
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
    - shard-rkl:          NOTRUN -> [SKIP][175] ([i915#658])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
    - shard-dg1:          NOTRUN -> [SKIP][176] ([i915#658])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-13/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area:
    - shard-dg2:          NOTRUN -> [SKIP][177] ([i915#658]) +1 similar issue
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-11/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
    - shard-rkl:          NOTRUN -> [SKIP][178] ([fdo#111068] / [i915#658])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-4/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
    - shard-dg1:          NOTRUN -> [SKIP][179] ([fdo#111068] / [i915#658])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-19/igt@kms_psr2_sf@plane-move-sf-dmg-area.html

  * igt@kms_psr@psr2_sprite_mmap_cpu:
    - shard-mtlp:         [PASS][180] -> [FAIL][181] ([i915#8726])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-2/igt@kms_psr@psr2_sprite_mmap_cpu.html
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-8/igt@kms_psr@psr2_sprite_mmap_cpu.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-dg2:          NOTRUN -> [SKIP][182] ([i915#1072]) +1 similar issue
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_psr@sprite_plane_onoff:
    - shard-rkl:          NOTRUN -> [SKIP][183] ([i915#1072])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-7/igt@kms_psr@sprite_plane_onoff.html
    - shard-dg1:          NOTRUN -> [SKIP][184] ([i915#1072] / [i915#4078])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-13/igt@kms_psr@sprite_plane_onoff.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-mtlp:         NOTRUN -> [SKIP][185] ([i915#4235]) +1 similar issue
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-1/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg1:          [PASS][186] -> [DMESG-WARN][187] ([i915#1982])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-16/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-16/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d:
    - shard-mtlp:         NOTRUN -> [SKIP][188] ([i915#5030]) +3 similar issues
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html

  * igt@kms_selftest@drm_format_helper:
    - shard-snb:          NOTRUN -> [SKIP][189] ([fdo#109271] / [i915#8661])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-snb6/igt@kms_selftest@drm_format_helper.html
    - shard-glk:          NOTRUN -> [SKIP][190] ([fdo#109271] / [i915#8661])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-glk2/igt@kms_selftest@drm_format_helper.html

  * igt@kms_vblank@pipe-c-ts-continuation-suspend:
    - shard-tglu:         [PASS][191] -> [ABORT][192] ([i915#5122] / [i915#5251] / [i915#8213])
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-tglu-9/igt@kms_vblank@pipe-c-ts-continuation-suspend.html
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-10/igt@kms_vblank@pipe-c-ts-continuation-suspend.html

  * igt@kms_vrr@flip-basic:
    - shard-mtlp:         NOTRUN -> [SKIP][193] ([i915#8808])
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@negative-basic:
    - shard-rkl:          NOTRUN -> [SKIP][194] ([i915#3555]) +1 similar issue
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-4/igt@kms_vrr@negative-basic.html

  * igt@perf@enable-disable@0-rcs0:
    - shard-dg2:          [PASS][195] -> [FAIL][196] ([i915#8724])
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-1/igt@perf@enable-disable@0-rcs0.html
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html

  * igt@perf_pmu@event-wait@rcs0:
    - shard-dg2:          NOTRUN -> [SKIP][197] ([fdo#112283])
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@perf_pmu@event-wait@rcs0.html

  * igt@perf_pmu@most-busy-idle-check-all@rcs0:
    - shard-mtlp:         [PASS][198] -> [FAIL][199] ([i915#5234])
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html

  * igt@prime_self_import@reimport-vs-gem_close-race:
    - shard-dg1:          [PASS][200] -> [FAIL][201] ([i915#7951])
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-12/igt@prime_self_import@reimport-vs-gem_close-race.html
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-17/igt@prime_self_import@reimport-vs-gem_close-race.html
    - shard-mtlp:         [PASS][202] -> [FAIL][203] ([i915#7951])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-8/igt@prime_self_import@reimport-vs-gem_close-race.html
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@prime_self_import@reimport-vs-gem_close-race.html

  * igt@v3d/v3d_job_submission@array-job-submission:
    - shard-dg1:          NOTRUN -> [SKIP][204] ([i915#2575]) +3 similar issues
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-16/igt@v3d/v3d_job_submission@array-job-submission.html
    - shard-tglu:         NOTRUN -> [SKIP][205] ([fdo#109315] / [i915#2575]) +1 similar issue
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-4/igt@v3d/v3d_job_submission@array-job-submission.html

  * igt@v3d/v3d_mmap@mmap-bad-flags:
    - shard-rkl:          NOTRUN -> [SKIP][206] ([fdo#109315]) +1 similar issue
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-6/igt@v3d/v3d_mmap@mmap-bad-flags.html

  * igt@v3d/v3d_perfmon@destroy-invalid-perfmon:
    - shard-dg2:          NOTRUN -> [SKIP][207] ([i915#2575]) +2 similar issues
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-1/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html

  * igt@v3d/v3d_submit_csd@bad-pad:
    - shard-glk:          NOTRUN -> [SKIP][208] ([fdo#109271]) +31 similar issues
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-glk2/igt@v3d/v3d_submit_csd@bad-pad.html

  * igt@v3d/v3d_submit_csd@job-perfmon:
    - shard-mtlp:         NOTRUN -> [SKIP][209] ([i915#2575]) +6 similar issues
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-1/igt@v3d/v3d_submit_csd@job-perfmon.html

  * igt@vc4/vc4_label_bo@set-bad-name:
    - shard-mtlp:         NOTRUN -> [SKIP][210] ([i915#7711]) +1 similar issue
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@vc4/vc4_label_bo@set-bad-name.html

  * igt@vc4/vc4_mmap@mmap-bo:
    - shard-dg2:          NOTRUN -> [SKIP][211] ([i915#7711]) +2 similar issues
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-6/igt@vc4/vc4_mmap@mmap-bo.html
    - shard-rkl:          NOTRUN -> [SKIP][212] ([i915#7711]) +1 similar issue
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-1/igt@vc4/vc4_mmap@mmap-bo.html
    - shard-dg1:          NOTRUN -> [SKIP][213] ([i915#7711]) +1 similar issue
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-12/igt@vc4/vc4_mmap@mmap-bo.html

  * igt@vc4/vc4_wait_bo@bad-pad:
    - shard-tglu:         NOTRUN -> [SKIP][214] ([i915#2575])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-5/igt@vc4/vc4_wait_bo@bad-pad.html

  
#### Possible fixes ####

  * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
    - shard-rkl:          [FAIL][215] ([i915#7742]) -> [PASS][216]
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html

  * igt@fbdev@nullptr:
    - shard-dg2:          [SKIP][217] ([i915#2582]) -> [PASS][218]
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@fbdev@nullptr.html
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-1/igt@fbdev@nullptr.html

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - shard-glk:          [INCOMPLETE][219] ([i915#4793]) -> [PASS][220]
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-glk3/igt@gem_ctx_isolation@preservation-s3@bcs0.html
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-glk7/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_ctx_param@invalid-param-set:
    - shard-dg2:          [SKIP][221] ([i915#2575]) -> [PASS][222] +161 similar issues
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_ctx_param@invalid-param-set.html
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@gem_ctx_param@invalid-param-set.html

  * igt@gem_ctx_persistence@engines-hang@vcs0:
    - shard-mtlp:         [FAIL][223] ([i915#2410]) -> [PASS][224]
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-7/igt@gem_ctx_persistence@engines-hang@vcs0.html
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-3/igt@gem_ctx_persistence@engines-hang@vcs0.html

  * igt@gem_eio@reset-stress:
    - shard-dg2:          [FAIL][225] ([i915#5784]) -> [PASS][226]
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-1/igt@gem_eio@reset-stress.html
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@gem_eio@reset-stress.html

  * igt@gem_eio@unwedge-stress:
    - shard-dg1:          [FAIL][227] ([i915#5784]) -> [PASS][228]
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-16/igt@gem_eio@unwedge-stress.html
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-19/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@hang:
    - shard-mtlp:         [ABORT][229] ([i915#8104]) -> [PASS][230]
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-1/igt@gem_exec_balancer@hang.html
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-7/igt@gem_exec_balancer@hang.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-rkl:          [FAIL][231] ([i915#2846]) -> [PASS][232]
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-rkl:          [FAIL][233] ([i915#2842]) -> [PASS][234]
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
    - shard-tglu:         [FAIL][235] ([i915#2842]) -> [PASS][236]
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_suspend@basic-s4-devices@lmem0:
    - shard-dg1:          [ABORT][237] ([i915#7975] / [i915#8213]) -> [PASS][238]
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-12/igt@gem_exec_suspend@basic-s4-devices@lmem0.html

  * igt@gem_exec_whisper@basic-contexts-forked-all:
    - shard-mtlp:         [ABORT][239] ([i915#7392] / [i915#8131]) -> [PASS][240]
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-forked-all.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html

  * igt@i915_hangman@detector@vcs0:
    - shard-mtlp:         [FAIL][241] ([i915#8456]) -> [PASS][242] +2 similar issues
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-5/igt@i915_hangman@detector@vcs0.html
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html

  * igt@i915_hangman@engine-engine-hang@vcs0:
    - shard-mtlp:         [FAIL][243] ([i915#7069]) -> [PASS][244]
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-8/igt@i915_hangman@engine-engine-hang@vcs0.html
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-6/igt@i915_hangman@engine-engine-hang@vcs0.html

  * igt@i915_module_load@reload:
    - shard-dg2:          [FAIL][245] -> [PASS][246]
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_module_load@reload.html
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@i915_module_load@reload.html

  * igt@i915_pm_rc6_residency@rc6-fence:
    - shard-tglu:         [WARN][247] ([i915#2681]) -> [PASS][248]
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence.html
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-fence.html

  * igt@i915_pm_rc6_residency@rc6-idle@rcs0:
    - shard-dg1:          [FAIL][249] ([i915#3591]) -> [PASS][250]
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-rkl:          [SKIP][251] ([i915#1397]) -> [PASS][252] +1 similar issue
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_pm_rpm@gem-execbuf-stress@lmem0:
    - shard-dg1:          [FAIL][253] ([i915#7940]) -> [PASS][254] +1 similar issue
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-12/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html

  * igt@i915_selftest@live@gt_mocs:
    - shard-mtlp:         [DMESG-FAIL][255] ([i915#7059]) -> [PASS][256]
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-3/igt@i915_selftest@live@gt_mocs.html
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-4/igt@i915_selftest@live@gt_mocs.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - shard-dg2:          [WARN][257] ([i915#2575]) -> [PASS][258]
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_suspend@basic-s2idle-without-i915.html
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@kms_addfb_basic@addfb25-yf-tiled-legacy:
    - shard-dg2:          [SKIP][259] ([i915#2575] / [i915#5190]) -> [PASS][260]
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-1/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-mtlp:         [FAIL][261] ([i915#5138]) -> [PASS][262]
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_cursor_legacy@cursor-vs-flip-toggle:
    - shard-mtlp:         [FAIL][263] ([i915#8248]) -> [PASS][264]
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-8/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [FAIL][265] ([i915#2346]) -> [PASS][266]
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][267] ([i915#79]) -> [PASS][268]
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
    - shard-dg2:          [SKIP][269] ([fdo#109315]) -> [PASS][270] +21 similar issues
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglu:         [SKIP][271] ([i915#433]) -> [PASS][272]
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane@pixel-format@pipe-b-planes:
    - shard-mtlp:         [FAIL][273] ([i915#1623]) -> [PASS][274]
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-2/igt@kms_plane@pixel-format@pipe-b-planes.html
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-6/igt@kms_plane@pixel-format@pipe-b-planes.html

  * igt@perf@polling-parameterized:
    - shard-dg2:          [SKIP][275] ([i915#5608]) -> [PASS][276] +2 similar issues
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@perf@polling-parameterized.html
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@perf@polling-parameterized.html

  * igt@perf_pmu@busy-double-start@rcs0:
    - shard-mtlp:         [FAIL][277] ([i915#4349]) -> [PASS][278]
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-4/igt@perf_pmu@busy-double-start@rcs0.html
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-8/igt@perf_pmu@busy-double-start@rcs0.html

  * igt@syncobj_timeline@device-submit-unordered:
    - shard-mtlp:         [DMESG-WARN][279] ([i915#2017]) -> [PASS][280]
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-7/igt@syncobj_timeline@device-submit-unordered.html
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-3/igt@syncobj_timeline@device-submit-unordered.html

  * igt@sysfs_timeslice_duration@timeout@vecs0:
    - shard-mtlp:         [ABORT][281] ([i915#8521]) -> [PASS][282]
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-8/igt@sysfs_timeslice_duration@timeout@vecs0.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html

  
#### Warnings ####

  * igt@api_intel_bb@object-reloc-keep-cache:
    - shard-dg2:          [SKIP][283] ([i915#2575]) -> [SKIP][284] ([i915#8411])
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@api_intel_bb@object-reloc-keep-cache.html
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@api_intel_bb@object-reloc-keep-cache.html

  * igt@feature_discovery@display-2x:
    - shard-dg2:          [SKIP][285] ([i915#2575]) -> [SKIP][286] ([i915#1839])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@feature_discovery@display-2x.html
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@feature_discovery@display-2x.html

  * igt@gem_busy@semaphore:
    - shard-dg2:          [SKIP][287] ([i915#2575]) -> [SKIP][288] ([i915#3936])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_busy@semaphore.html
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@gem_busy@semaphore.html

  * igt@gem_close_race@multigpu-basic-process:
    - shard-dg2:          [SKIP][289] ([i915#2575]) -> [SKIP][290] ([i915#7697])
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@gem_close_race@multigpu-basic-process.html

  * igt@gem_ctx_persistence@heartbeat-hang:
    - shard-dg2:          [SKIP][291] ([i915#2575]) -> [SKIP][292] ([i915#8555]) +2 similar issues
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hang.html
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hang.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-dg2:          [SKIP][293] ([i915#2575]) -> [SKIP][294] ([i915#280])
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_ctx_sseu@mmap-args.html
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_exec_balancer@bonded-true-hang:
    - shard-dg2:          [SKIP][295] ([i915#2575]) -> [SKIP][296] ([i915#4812])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@gem_exec_balancer@bonded-true-hang.html

  * igt@gem_exec_fair@basic-none-rrul:
    - shard-dg2:          [SKIP][297] ([i915#2575]) -> [SKIP][298] ([i915#3539] / [i915#4852]) +1 similar issue
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_exec_fair@basic-none-rrul.html
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html

  * igt@gem_exec_reloc@basic-cpu-gtt:
    - shard-dg2:          [SKIP][299] ([i915#2575]) -> [SKIP][300] ([i915#3281]) +7 similar issues
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt.html
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-gtt.html

  * igt@gem_exec_whisper@basic-contexts-priority-all:
    - shard-mtlp:         [TIMEOUT][301] ([i915#7392]) -> [ABORT][302] ([i915#7392] / [i915#8131])
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-4/igt@gem_exec_whisper@basic-contexts-priority-all.html
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-priority-all.html

  * igt@gem_fenced_exec_thrash@no-spare-fences-busy:
    - shard-dg2:          [SKIP][303] ([i915#2575]) -> [SKIP][304] ([i915#4860])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html

  * igt@gem_media_vme:
    - shard-dg2:          [SKIP][305] ([i915#2575]) -> [SKIP][306] ([i915#284])
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_media_vme.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@gem_media_vme.html

  * igt@gem_mmap_wc@bad-object:
    - shard-dg2:          [SKIP][307] ([i915#2575]) -> [SKIP][308] ([i915#4083]) +3 similar issues
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_mmap_wc@bad-object.html
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-1/igt@gem_mmap_wc@bad-object.html

  * igt@gem_pread@snoop:
    - shard-dg2:          [SKIP][309] ([i915#2575]) -> [SKIP][310] ([i915#3282]) +5 similar issues
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_pread@snoop.html
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@gem_pread@snoop.html

  * igt@gem_pxp@protected-raw-src-copy-not-readible:
    - shard-dg2:          [SKIP][311] ([i915#2575]) -> [SKIP][312] ([i915#4270]) +1 similar issue
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_pxp@protected-raw-src-copy-not-readible.html
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html

  * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled:
    - shard-dg2:          [SKIP][313] ([i915#2575] / [i915#5190]) -> [SKIP][314] ([i915#5190]) +3 similar issues
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-6/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html

  * igt@gem_render_tiled_blits@basic:
    - shard-dg2:          [SKIP][315] ([i915#2575]) -> [SKIP][316] ([i915#4079])
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_render_tiled_blits@basic.html
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@gem_render_tiled_blits@basic.html

  * igt@gem_tiled_blits@basic:
    - shard-dg2:          [SKIP][317] ([i915#2575]) -> [SKIP][318] ([i915#4077]) +6 similar issues
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_tiled_blits@basic.html
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@gem_tiled_blits@basic.html

  * igt@gem_unfence_active_buffers:
    - shard-dg2:          [SKIP][319] ([i915#2575]) -> [SKIP][320] ([i915#4879])
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_unfence_active_buffers.html
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@gem_unfence_active_buffers.html

  * igt@gem_userptr_blits@create-destroy-unsync:
    - shard-dg2:          [SKIP][321] ([i915#2575]) -> [SKIP][322] ([i915#3297]) +3 similar issues
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@gem_userptr_blits@create-destroy-unsync.html

  * igt@gen7_exec_parse@batch-without-end:
    - shard-dg2:          [SKIP][323] ([i915#2575]) -> [SKIP][324] ([fdo#109289]) +1 similar issue
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gen7_exec_parse@batch-without-end.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@gen7_exec_parse@batch-without-end.html

  * igt@gen9_exec_parse@bb-large:
    - shard-dg2:          [SKIP][325] ([i915#2575]) -> [SKIP][326] ([i915#2856]) +1 similar issue
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@gen9_exec_parse@bb-large.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@gen9_exec_parse@bb-large.html

  * igt@i915_module_load@reload-with-fault-injection:
    - shard-dg2:          [WARN][327] ([i915#7356]) -> [DMESG-WARN][328] ([i915#7061] / [i915#8617])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-dg2:          [SKIP][329] ([i915#2575]) -> [SKIP][330] ([i915#5978])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_pm_dc@dc6-dpms.html
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-11/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_rpm@gem-evict-pwrite:
    - shard-dg2:          [SKIP][331] ([i915#5174]) -> [SKIP][332] ([i915#4077])
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_pm_rpm@gem-evict-pwrite.html
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@i915_pm_rpm@gem-evict-pwrite.html

  * igt@i915_pm_rpm@i2c:
    - shard-dg1:          [DMESG-WARN][333] ([i915#4391] / [i915#4423]) -> [DMESG-WARN][334] ([i915#4391])
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-13/igt@i915_pm_rpm@i2c.html
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-19/igt@i915_pm_rpm@i2c.html

  * igt@i915_pm_rps@min-max-config-idle:
    - shard-dg2:          [SKIP][335] ([i915#2575]) -> [SKIP][336] ([i915#6621])
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@i915_pm_rps@min-max-config-idle.html

  * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
    - shard-dg2:          [SKIP][337] ([i915#2575]) -> [SKIP][338] ([i915#4212]) +1 similar issue
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html

  * igt@kms_async_flips@crc@pipe-a-edp-1:
    - shard-mtlp:         [DMESG-FAIL][339] ([i915#8561]) -> [DMESG-FAIL][340] ([i915#1982] / [i915#8561])
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-mtlp-6/igt@kms_async_flips@crc@pipe-a-edp-1.html
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-mtlp-1/igt@kms_async_flips@crc@pipe-a-edp-1.html

  * igt@kms_async_flips@invalid-async-flip:
    - shard-dg2:          [SKIP][341] ([i915#2575]) -> [SKIP][342] ([i915#6228])
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-1/igt@kms_async_flips@invalid-async-flip.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-dg2:          [SKIP][343] ([i915#2575]) -> [SKIP][344] ([i915#404])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
    - shard-dg2:          [SKIP][345] ([fdo#109315]) -> [SKIP][346] ([fdo#111614]) +2 similar issues
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
    - shard-dg2:          [SKIP][347] ([fdo#109315] / [i915#5190]) -> [SKIP][348] ([i915#5190]) +3 similar issues
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-dg2:          [SKIP][349] ([fdo#109315] / [i915#5190]) -> [SKIP][350] ([i915#4538] / [i915#5190]) +2 similar issues
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
    - shard-dg2:          [SKIP][351] ([i915#2575]) -> [SKIP][352] ([i915#3689] / [i915#3886] / [i915#5354]) +9 similar issues
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs:
    - shard-dg2:          [SKIP][353] ([i915#2575]) -> [SKIP][354] ([i915#5354]) +16 similar issues
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs.html
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs.html

  * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs:
    - shard-dg2:          [SKIP][355] ([i915#2575]) -> [SKIP][356] ([i915#3689] / [i915#5354]) +16 similar issues
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html

  * igt@kms_chamelium_color@gamma:
    - shard-dg2:          [SKIP][357] ([i915#2575]) -> [SKIP][358] ([fdo#111827])
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_chamelium_color@gamma.html
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
    - shard-dg2:          [SKIP][359] ([i915#2575]) -> [SKIP][360] ([i915#7828]) +5 similar issues
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html

  * igt@kms_color@deep-color:
    - shard-dg2:          [SKIP][361] ([i915#2575]) -> [SKIP][362] ([i915#3555])
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_color@deep-color.html
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@kms_color@deep-color.html

  * igt@kms_content_protection@content_type_change:
    - shard-dg2:          [SKIP][363] ([i915#2575]) -> [SKIP][364] ([i915#7118])
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_content_protection@content_type_change.html
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@kms_content_protection@content_type_change.html

  * igt@kms_content_protection@mei_interface:
    - shard-dg1:          [SKIP][365] ([i915#7116]) -> [SKIP][366] ([fdo#109300])
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-18/igt@kms_content_protection@mei_interface.html
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-16/igt@kms_content_protection@mei_interface.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-dg2:          [SKIP][367] ([i915#2575]) -> [SKIP][368] ([i915#3359])
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-dg2:          [SKIP][369] ([i915#2575]) -> [SKIP][370] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 similar issue
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-dg2:          [SKIP][371] ([i915#2575]) -> [SKIP][372] ([fdo#109274] / [i915#5354]) +2 similar issues
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-dg2:          [SKIP][373] ([i915#2575]) -> [SKIP][374] ([i915#4103] / [i915#4213])
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-dg2:          [SKIP][375] ([fdo#109315]) -> [SKIP][376] ([i915#3555] / [i915#3840])
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_dsc@dsc-with-output-formats.html
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-rkl:          [SKIP][377] ([fdo#110189] / [i915#3955]) -> [SKIP][378] ([i915#3955])
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
    - shard-dg2:          [SKIP][379] ([i915#2575]) -> [SKIP][380] ([i915#3469])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_fbcon_fbt@psr-suspend.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-dg2:          [SKIP][381] ([i915#2575]) -> [SKIP][382] ([fdo#109274]) +2 similar issues
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
    - shard-dg2:          [SKIP][383] ([fdo#109315]) -> [FAIL][384] ([i915#6880])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
    - shard-dg2:          [SKIP][385] ([fdo#109315]) -> [SKIP][386] ([i915#3458]) +15 similar issues
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
    - shard-dg2:          [SKIP][387] ([fdo#109315]) -> [SKIP][388] ([i915#5354]) +28 similar issues
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
    - shard-dg2:          [SKIP][389] ([fdo#109315]) -> [SKIP][390] ([i915#8708]) +15 similar issues
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html

  * igt@kms_hdr@bpc-switch:
    - shard-dg2:          [SKIP][391] ([i915#2575]) -> [SKIP][392] ([i915#3555] / [i915#8228])
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_hdr@bpc-switch.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@kms_hdr@bpc-switch.html

  * igt@kms_panel_fitting@legacy:
    - shard-dg2:          [SKIP][393] ([i915#2575]) -> [SKIP][394] ([i915#6301])
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_panel_fitting@legacy.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-dg2:          [SKIP][395] ([i915#2575]) -> [SKIP][396] ([i915#6953])
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
    - shard-dg2:          [SKIP][397] ([fdo#109315]) -> [SKIP][398] ([i915#658]) +1 similar issue
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html

  * igt@kms_psr@cursor_plane_move:
    - shard-dg1:          [SKIP][399] ([i915#1072]) -> [SKIP][400] ([i915#1072] / [i915#4078])
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-19/igt@kms_psr@cursor_plane_move.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-16/igt@kms_psr@cursor_plane_move.html

  * igt@kms_psr@primary_page_flip:
    - shard-dg1:          [SKIP][401] ([i915#1072] / [i915#4078]) -> [SKIP][402] ([i915#1072])
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg1-18/igt@kms_psr@primary_page_flip.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg1-17/igt@kms_psr@primary_page_flip.html

  * igt@kms_psr@psr2_dpms:
    - shard-dg2:          [SKIP][403] ([fdo#109315]) -> [SKIP][404] ([i915#1072]) +6 similar issues
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_psr@psr2_dpms.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-10/igt@kms_psr@psr2_dpms.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-dg2:          [SKIP][405] ([i915#2575]) -> [SKIP][406] ([i915#4235]) +3 similar issues
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_writeback@writeback-fb-id:
    - shard-dg2:          [SKIP][407] ([i915#2575]) -> [SKIP][408] ([i915#2437]) +1 similar issue
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-1/igt@kms_writeback@writeback-fb-id.html

  * igt@prime_self_import@reimport-vs-gem_close-race:
    - shard-dg2:          [SKIP][409] ([i915#2575]) -> [FAIL][410] ([i915#7951])
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13463/shard-dg2-11/igt@prime_self_import@reimport-vs-gem_close-race.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/shard-dg2-5/igt@prime_self_import@reimport-vs-gem_close-race.html

  
  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [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#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [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#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [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#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#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
  [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
  [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4793]: https://gitlab.freedesktop.org/drm/intel/issues/4793
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
  [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
  [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
  [i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892
  [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
  [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
  [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
  [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
  [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061
  [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
  [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
  [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
  [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
  [i915#7951]: https://gitlab.freedesktop.org/drm/intel/issues/7951
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8104]: https://gitlab.freedesktop.org/drm/intel/issues/8104
  [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248
  [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
  [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
  [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
  [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456
  [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
  [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521
  [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
  [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
  [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617
  [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
  [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691
  [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
  [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
  [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724
  [i915#8726]: https://gitlab.freedesktop.org/drm/intel/issues/8726
  [i915#8805]: https://gitlab.freedesktop.org/drm/intel/issues/8805
  [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
  [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
  [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
  [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7412 -> IGTPW_9504
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_13463: 20610a111d61d6945d578360942dc5c7bd828eb5 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_9504: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/index.html
  IGT_7412: 7412
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Add xe_media_fill test
  2023-08-03 11:51 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-08-03 20:15   ` Zbigniew Kempczyński
  0 siblings, 0 replies; 11+ messages in thread
From: Zbigniew Kempczyński @ 2023-08-03 20:15 UTC (permalink / raw)
  To: igt-dev; +Cc: SaiX Nandan Yedireswarapu

On Thu, Aug 03, 2023 at 11:51:20AM +0000, Patchwork wrote:
>    Patch Details
> 
>    Series:  Add xe_media_fill test                                         
>    URL:     https://patchwork.freedesktop.org/series/121943/               
>    State:   failure                                                        
>    Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/index.html 
> 
>          CI Bug Log - changes from CI_DRM_13463_full -> IGTPW_9504_full
> 
> Summary
> 
>    FAILURE
> 
>    Serious unknown changes coming with IGTPW_9504_full absolutely need to be
>    verified manually.
> 
>    If you think the reported changes have nothing to do with the changes
>    introduced in IGTPW_9504_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_9504/index.html
> 
> Participating hosts (10 -> 10)
> 
>    Additional (1): shard-rkl0
>    Missing (1): pig-kbl-iris
> 
> Possible new issues
> 
>    Here are the unknown changes that may have been introduced in
>    IGTPW_9504_full:
> 
>   IGT changes
> 
>     Possible regressions
> 
>      * igt@gem_userptr_blits@nohangcheck:
>           * shard-mtlp: PASS -> FAIL

Unrelated to the change.

--
Zbigniew

> 
> New tests
> 
>    New tests have been introduced between CI_DRM_13463_full and
>    IGTPW_9504_full:
> 
>   New IGT tests (2)
> 
>      * igt@kms_cursor_crc@cursor-dpms@pipe-a-hdmi-a-4:
> 
>           * Statuses : 1 pass(s)
>           * Exec time: [0.0] s
>      * igt@kms_cursor_crc@cursor-dpms@pipe-d-hdmi-a-4:
> 
>           * Statuses : 1 pass(s)
>           * Exec time: [0.0] s
> 
> Known issues
> 
>    Here are the changes found in IGTPW_9504_full that come from known issues:
> 
>   IGT changes
> 
>     Issues hit
> 
>      * igt@drm_fdinfo@busy-idle-check-all@ccs0:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#8414) +5 similar issues
>      * igt@drm_fdinfo@busy-idle@bcs0:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#8414) +9 similar issues
>      * igt@gem_caching@read-writes:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#4873)
>      * igt@gem_ccs@block-copy-compressed:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#3555 / i915#5325)
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#3555 / i915#5325)
> 
>      * igt@gem_ccs@ctrl-surf-copy-new-ctx:
> 
>           * shard-tglu: NOTRUN -> SKIP (i915#5325)
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#5325)
> 
>      * igt@gem_ctx_exec@basic-nohangcheck:
> 
>           * shard-rkl: PASS -> FAIL (i915#6268)
>      * igt@gem_ctx_isolation@preservation-s3@rcs0:
> 
>           * shard-snb: NOTRUN -> DMESG-WARN (i915#8841) +8 similar issues
>      * igt@gem_ctx_param@set-priority-not-supported:
> 
>           * shard-mtlp: NOTRUN -> SKIP (fdo#109314)
>      * igt@gem_ctx_persistence@engines-hang:
> 
>           * shard-snb: NOTRUN -> SKIP (fdo#109271 / i915#1099) +2 similar
>             issues
>      * igt@gem_ctx_persistence@saturated-hostile@vecs0:
> 
>           * shard-mtlp: PASS -> FAIL (i915#7816) +2 similar issues
>      * igt@gem_eio@reset-stress:
> 
>           * shard-dg1: PASS -> FAIL (i915#5784)
>      * igt@gem_exec_await@wide-contexts:
> 
>           * shard-dg2: PASS -> FAIL (i915#5892)
>      * igt@gem_exec_balancer@bonded-dual:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#4771)
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#4771) +1 similar issue
> 
>      * igt@gem_exec_flush@basic-wb-ro-before-default:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#3539 / i915#4852)
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#3539 / i915#4852)
> 
>      * igt@gem_exec_gttfill@multigpu-basic:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#7697)
>      * igt@gem_exec_reloc@basic-active:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#3281) +3 similar issues
>      * igt@gem_exec_reloc@basic-cpu-noreloc:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#3281) +3 similar issues
>      * igt@gem_exec_reloc@basic-range:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#3281) +2 similar issues
>      * igt@gem_exec_reloc@basic-write-cpu-active:
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#3281) +1 similar issue
>      * igt@gem_exec_schedule@semaphore-power:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#4812)
>      * igt@gem_fence_thrash@bo-write-verify-x:
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#4860)
>      * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#4860)
>      * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#4860)
>      * igt@gem_lmem_swapping@heavy-verify-multi:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#4613) +3 similar issues
>      * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#4613)
>      * igt@gem_mmap_gtt@basic-small-bo-tiledx:
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#4077) +1 similar issue
>      * igt@gem_mmap_gtt@basic-write-cpu-read-gtt:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#4077) +4 similar issues
>      * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#4077) +3 similar issues
>      * igt@gem_mmap_wc@copy:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#4083) +1 similar issue
>      * igt@gem_pxp@create-valid-protected-context:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#4270) +1 similar issue
>      * igt@gem_readwrite@read-bad-handle:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#3282) +2 similar issues
>      * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#5190) +2 similar issues
>      * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#8428) +1 similar issue
>      * igt@gem_set_tiling_vs_pwrite:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#3282) +1 similar issue
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#4079) +1 similar issue
> 
>      * igt@gem_tiled_pread_basic:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#4079) +2 similar issues
>      * igt@gem_userptr_blits@access-control:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#3297)
>      * igt@gem_userptr_blits@dmabuf-unsync:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#3297)
>      * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#3297 / i915#4880)
>      * igt@gem_workarounds@suspend-resume-fd:
> 
>           * shard-dg2: PASS -> FAIL (fdo#103375) +1 similar issue
>      * igt@gen3_render_tiledy_blits:
> 
>           * shard-dg2: NOTRUN -> SKIP (fdo#109289)
>      * igt@gen7_exec_parse@chained-batch:
> 
>           * shard-rkl: NOTRUN -> SKIP (fdo#109289) +1 similar issue
> 
>           * shard-dg1: NOTRUN -> SKIP (fdo#109289) +2 similar issues
> 
>      * igt@gen9_exec_parse@bb-oversize:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#2856) +1 similar issue
>      * igt@gen9_exec_parse@bb-start-cmd:
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#2527)
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#2856)
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#2527)
> 
>      * igt@i915_pipe_stress@stress-xrgb8888-untiled:
> 
>           * shard-mtlp: PASS -> FAIL (i915#8691)
>      * igt@i915_pm_dc@dc6-dpms:
> 
>           * shard-tglu: PASS -> FAIL (i915#3989 / i915#454)
>      * igt@i915_pm_freq_api@freq-reset:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#8399)
>      * igt@i915_pm_freq_api@freq-suspend:
> 
>           * shard-tglu: NOTRUN -> SKIP (i915#8399)
>      * igt@i915_pm_freq_api@freq-suspend@gt0:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#6645)
>      * igt@i915_pm_freq_api@freq-suspend@gt1:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#8805)
>      * igt@i915_pm_rpm@cursor:
> 
>           * shard-dg1: PASS -> FAIL (i915#7940)
>      * igt@i915_pm_rpm@dpms-mode-unset-lpsp:
> 
>           * shard-rkl: PASS -> SKIP (i915#1397)
>      * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
> 
>           * shard-dg2: PASS -> SKIP (i915#1397)
>      * igt@i915_pm_rps@thresholds-idle@gt0:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#8925) +1 similar issue
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#8925)
> 
>      * igt@i915_selftest@live@slpc:
> 
>           * shard-mtlp: PASS -> DMESG-WARN (i915#6367)
>      * igt@i915_selftest@live@workarounds:
> 
>           * shard-mtlp: PASS -> DMESG-FAIL (i915#6763)
>      * igt@kms_addfb_basic@basic-x-tiled-legacy:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#4212)
>      * igt@kms_addfb_basic@framebuffer-vs-set-tiling:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#4212)
>      * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2:
> 
>           * shard-glk: PASS -> FAIL (i915#2521)
>      * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#8502 / i915#8709) +11 similar
>             issues
>      * igt@kms_big_fb@4-tiled-16bpp-rotate-180:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#5286)
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#4538 / i915#5286)
> 
>      * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
> 
>           * shard-mtlp: PASS -> FAIL (i915#5138)
>      * igt@kms_big_fb@4-tiled-addfb:
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#5286)
> 
>           * shard-tglu: NOTRUN -> SKIP (i915#5286)
> 
>      * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
> 
>           * shard-dg2: NOTRUN -> SKIP (fdo#111614) +1 similar issue
> 
>           * shard-rkl: NOTRUN -> SKIP (fdo#111614 / i915#3638) +1 similar
>             issue
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#3638) +1 similar issue
> 
>      * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
> 
>           * shard-mtlp: PASS -> FAIL (i915#3743) +1 similar issue
>      * igt@kms_big_fb@y-tiled-addfb:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#6187)
>      * igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#4538 / i915#5190) +1 similar
>             issue
> 
>           * shard-rkl: NOTRUN -> SKIP (fdo#110723)
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#4538)
> 
>      * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
> 
>           * shard-mtlp: NOTRUN -> SKIP (fdo#111615) +1 similar issue
>      * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#3886 / i915#5354 / i915#6095)
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#3689 / i915#3886 / i915#5354 /
>             i915#6095)
> 
>      * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#3886 / i915#6095) +4 similar
>             issues
>      * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#3689 / i915#5354) +7 similar
>             issues
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#3734 / i915#5354 / i915#6095)
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#3689 / i915#5354 / i915#6095) +1
>             similar issue
> 
>      * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_ccs:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#6095) +11 similar issues
>      * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_mtl_rc_ccs_cc:
> 
>           * shard-tglu: NOTRUN -> SKIP (i915#5354 / i915#6095)
>      * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_rc_ccs:
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#5354 / i915#6095)
>      * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs:
> 
>           * shard-tglu: NOTRUN -> SKIP (i915#3689 / i915#5354 / i915#6095)
>      * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#5354) +4 similar issues
>      * igt@kms_cdclk@mode-transition@pipe-d-dp-4:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#4087 / i915#7213) +3 similar
>             issues
>      * igt@kms_cdclk@plane-scaling:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#3742)
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#3742)
> 
>      * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#4087) +3 similar issues
>      * igt@kms_chamelium_color@ctm-limited-range:
> 
>           * shard-mtlp: NOTRUN -> SKIP (fdo#111827)
>      * igt@kms_chamelium_frames@dp-frame-dump:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#7828)
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#7828)
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#7828) +1 similar issue
> 
>      * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#7828) +3 similar issues
>      * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
> 
>           * shard-dg2: NOTRUN -> TIMEOUT (i915#7173)
>      * igt@kms_content_protection@dp-mst-type-0:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#3299)
>      * igt@kms_cursor_crc@cursor-onscreen-32x32:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#8814) +1 similar issue
>      * igt@kms_cursor_crc@cursor-onscreen-512x170:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#3359)
>      * igt@kms_cursor_crc@cursor-random-512x170:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#3359)
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#3359)
> 
>      * igt@kms_cursor_crc@cursor-sliding-max-size:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#3555) +1 similar issue
>      * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#4103 / i915#4213)
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#4103)
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#4103 / i915#4213) +1 similar
>             issue
> 
>      * igt@kms_cursor_legacy@cursor-vs-flip-legacy:
> 
>           * shard-mtlp: PASS -> FAIL (i915#8248)
>      * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
> 
>           * shard-rkl: NOTRUN -> SKIP (fdo#111825) +3 similar issues
>      * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#3546)
>      * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
> 
>           * shard-mtlp: NOTRUN -> SKIP (fdo#111767 / i915#3546)
> 
>           * shard-tglu: NOTRUN -> SKIP (fdo#109274 / fdo#111767)
> 
>      * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> 
>           * shard-apl: PASS -> FAIL (i915#2346)
>      * igt@kms_display_modes@extended-mode-basic:
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#3555)
>      * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#3804)
>      * igt@kms_flip@2x-absolute-wf_vblank:
> 
>           * shard-dg2: NOTRUN -> SKIP (fdo#109274) +2 similar issues
>      * igt@kms_flip@2x-blocking-absolute-wf_vblank:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#3637) +1 similar issue
>      * igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
> 
>           * shard-mtlp: NOTRUN -> SKIP (fdo#111767 / i915#3637)
>      * igt@kms_flip@2x-nonexisting-fb:
> 
>           * shard-tglu: NOTRUN -> SKIP (fdo#109274 / i915#3637)
>      * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
> 
>           * shard-tglu: NOTRUN -> SKIP (i915#2587 / i915#2672)
>      * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#2672) +2 similar issues
>      * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#2672)
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#2587 / i915#2672)
> 
>      * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#2672) +1 similar issue
>      * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#8708) +3 similar issues
>      * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
> 
>           * shard-dg2: PASS -> FAIL (i915#6880)
>      * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
> 
>           * shard-dg2: NOTRUN -> FAIL (i915#6880)
>      * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#1825) +12 similar issues
>      * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
> 
>           * shard-dg1: NOTRUN -> SKIP (fdo#111825) +10 similar issues
>      * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
> 
>           * shard-tglu: NOTRUN -> SKIP (fdo#109280) +2 similar issues
>      * igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#5354) +2 similar issues
>      * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#8708) +4 similar issues
>      * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#8708) +2 similar issues
>      * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#3458) +3 similar issues
>      * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
> 
>           * shard-tglu: NOTRUN -> SKIP (fdo#110189)
>      * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite:
> 
>           * shard-rkl: NOTRUN -> SKIP (fdo#111825 / i915#1825) +6 similar
>             issues
>      * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#3023) +2 similar issues
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#3458) +2 similar issues
> 
>      * igt@kms_hdr@bpc-switch-dpms:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#3555 / i915#8228) +1 similar
>             issue
>      * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#4816)
>      * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
> 
>           * shard-tglu: NOTRUN -> SKIP (fdo#109289)
> 
>           * shard-mtlp: NOTRUN -> SKIP (fdo#109289) +3 similar issues
> 
>      * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes:
> 
>           * shard-mtlp: PASS -> FAIL (i915#1623)
>      * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#5176) +19 similar issues
>      * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#5235) +7 similar issues
>      * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
> 
>           * shard-snb: NOTRUN -> SKIP (fdo#109271) +193 similar issues
>      * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#5235) +1 similar issue
>      * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1:
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#5235) +19 similar issues
>      * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#658)
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#658)
> 
>      * igt@kms_psr2_sf@plane-move-sf-dmg-area:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#658) +1 similar issue
> 
>           * shard-rkl: NOTRUN -> SKIP (fdo#111068 / i915#658)
> 
>           * shard-dg1: NOTRUN -> SKIP (fdo#111068 / i915#658)
> 
>      * igt@kms_psr@psr2_sprite_mmap_cpu:
> 
>           * shard-mtlp: PASS -> FAIL (i915#8726)
>      * igt@kms_psr@psr2_sprite_plane_move:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#1072) +1 similar issue
>      * igt@kms_psr@sprite_plane_onoff:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#1072)
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#1072 / i915#4078)
> 
>      * igt@kms_rotation_crc@bad-pixel-format:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#4235) +1 similar issue
>      * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
> 
>           * shard-dg1: PASS -> DMESG-WARN (i915#1982)
>      * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#5030) +3 similar issues
>      * igt@kms_selftest@drm_format_helper:
> 
>           * shard-snb: NOTRUN -> SKIP (fdo#109271 / i915#8661)
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#8661)
> 
>      * igt@kms_vblank@pipe-c-ts-continuation-suspend:
> 
>           * shard-tglu: PASS -> ABORT (i915#5122 / i915#5251 / i915#8213)
>      * igt@kms_vrr@flip-basic:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#8808)
>      * igt@kms_vrr@negative-basic:
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#3555) +1 similar issue
>      * igt@perf@enable-disable@0-rcs0:
> 
>           * shard-dg2: PASS -> FAIL (i915#8724)
>      * igt@perf_pmu@event-wait@rcs0:
> 
>           * shard-dg2: NOTRUN -> SKIP (fdo#112283)
>      * igt@perf_pmu@most-busy-idle-check-all@rcs0:
> 
>           * shard-mtlp: PASS -> FAIL (i915#5234)
>      * igt@prime_self_import@reimport-vs-gem_close-race:
> 
>           * shard-dg1: PASS -> FAIL (i915#7951)
> 
>           * shard-mtlp: PASS -> FAIL (i915#7951)
> 
>      * igt@v3d/v3d_job_submission@array-job-submission:
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#2575) +3 similar issues
> 
>           * shard-tglu: NOTRUN -> SKIP (fdo#109315 / i915#2575) +1 similar
>             issue
> 
>      * igt@v3d/v3d_mmap@mmap-bad-flags:
> 
>           * shard-rkl: NOTRUN -> SKIP (fdo#109315) +1 similar issue
>      * igt@v3d/v3d_perfmon@destroy-invalid-perfmon:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#2575) +2 similar issues
>      * igt@v3d/v3d_submit_csd@bad-pad:
> 
>           * shard-glk: NOTRUN -> SKIP (fdo#109271) +31 similar issues
>      * igt@v3d/v3d_submit_csd@job-perfmon:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#2575) +6 similar issues
>      * igt@vc4/vc4_label_bo@set-bad-name:
> 
>           * shard-mtlp: NOTRUN -> SKIP (i915#7711) +1 similar issue
>      * igt@vc4/vc4_mmap@mmap-bo:
> 
>           * shard-dg2: NOTRUN -> SKIP (i915#7711) +2 similar issues
> 
>           * shard-rkl: NOTRUN -> SKIP (i915#7711) +1 similar issue
> 
>           * shard-dg1: NOTRUN -> SKIP (i915#7711) +1 similar issue
> 
>      * igt@vc4/vc4_wait_bo@bad-pad:
> 
>           * shard-tglu: NOTRUN -> SKIP (i915#2575)
> 
>     Possible fixes
> 
>      * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
> 
>           * shard-rkl: FAIL (i915#7742) -> PASS
>      * igt@fbdev@nullptr:
> 
>           * shard-dg2: SKIP (i915#2582) -> PASS
>      * igt@gem_ctx_isolation@preservation-s3@bcs0:
> 
>           * shard-glk: INCOMPLETE (i915#4793) -> PASS
>      * igt@gem_ctx_param@invalid-param-set:
> 
>           * shard-dg2: SKIP (i915#2575) -> PASS +161 similar issues
>      * igt@gem_ctx_persistence@engines-hang@vcs0:
> 
>           * shard-mtlp: FAIL (i915#2410) -> PASS
>      * igt@gem_eio@reset-stress:
> 
>           * shard-dg2: FAIL (i915#5784) -> PASS
>      * igt@gem_eio@unwedge-stress:
> 
>           * shard-dg1: FAIL (i915#5784) -> PASS
>      * igt@gem_exec_balancer@hang:
> 
>           * shard-mtlp: ABORT (i915#8104) -> PASS
>      * igt@gem_exec_fair@basic-deadline:
> 
>           * shard-rkl: FAIL (i915#2846) -> PASS
>      * igt@gem_exec_fair@basic-pace-share@rcs0:
> 
>           * shard-rkl: FAIL (i915#2842) -> PASS
> 
>           * shard-tglu: FAIL (i915#2842) -> PASS
> 
>      * igt@gem_exec_suspend@basic-s4-devices@lmem0:
> 
>           * shard-dg1: ABORT (i915#7975 / i915#8213) -> PASS
>      * igt@gem_exec_whisper@basic-contexts-forked-all:
> 
>           * shard-mtlp: ABORT (i915#7392 / i915#8131) -> PASS
>      * igt@i915_hangman@detector@vcs0:
> 
>           * shard-mtlp: FAIL (i915#8456) -> PASS +2 similar issues
>      * igt@i915_hangman@engine-engine-hang@vcs0:
> 
>           * shard-mtlp: FAIL (i915#7069) -> PASS
>      * igt@i915_module_load@reload:
> 
>           * shard-dg2: FAIL -> PASS
>      * igt@i915_pm_rc6_residency@rc6-fence:
> 
>           * shard-tglu: WARN (i915#2681) -> PASS
>      * igt@i915_pm_rc6_residency@rc6-idle@rcs0:
> 
>           * shard-dg1: FAIL (i915#3591) -> PASS
>      * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
> 
>           * shard-rkl: SKIP (i915#1397) -> PASS +1 similar issue
>      * igt@i915_pm_rpm@gem-execbuf-stress@lmem0:
> 
>           * shard-dg1: FAIL (i915#7940) -> PASS +1 similar issue
>      * igt@i915_selftest@live@gt_mocs:
> 
>           * shard-mtlp: DMESG-FAIL (i915#7059) -> PASS
>      * igt@i915_suspend@basic-s2idle-without-i915:
> 
>           * shard-dg2: WARN (i915#2575) -> PASS
>      * igt@kms_addfb_basic@addfb25-yf-tiled-legacy:
> 
>           * shard-dg2: SKIP (i915#2575 / i915#5190) -> PASS
>      * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> 
>           * shard-mtlp: FAIL (i915#5138) -> PASS
>      * igt@kms_cursor_legacy@cursor-vs-flip-toggle:
> 
>           * shard-mtlp: FAIL (i915#8248) -> PASS
>      * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> 
>           * shard-glk: FAIL (i915#2346) -> PASS
>      * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
> 
>           * shard-glk: FAIL (i915#79) -> PASS
>      * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
> 
>           * shard-dg2: SKIP (fdo#109315) -> PASS +21 similar issues
>      * igt@kms_hdmi_inject@inject-audio:
> 
>           * shard-tglu: SKIP (i915#433) -> PASS
>      * igt@kms_plane@pixel-format@pipe-b-planes:
> 
>           * shard-mtlp: FAIL (i915#1623) -> PASS
>      * igt@perf@polling-parameterized:
> 
>           * shard-dg2: SKIP (i915#5608) -> PASS +2 similar issues
>      * igt@perf_pmu@busy-double-start@rcs0:
> 
>           * shard-mtlp: FAIL (i915#4349) -> PASS
>      * igt@syncobj_timeline@device-submit-unordered:
> 
>           * shard-mtlp: DMESG-WARN (i915#2017) -> PASS
>      * igt@sysfs_timeslice_duration@timeout@vecs0:
> 
>           * shard-mtlp: ABORT (i915#8521) -> PASS
> 
>     Warnings
> 
>      * igt@api_intel_bb@object-reloc-keep-cache:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#8411)
>      * igt@feature_discovery@display-2x:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#1839)
>      * igt@gem_busy@semaphore:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#3936)
>      * igt@gem_close_race@multigpu-basic-process:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#7697)
>      * igt@gem_ctx_persistence@heartbeat-hang:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#8555) +2 similar issues
>      * igt@gem_ctx_sseu@mmap-args:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#280)
>      * igt@gem_exec_balancer@bonded-true-hang:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#4812)
>      * igt@gem_exec_fair@basic-none-rrul:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#3539 / i915#4852) +1
>             similar issue
>      * igt@gem_exec_reloc@basic-cpu-gtt:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#3281) +7 similar issues
>      * igt@gem_exec_whisper@basic-contexts-priority-all:
> 
>           * shard-mtlp: TIMEOUT (i915#7392) -> ABORT (i915#7392 / i915#8131)
>      * igt@gem_fenced_exec_thrash@no-spare-fences-busy:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#4860)
>      * igt@gem_media_vme:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#284)
>      * igt@gem_mmap_wc@bad-object:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#4083) +3 similar issues
>      * igt@gem_pread@snoop:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#3282) +5 similar issues
>      * igt@gem_pxp@protected-raw-src-copy-not-readible:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#4270) +1 similar issue
>      * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled:
> 
>           * shard-dg2: SKIP (i915#2575 / i915#5190) -> SKIP (i915#5190) +3
>             similar issues
>      * igt@gem_render_tiled_blits@basic:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#4079)
>      * igt@gem_tiled_blits@basic:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#4077) +6 similar issues
>      * igt@gem_unfence_active_buffers:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#4879)
>      * igt@gem_userptr_blits@create-destroy-unsync:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#3297) +3 similar issues
>      * igt@gen7_exec_parse@batch-without-end:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (fdo#109289) +1 similar issue
>      * igt@gen9_exec_parse@bb-large:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#2856) +1 similar issue
>      * igt@i915_module_load@reload-with-fault-injection:
> 
>           * shard-dg2: WARN (i915#7356) -> DMESG-WARN (i915#7061 / i915#8617)
>      * igt@i915_pm_dc@dc6-dpms:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#5978)
>      * igt@i915_pm_rpm@gem-evict-pwrite:
> 
>           * shard-dg2: SKIP (i915#5174) -> SKIP (i915#4077)
>      * igt@i915_pm_rpm@i2c:
> 
>           * shard-dg1: DMESG-WARN (i915#4391 / i915#4423) -> DMESG-WARN
>             (i915#4391)
>      * igt@i915_pm_rps@min-max-config-idle:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#6621)
>      * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#4212) +1 similar issue
>      * igt@kms_async_flips@crc@pipe-a-edp-1:
> 
>           * shard-mtlp: DMESG-FAIL (i915#8561) -> DMESG-FAIL (i915#1982 /
>             i915#8561)
>      * igt@kms_async_flips@invalid-async-flip:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#6228)
>      * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#404)
>      * igt@kms_big_fb@4-tiled-8bpp-rotate-90:
> 
>           * shard-dg2: SKIP (fdo#109315) -> SKIP (fdo#111614) +2 similar
>             issues
>      * igt@kms_big_fb@y-tiled-8bpp-rotate-270:
> 
>           * shard-dg2: SKIP (fdo#109315 / i915#5190) -> SKIP (i915#5190) +3
>             similar issues
>      * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
> 
>           * shard-dg2: SKIP (fdo#109315 / i915#5190) -> SKIP (i915#4538 /
>             i915#5190) +2 similar issues
>      * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#3689 / i915#3886 /
>             i915#5354) +9 similar issues
>      * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#5354) +16 similar
>             issues
>      * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#3689 / i915#5354) +16
>             similar issues
>      * igt@kms_chamelium_color@gamma:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (fdo#111827)
>      * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#7828) +5 similar issues
>      * igt@kms_color@deep-color:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#3555)
>      * igt@kms_content_protection@content_type_change:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#7118)
>      * igt@kms_content_protection@mei_interface:
> 
>           * shard-dg1: SKIP (i915#7116) -> SKIP (fdo#109300)
>      * igt@kms_cursor_crc@cursor-onscreen-512x170:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#3359)
>      * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (fdo#109274 / fdo#111767 /
>             i915#5354) +1 similar issue
>      * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (fdo#109274 / i915#5354) +2
>             similar issues
>      * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#4103 / i915#4213)
>      * igt@kms_dsc@dsc-with-output-formats:
> 
>           * shard-dg2: SKIP (fdo#109315) -> SKIP (i915#3555 / i915#3840)
>      * igt@kms_fbcon_fbt@psr-suspend:
> 
>           * shard-rkl: SKIP (fdo#110189 / i915#3955) -> SKIP (i915#3955)
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#3469)
> 
>      * igt@kms_flip@2x-plain-flip-fb-recreate:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (fdo#109274) +2 similar
>             issues
>      * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
> 
>           * shard-dg2: SKIP (fdo#109315) -> FAIL (i915#6880)
>      * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
> 
>           * shard-dg2: SKIP (fdo#109315) -> SKIP (i915#3458) +15 similar
>             issues
>      * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
> 
>           * shard-dg2: SKIP (fdo#109315) -> SKIP (i915#5354) +28 similar
>             issues
>      * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
> 
>           * shard-dg2: SKIP (fdo#109315) -> SKIP (i915#8708) +15 similar
>             issues
>      * igt@kms_hdr@bpc-switch:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#3555 / i915#8228)
>      * igt@kms_panel_fitting@legacy:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#6301)
>      * igt@kms_plane_scaling@intel-max-src-size:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#6953)
>      * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
> 
>           * shard-dg2: SKIP (fdo#109315) -> SKIP (i915#658) +1 similar issue
>      * igt@kms_psr@cursor_plane_move:
> 
>           * shard-dg1: SKIP (i915#1072) -> SKIP (i915#1072 / i915#4078)
>      * igt@kms_psr@primary_page_flip:
> 
>           * shard-dg1: SKIP (i915#1072 / i915#4078) -> SKIP (i915#1072)
>      * igt@kms_psr@psr2_dpms:
> 
>           * shard-dg2: SKIP (fdo#109315) -> SKIP (i915#1072) +6 similar
>             issues
>      * igt@kms_rotation_crc@primary-rotation-270:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#4235) +3 similar issues
>      * igt@kms_writeback@writeback-fb-id:
> 
>           * shard-dg2: SKIP (i915#2575) -> SKIP (i915#2437) +1 similar issue
>      * igt@prime_self_import@reimport-vs-gem_close-race:
> 
>           * shard-dg2: SKIP (i915#2575) -> FAIL (i915#7951)
> 
> Build changes
> 
>      * CI: CI-20190529 -> None
>      * IGT: IGT_7412 -> IGTPW_9504
>      * Piglit: piglit_4509 -> None
> 
>    CI-20190529: 20190529
>    CI_DRM_13463: 20610a111d61d6945d578360942dc5c7bd828eb5 @
>    git://anongit.freedesktop.org/gfx-ci/linux
>    IGTPW_9504: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9504/index.html
>    IGT_7412: 7412
>    piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
>    git://anongit.freedesktop.org/piglit

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

* Re: [igt-dev] [PATCH i-g-t 1/2] lib/media_fill: Use RENDER engine flag to work on Xe
  2023-08-03  7:49 ` [igt-dev] [PATCH i-g-t 1/2] lib/media_fill: Use RENDER engine flag to work on Xe Zbigniew Kempczyński
@ 2023-08-03 21:11   ` Manszewski, Christoph
  2023-08-04  8:21     ` Zbigniew Kempczyński
  0 siblings, 1 reply; 11+ messages in thread
From: Manszewski, Christoph @ 2023-08-03 21:11 UTC (permalink / raw)
  To: Zbigniew Kempczyński, igt-dev

Hi Zbigniew,

On 3.08.2023 09:49, Zbigniew Kempczyński wrote:
> Due to explicit requirement of running on valid hw engine on xe
> change I915_EXEC_DEFAULT to I915_EXEC_RENDER. This change doesn't
> break i915 media pipeline allowing to create and assign valid xe
> engine to execute media fill test.
> 
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Christoph Manszewski <christoph.manszewski@intel.com>
> ---
>   lib/media_fill.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/media_fill.c b/lib/media_fill.c
> index e80dae1505..2520995d97 100644
> --- a/lib/media_fill.c
> +++ b/lib/media_fill.c
> @@ -281,7 +281,7 @@ __gen9_media_fillfunc(int i915,
>   	intel_bb_ptr_align(ibb, 32);
>   
>   	intel_bb_exec(ibb, intel_bb_offset(ibb),
> -		      I915_EXEC_DEFAULT | I915_EXEC_NO_RELOC, true);
> +		      I915_EXEC_RENDER | I915_EXEC_NO_RELOC, true);

As discussed offline - since we are the ones doing the i915 to xe engine 
type conversion, we could as well translate 'I915_EXEC_DEFAULT' to 
'DRM_XE_ENGINE_CLASS_RENDER'. But I think it's a minor thing, besides I 
already reviewed a similar change in gpgpu_fill so:

Reviewed-by: Christoph Manszewski <christoph.manszewski@intel.com>

Christoph


>   
>   	intel_bb_destroy(ibb);
>   }

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

* Re: [igt-dev] [PATCH i-g-t 2/2] tests/xe_media_fill: Exercise media fill on Xe
  2023-08-03  7:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe_media_fill: Exercise media fill " Zbigniew Kempczyński
@ 2023-08-03 21:18   ` Manszewski, Christoph
  2023-08-04  8:22     ` Zbigniew Kempczyński
  0 siblings, 1 reply; 11+ messages in thread
From: Manszewski, Christoph @ 2023-08-03 21:18 UTC (permalink / raw)
  To: Zbigniew Kempczyński, igt-dev

Hi Zbigniew,

On 3.08.2023 09:49, Zbigniew Kempczyński wrote:
> Platforms like Tigerlake and DG1 have dedicated media pipeline so
> add simple test which exercises it.
> 
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Christoph Manszewski <christoph.manszewski@intel.com>
> ---
>   tests/meson.build        |   1 +
>   tests/xe/xe_media_fill.c | 135 +++++++++++++++++++++++++++++++++++++++
>   2 files changed, 136 insertions(+)
>   create mode 100644 tests/xe/xe_media_fill.c
> 
> diff --git a/tests/meson.build b/tests/meson.build
> index b9f0a9c159..58061dbc26 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -282,6 +282,7 @@ xe_progs = [
>   	'xe_huc_copy',
>   	'xe_intel_bb',
>   	'xe_live_ktest',
> +	'xe_media_fill',
>   	'xe_mmap',
>   	'xe_mmio',
>   	'xe_module_load',
> diff --git a/tests/xe/xe_media_fill.c b/tests/xe/xe_media_fill.c
> new file mode 100644
> index 0000000000..5227ac3ee6
> --- /dev/null
> +++ b/tests/xe/xe_media_fill.c
> @@ -0,0 +1,135 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2023 Intel Corporation
> + */
> +
> +/*
> + * This file is a basic test for the media_fill() function, a very simple
> + * workload for the Media pipeline.
> + */
> +
> +#include <stdbool.h>
> +#include <unistd.h>
> +#include <stdlib.h>
> +#include <sys/ioctl.h>
> +#include <stdio.h>
> +#include <string.h>
> +#include <fcntl.h>
> +#include <inttypes.h>
> +#include <errno.h>
> +#include <sys/stat.h>
> +#include <sys/time.h>
> +
> +#include "drm.h"
> +#include "igt.h"
> +#include "xe/xe_ioctl.h"
> +#include "xe/xe_query.h"
> +
> +/**
> + * TEST: xe media fill
> + * Description: Basic test for the media_fill() function,
> + *              a very simple workload for the Media pipeline.
> + * Feature: media
> + * Run type: FULL
> + *
> + * SUBTEST: media-fill
> + */
> +
> +IGT_TEST_DESCRIPTION("Basic test for the media_fill() function, a very simple"
> +		     " xe workload for the Media pipeline.");
> +
> +#define WIDTH 64
> +#define STRIDE (WIDTH)
> +#define HEIGHT 64
> +#define SIZE (HEIGHT*STRIDE)
> +
> +#define COLOR_C4	0xc4
> +#define COLOR_4C	0x4c
> +
> +struct data_t {
> +	int drm_fd;
> +	uint32_t devid;
> +	struct buf_ops *bops;
> +};
> +
> +static struct intel_buf *
> +create_buf(struct data_t *data, int width, int height, uint8_t color)
> +{
> +	struct intel_buf *buf;
> +	uint8_t *ptr;
> +	int i;
> +
> +	buf = calloc(1, sizeof(*buf));
> +	igt_assert(buf);
> +
> +	buf = intel_buf_create(data->bops, width/4, height, 32, 0,
> +			       I915_TILING_NONE, 0);
> +
> +	ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size);
> +
> +	for (i = 0; i < buf->surface[0].size; i++)
> +		ptr[i] = color;
> +
> +	munmap(ptr, buf->surface[0].size);
> +
> +	return buf;
> +}
> +
> +static void buf_check(uint8_t *ptr, int x, int y, uint8_t color)
> +{
> +	uint8_t val;
> +
> +	val = ptr[y * WIDTH + x];
> +	igt_assert_f(val == color,
> +		     "Expected 0x%02x, found 0x%02x at (%d,%d)\n",
> +		     color, val, x, y);
> +}
> +
> +static void media_fill(struct data_t *data, igt_fillfunc_t fill)
> +{
> +	struct intel_buf *buf;
> +	uint8_t *ptr;
> +	int i, j;
> +
> +	buf = create_buf(data, WIDTH, HEIGHT, COLOR_C4);
> +	ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size);
> +
> +	for (i = 0; i < WIDTH; i++)
> +		for (j = 0; j < HEIGHT; j++)
> +			buf_check(ptr, i, j, COLOR_C4);
> +
> +	fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
> +
> +	for (i = 0; i < WIDTH; i++)
> +		for (j = 0; j < HEIGHT; j++)
> +			if (i < WIDTH / 2 && j < HEIGHT / 2)
> +				buf_check(ptr, i, j, COLOR_4C);
> +			else
> +				buf_check(ptr, i, j, COLOR_C4);
> +
> +	munmap(ptr, buf->surface[0].size);
> +}
> +
> +igt_main
> +{
> +	struct data_t data = {0, };
> +	igt_fillfunc_t fill_fn = NULL;
> +
> +	igt_fixture {
> +		data.drm_fd = drm_open_driver_render(DRIVER_XE);
> +		data.devid = intel_get_drm_devid(data.drm_fd);
> +		data.bops = buf_ops_create(data.drm_fd);
> +
> +		fill_fn = igt_get_media_fillfunc(data.devid);
> +
> +		igt_require_f(fill_fn, "no media-fill function\n");
> +	}
> +
> +	igt_subtest("media-fill")
> +		media_fill(&data, fill_fn);
> +
> +	igt_fixture {
> +		drm_close_driver(data.drm_fd);

Add the complementary 'buf_ops_destroy()' call here and we end up with 
an exact copy of xe_gpgpu_fill. This begs the question if we could maybe 
implement some 'xe_pipeline_fill' test, that could simply run both fill 
functions, either in the same sub-test or separate sub-tests.

Anyway - the code looks good to me, so:
Reviewed-by: Christoph Manszewski <christoph.manszewski@intel.com>

Christoph


> +	}
> +}
> +

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

* Re: [igt-dev] [PATCH i-g-t 1/2] lib/media_fill: Use RENDER engine flag to work on Xe
  2023-08-03 21:11   ` Manszewski, Christoph
@ 2023-08-04  8:21     ` Zbigniew Kempczyński
  0 siblings, 0 replies; 11+ messages in thread
From: Zbigniew Kempczyński @ 2023-08-04  8:21 UTC (permalink / raw)
  To: Manszewski, Christoph; +Cc: igt-dev

On Thu, Aug 03, 2023 at 11:11:19PM +0200, Manszewski, Christoph wrote:
> Hi Zbigniew,
> 
> On 3.08.2023 09:49, Zbigniew Kempczyński wrote:
> > Due to explicit requirement of running on valid hw engine on xe
> > change I915_EXEC_DEFAULT to I915_EXEC_RENDER. This change doesn't
> > break i915 media pipeline allowing to create and assign valid xe
> > engine to execute media fill test.
> > 
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Cc: Christoph Manszewski <christoph.manszewski@intel.com>
> > ---
> >   lib/media_fill.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/lib/media_fill.c b/lib/media_fill.c
> > index e80dae1505..2520995d97 100644
> > --- a/lib/media_fill.c
> > +++ b/lib/media_fill.c
> > @@ -281,7 +281,7 @@ __gen9_media_fillfunc(int i915,
> >   	intel_bb_ptr_align(ibb, 32);
> >   	intel_bb_exec(ibb, intel_bb_offset(ibb),
> > -		      I915_EXEC_DEFAULT | I915_EXEC_NO_RELOC, true);
> > +		      I915_EXEC_RENDER | I915_EXEC_NO_RELOC, true);
> 
> As discussed offline - since we are the ones doing the i915 to xe engine
> type conversion, we could as well translate 'I915_EXEC_DEFAULT' to
> 'DRM_XE_ENGINE_CLASS_RENDER'. But I think it's a minor thing, besides I
> already reviewed a similar change in gpgpu_fill so:
> 
> Reviewed-by: Christoph Manszewski <christoph.manszewski@intel.com>
> 
> Christoph

Thank you for the review. If I'm not wrong blitter didn't have dedicated
ring for gen < 6 (see HAS_BLT_RING() macro in igt code for reference).

--
Zbigniew

> 
> 
> >   	intel_bb_destroy(ibb);
> >   }

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

* Re: [igt-dev] [PATCH i-g-t 2/2] tests/xe_media_fill: Exercise media fill on Xe
  2023-08-03 21:18   ` Manszewski, Christoph
@ 2023-08-04  8:22     ` Zbigniew Kempczyński
  0 siblings, 0 replies; 11+ messages in thread
From: Zbigniew Kempczyński @ 2023-08-04  8:22 UTC (permalink / raw)
  To: Manszewski, Christoph; +Cc: igt-dev

On Thu, Aug 03, 2023 at 11:18:22PM +0200, Manszewski, Christoph wrote:
> Hi Zbigniew,
> 
> On 3.08.2023 09:49, Zbigniew Kempczyński wrote:
> > Platforms like Tigerlake and DG1 have dedicated media pipeline so
> > add simple test which exercises it.
> > 
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Cc: Christoph Manszewski <christoph.manszewski@intel.com>
> > ---
> >   tests/meson.build        |   1 +
> >   tests/xe/xe_media_fill.c | 135 +++++++++++++++++++++++++++++++++++++++
> >   2 files changed, 136 insertions(+)
> >   create mode 100644 tests/xe/xe_media_fill.c
> > 
> > diff --git a/tests/meson.build b/tests/meson.build
> > index b9f0a9c159..58061dbc26 100644
> > --- a/tests/meson.build
> > +++ b/tests/meson.build
> > @@ -282,6 +282,7 @@ xe_progs = [
> >   	'xe_huc_copy',
> >   	'xe_intel_bb',
> >   	'xe_live_ktest',
> > +	'xe_media_fill',
> >   	'xe_mmap',
> >   	'xe_mmio',
> >   	'xe_module_load',
> > diff --git a/tests/xe/xe_media_fill.c b/tests/xe/xe_media_fill.c
> > new file mode 100644
> > index 0000000000..5227ac3ee6
> > --- /dev/null
> > +++ b/tests/xe/xe_media_fill.c
> > @@ -0,0 +1,135 @@
> > +// SPDX-License-Identifier: MIT
> > +/*
> > + * Copyright © 2023 Intel Corporation
> > + */
> > +
> > +/*
> > + * This file is a basic test for the media_fill() function, a very simple
> > + * workload for the Media pipeline.
> > + */
> > +
> > +#include <stdbool.h>
> > +#include <unistd.h>
> > +#include <stdlib.h>
> > +#include <sys/ioctl.h>
> > +#include <stdio.h>
> > +#include <string.h>
> > +#include <fcntl.h>
> > +#include <inttypes.h>
> > +#include <errno.h>
> > +#include <sys/stat.h>
> > +#include <sys/time.h>
> > +
> > +#include "drm.h"
> > +#include "igt.h"
> > +#include "xe/xe_ioctl.h"
> > +#include "xe/xe_query.h"
> > +
> > +/**
> > + * TEST: xe media fill
> > + * Description: Basic test for the media_fill() function,
> > + *              a very simple workload for the Media pipeline.
> > + * Feature: media
> > + * Run type: FULL
> > + *
> > + * SUBTEST: media-fill
> > + */
> > +
> > +IGT_TEST_DESCRIPTION("Basic test for the media_fill() function, a very simple"
> > +		     " xe workload for the Media pipeline.");
> > +
> > +#define WIDTH 64
> > +#define STRIDE (WIDTH)
> > +#define HEIGHT 64
> > +#define SIZE (HEIGHT*STRIDE)
> > +
> > +#define COLOR_C4	0xc4
> > +#define COLOR_4C	0x4c
> > +
> > +struct data_t {
> > +	int drm_fd;
> > +	uint32_t devid;
> > +	struct buf_ops *bops;
> > +};
> > +
> > +static struct intel_buf *
> > +create_buf(struct data_t *data, int width, int height, uint8_t color)
> > +{
> > +	struct intel_buf *buf;
> > +	uint8_t *ptr;
> > +	int i;
> > +
> > +	buf = calloc(1, sizeof(*buf));
> > +	igt_assert(buf);
> > +
> > +	buf = intel_buf_create(data->bops, width/4, height, 32, 0,
> > +			       I915_TILING_NONE, 0);
> > +
> > +	ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size);
> > +
> > +	for (i = 0; i < buf->surface[0].size; i++)
> > +		ptr[i] = color;
> > +
> > +	munmap(ptr, buf->surface[0].size);
> > +
> > +	return buf;
> > +}
> > +
> > +static void buf_check(uint8_t *ptr, int x, int y, uint8_t color)
> > +{
> > +	uint8_t val;
> > +
> > +	val = ptr[y * WIDTH + x];
> > +	igt_assert_f(val == color,
> > +		     "Expected 0x%02x, found 0x%02x at (%d,%d)\n",
> > +		     color, val, x, y);
> > +}
> > +
> > +static void media_fill(struct data_t *data, igt_fillfunc_t fill)
> > +{
> > +	struct intel_buf *buf;
> > +	uint8_t *ptr;
> > +	int i, j;
> > +
> > +	buf = create_buf(data, WIDTH, HEIGHT, COLOR_C4);
> > +	ptr = xe_bo_map(data->drm_fd, buf->handle, buf->surface[0].size);
> > +
> > +	for (i = 0; i < WIDTH; i++)
> > +		for (j = 0; j < HEIGHT; j++)
> > +			buf_check(ptr, i, j, COLOR_C4);
> > +
> > +	fill(data->drm_fd, buf, 0, 0, WIDTH / 2, HEIGHT / 2, COLOR_4C);
> > +
> > +	for (i = 0; i < WIDTH; i++)
> > +		for (j = 0; j < HEIGHT; j++)
> > +			if (i < WIDTH / 2 && j < HEIGHT / 2)
> > +				buf_check(ptr, i, j, COLOR_4C);
> > +			else
> > +				buf_check(ptr, i, j, COLOR_C4);
> > +
> > +	munmap(ptr, buf->surface[0].size);
> > +}
> > +
> > +igt_main
> > +{
> > +	struct data_t data = {0, };
> > +	igt_fillfunc_t fill_fn = NULL;
> > +
> > +	igt_fixture {
> > +		data.drm_fd = drm_open_driver_render(DRIVER_XE);
> > +		data.devid = intel_get_drm_devid(data.drm_fd);
> > +		data.bops = buf_ops_create(data.drm_fd);
> > +
> > +		fill_fn = igt_get_media_fillfunc(data.devid);
> > +
> > +		igt_require_f(fill_fn, "no media-fill function\n");
> > +	}
> > +
> > +	igt_subtest("media-fill")
> > +		media_fill(&data, fill_fn);
> > +
> > +	igt_fixture {
> > +		drm_close_driver(data.drm_fd);
> 
> Add the complementary 'buf_ops_destroy()' call here and we end up with an
> exact copy of xe_gpgpu_fill. This begs the question if we could maybe
> implement some 'xe_pipeline_fill' test, that could simply run both fill
> functions, either in the same sub-test or separate sub-tests.
> 
> Anyway - the code looks good to me, so:
> Reviewed-by: Christoph Manszewski <christoph.manszewski@intel.com>
> 
> Christoph

Thanks for the review. I've added buf_ops_destroy() and merged.

--
Zbigniew

> 
> 
> > +	}
> > +}
> > +

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

end of thread, other threads:[~2023-08-04  8:23 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-03  7:49 [igt-dev] [PATCH i-g-t 0/2] Add xe_media_fill test Zbigniew Kempczyński
2023-08-03  7:49 ` [igt-dev] [PATCH i-g-t 1/2] lib/media_fill: Use RENDER engine flag to work on Xe Zbigniew Kempczyński
2023-08-03 21:11   ` Manszewski, Christoph
2023-08-04  8:21     ` Zbigniew Kempczyński
2023-08-03  7:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe_media_fill: Exercise media fill " Zbigniew Kempczyński
2023-08-03 21:18   ` Manszewski, Christoph
2023-08-04  8:22     ` Zbigniew Kempczyński
2023-08-03  8:25 ` [igt-dev] ○ CI.xeBAT: info for Add xe_media_fill test Patchwork
2023-08-03  8:33 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-08-03 11:51 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-08-03 20:15   ` Zbigniew Kempczyński

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