All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lib: replace libprocps/libproc2 with /proc-based process enumeration
@ 2026-06-03 18:28 Jia Yao
  2026-06-04  1:23 ` ✓ i915.CI.BAT: success for " Patchwork
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Jia Yao @ 2026-06-03 18:28 UTC (permalink / raw)
  To: igt-dev; +Cc: Jia Yao, Zongyao Bai

The previous code used compile-time #ifdef HAVE_LIBPROCPS / HAVE_LIBPROC2
to select between two incompatible APIs, requiring separate builds for
Ubuntu 22.04 (libprocps) and Ubuntu 24.04 (libproc2).
Replace the platform-specific code with internal static helpers in
igt_aux.c that read /proc/<pid>/status directly, requiring no external
library and working identically across distro versions.
The libprocps/libproc2 meson dependencies have been removed entirely.

Cc: Zongyao Bai <zongyao.bai@intel.com>
Signed-off-by: Jia Yao <jia.yao@intel.com>
---
 lib/igt_aux.c   | 203 +++++++++++++++++++++++++++++++-----------------
 lib/meson.build |   6 --
 meson.build     |  13 +---
 3 files changed, 131 insertions(+), 91 deletions(-)

diff --git a/lib/igt_aux.c b/lib/igt_aux.c
index 87c0593a4..0d250ae2f 100644
--- a/lib/igt_aux.c
+++ b/lib/igt_aux.c
@@ -53,12 +53,6 @@
 #include <assert.h>
 #include <grp.h>
 
-#ifdef HAVE_LIBPROCPS
-#  include <proc/readproc.h>
-#elif HAVE_LIBPROC2
-#  include <libproc2/pids.h>
-#endif
-
 #include <dirent.h>
 #ifdef __linux__
 #  include <libudev.h>
@@ -1285,93 +1279,156 @@ void igt_unlock_mem(void)
 	locked_mem = NULL;
 }
 
+/*
+ * Internal /proc-based process iterator.  Reads /proc/<pid>/status directly
+ * so there is no dependency on libprocps or libproc2.
+ *
+ * /proc/<pid>/status fields used:
+ *   Name:  <comm>  - command name (kernel escapes spaces, so %s is safe)
+ *   Pid:   <pid>
+ *   Uid:   ruid euid suid fsuid
+ *   Gid:   rgid egid sgid fsgid
+ */
+struct procps_iter {
+	DIR   *procdir;
+	char   comm[64];
+	pid_t  tid;
+	uid_t  euid;
+	gid_t  egid;
+};
+
+static struct procps_iter *procps_open(void)
+{
+	struct procps_iter *iter = calloc(1, sizeof(*iter));
+
+	if (!iter)
+		return NULL;
+
+	iter->procdir = opendir("/proc");
+	if (!iter->procdir) {
+		free(iter);
+		return NULL;
+	}
+
+	return iter;
+}
+
+static bool procps_next(struct procps_iter *iter,
+			pid_t *tid, uid_t *euid, gid_t *egid,
+			const char **comm)
+{
+	struct dirent *ent;
+
+	if (!iter || !iter->procdir)
+		return false;
+
+	while ((ent = readdir(iter->procdir))) {
+		char path[64];
+		FILE *f;
+		pid_t _tid = 0;
+		uid_t _euid = 0;
+		gid_t _egid = 0;
+		char _comm[64] = "";
+		int fields = 0;   /* bit 0=Name, 1=Pid, 2=Uid, 3=Gid */
+		char line[256];
+
+		if (ent->d_name[0] < '1' || ent->d_name[0] > '9')
+			continue;
+
+		snprintf(path, sizeof(path), "/proc/%.20s/status", ent->d_name);
+
+		f = fopen(path, "r");
+		if (!f)
+			continue;
+
+		while (fields != 0xf && fgets(line, sizeof(line), f)) {
+			if (!(fields & 0x1) && strncmp(line, "Name:", 5) == 0) {
+				if (sscanf(line + 5, " %63s", _comm) == 1)
+					fields |= 0x1;
+			} else if (!(fields & 0x2) && strncmp(line, "Pid:", 4) == 0) {
+				if (sscanf(line + 4, " %d", &_tid) == 1)
+					fields |= 0x2;
+			} else if (!(fields & 0x4) && strncmp(line, "Uid:", 4) == 0) {
+				/* skip ruid, read euid */
+				unsigned int _e;
+
+				if (sscanf(line + 4, " %*u %u", &_e) == 1) {
+					_euid = (uid_t)_e;
+					fields |= 0x4;
+				}
+			} else if (!(fields & 0x8) && strncmp(line, "Gid:", 4) == 0) {
+				/* skip rgid, read egid */
+				unsigned int _e;
+
+				if (sscanf(line + 4, " %*u %u", &_e) == 1) {
+					_egid = (gid_t)_e;
+					fields |= 0x8;
+				}
+			}
+		}
+
+		fclose(f);
+
+		if (_tid <= 0)
+			continue;
+
+		iter->tid  = _tid;
+		iter->euid = _euid;
+		iter->egid = _egid;
+		snprintf(iter->comm, sizeof(iter->comm), "%s", _comm);
+
+		*tid  = iter->tid;
+		*euid = iter->euid;
+		*egid = iter->egid;
+		*comm = iter->comm;
+		return true;
+	}
+
+	return false;
+}
+
+static void procps_close(struct procps_iter *iter)
+{
+	if (!iter)
+		return;
+
+	if (iter->procdir)
+		closedir(iter->procdir);
+
+	free(iter);
+}
+
 struct igt_process {
-#ifdef HAVE_LIBPROCPS
-	PROCTAB * proc;
-	proc_t *proc_info;
-#elif HAVE_LIBPROC2
-	struct pids_info *info;
-	struct pids_stack *stack;
-#endif
+	struct procps_iter *iter;
 	pid_t tid;
-	pid_t euid;
-	pid_t egid;
-	char *comm;
+	uid_t euid;
+	gid_t egid;
+	const char *comm;
 };
 
 static void open_process(struct igt_process *prcs)
 {
-#ifdef HAVE_LIBPROCPS
-	prcs->proc = openproc(PROC_FILLCOM | PROC_FILLSTAT | PROC_FILLARG);
-	igt_assert_f(prcs->proc != NULL, "procps open failed\n");
-	prcs->proc_info = NULL;
-#elif HAVE_LIBPROC2
-	enum pids_item Items[] = { PIDS_ID_PID, PIDS_ID_EUID, PIDS_ID_EGID, PIDS_CMD };
-	int err;
-
-	prcs->info = NULL;
-	err = procps_pids_new(&prcs->info, Items, 4);
-	igt_assert_f(err >= 0, "procps-ng open failed\n");
-	prcs->stack = NULL;
-#endif
+	prcs->iter = procps_open();
+	igt_assert_f(prcs->iter, "procps open failed (no /proc filesystem?)\n");
 	prcs->tid = 0;
 	prcs->comm = NULL;
 }
 
 static void close_process(struct igt_process *prcs)
 {
-#ifdef HAVE_LIBPROCPS
-	if (prcs->proc_info)
-		freeproc(prcs->proc_info);
-
-	closeproc(prcs->proc);
-	prcs->proc_info = NULL;
-	prcs->proc = NULL;
-#elif HAVE_LIBPROC2
-	procps_pids_unref(&prcs->info);
-	prcs->info = NULL;
-#endif
+	procps_close(prcs->iter);
+	prcs->iter = NULL;
 	prcs->tid = 0;
 	prcs->comm = NULL;
 }
 
 static bool get_process_ids(struct igt_process *prcs)
 {
-#ifdef HAVE_LIBPROCPS
-	if (prcs->proc_info)
-		freeproc(prcs->proc_info);
-
-	prcs->tid = 0;
-	prcs->comm = NULL;
-	prcs->proc_info = readproc(prcs->proc, NULL);
-
-	if (prcs->proc_info) {
-		prcs->tid = prcs->proc_info->tid;
-		prcs->euid = prcs->proc_info->euid;
-		prcs->egid = prcs->proc_info->egid;
-		prcs->comm = prcs->proc_info->cmd;
-	}
-#elif HAVE_LIBPROC2
-	enum rel_items { EU_PID, EU_EUID, EU_EGID, EU_CMD }; // order at open
-
 	prcs->tid = 0;
 	prcs->comm = NULL;
-	prcs->stack = procps_pids_get(prcs->info, PIDS_FETCH_TASKS_ONLY);
-	if (prcs->stack) {
-#if defined(HAVE_LIBPROC2_POST_4_0_5_API)
-		prcs->tid = PIDS_VAL(EU_PID, s_int, prcs->stack);
-		prcs->euid = PIDS_VAL(EU_EUID, s_int, prcs->stack);
-		prcs->egid = PIDS_VAL(EU_EGID, s_int, prcs->stack);
-		prcs->comm = PIDS_VAL(EU_CMD, str, prcs->stack);
-#else
-		prcs->tid = PIDS_VAL(EU_PID, s_int, prcs->stack, prcs->info);
-		prcs->euid = PIDS_VAL(EU_EUID, s_int, prcs->stack, prcs->info);
-		prcs->egid = PIDS_VAL(EU_EGID, s_int, prcs->stack, prcs->info);
-		prcs->comm = PIDS_VAL(EU_CMD, str, prcs->stack, prcs->info);
-#endif
-	}
-#endif
-	return prcs->tid != 0;
+	return procps_next(prcs->iter,
+			   &prcs->tid, &prcs->euid, &prcs->egid,
+			   &prcs->comm);
 }
 
 /**
diff --git a/lib/meson.build b/lib/meson.build
index a8d6566ae..f25ecd8b2 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -257,12 +257,6 @@ if build_xe_eudebug
 	lib_sources += 'xe/xe_eudebug.c'
 endif
 
-if libprocps.found()
-	lib_deps += libprocps
-else
-	lib_deps += libproc2
-endif
-
 if get_option('srcdir') != ''
     srcdir = join_paths(get_option('srcdir'), 'tests')
 else
diff --git a/meson.build b/meson.build
index e750f7a51..4def24cbc 100644
--- a/meson.build
+++ b/meson.build
@@ -133,18 +133,7 @@ build_info += 'With libdrm: ' + ','.join(libdrm_info)
 
 pciaccess = dependency('pciaccess', version : '>=0.10')
 libkmod = dependency('libkmod')
-libprocps = dependency('libprocps', required : false)
-libproc2 = dependency('libproc2', required : false)
-if libprocps.found()
-  config.set('HAVE_LIBPROCPS', 1)
-elif libproc2.found()
-  config.set('HAVE_LIBPROC2', 1)
-  if libproc2.version().version_compare('>= 4.0.5')
-    config.set('HAVE_LIBPROC2_POST_4_0_5_API', 1)
-  endif
-else
-  error('Either libprocps or libproc2 is required')
-endif
+# igt_procps.c reads /proc directly; libprocps and libproc2 are not needed.
 
 libunwind = dependency('libunwind', required : get_option('libunwind'))
 if libunwind.found()
-- 
2.43.0


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

* ✓ i915.CI.BAT: success for lib: replace libprocps/libproc2 with /proc-based process enumeration
  2026-06-03 18:28 [PATCH] lib: replace libprocps/libproc2 with /proc-based process enumeration Jia Yao
@ 2026-06-04  1:23 ` Patchwork
  2026-06-04  1:30 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-06-04  1:23 UTC (permalink / raw)
  To: Jia Yao; +Cc: igt-dev

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

== Series Details ==

Series: lib: replace libprocps/libproc2 with /proc-based process enumeration
URL   : https://patchwork.freedesktop.org/series/167838/
State : success

== Summary ==

CI Bug Log - changes from IGT_8947 -> IGTPW_15300
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

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

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

### IGT changes ###

#### Issues hit ####

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

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

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

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

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

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

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

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

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

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

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

  
#### Possible fixes ####

  * igt@vgem_basic@create:
    - bat-mtlp-9:         [FAIL][12] ([i915#16296]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-mtlp-9/igt@vgem_basic@create.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-mtlp-9/igt@vgem_basic@create.html
    - bat-arls-6:         [FAIL][14] ([i915#16296]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-arls-6/igt@vgem_basic@create.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-arls-6/igt@vgem_basic@create.html
    - fi-hsw-4770:        [FAIL][16] ([i915#16296]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-hsw-4770/igt@vgem_basic@create.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-hsw-4770/igt@vgem_basic@create.html
    - bat-mtlp-8:         [FAIL][18] ([i915#16296]) -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-mtlp-8/igt@vgem_basic@create.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-mtlp-8/igt@vgem_basic@create.html
    - bat-arls-5:         [FAIL][20] ([i915#16296]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-arls-5/igt@vgem_basic@create.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-arls-5/igt@vgem_basic@create.html
    - bat-arlh-2:         [FAIL][22] ([i915#16296]) -> [PASS][23]
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-arlh-2/igt@vgem_basic@create.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-arlh-2/igt@vgem_basic@create.html
    - fi-rkl-11600:       [FAIL][24] ([i915#16296]) -> [PASS][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-rkl-11600/igt@vgem_basic@create.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-rkl-11600/igt@vgem_basic@create.html
    - bat-arlh-3:         [FAIL][26] ([i915#16296]) -> [PASS][27]
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-arlh-3/igt@vgem_basic@create.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-arlh-3/igt@vgem_basic@create.html
    - fi-pnv-d510:        [FAIL][28] ([i915#16296]) -> [PASS][29]
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-pnv-d510/igt@vgem_basic@create.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-pnv-d510/igt@vgem_basic@create.html
    - bat-dg1-7:          [FAIL][30] ([i915#16296]) -> [PASS][31]
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-dg1-7/igt@vgem_basic@create.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-dg1-7/igt@vgem_basic@create.html
    - fi-glk-j4005:       [FAIL][32] ([i915#16296]) -> [PASS][33]
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-glk-j4005/igt@vgem_basic@create.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-glk-j4005/igt@vgem_basic@create.html
    - bat-adlp-9:         [FAIL][34] ([i915#16296]) -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-adlp-9/igt@vgem_basic@create.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-adlp-9/igt@vgem_basic@create.html
    - bat-rpls-4:         [FAIL][36] ([i915#16296]) -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-rpls-4/igt@vgem_basic@create.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-rpls-4/igt@vgem_basic@create.html
    - fi-cfl-8109u:       [FAIL][38] ([i915#16296]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-cfl-8109u/igt@vgem_basic@create.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-cfl-8109u/igt@vgem_basic@create.html
    - fi-kbl-7567u:       [FAIL][40] ([i915#16296]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-kbl-7567u/igt@vgem_basic@create.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-kbl-7567u/igt@vgem_basic@create.html
    - bat-twl-1:          [FAIL][42] ([i915#16296]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-twl-1/igt@vgem_basic@create.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-twl-1/igt@vgem_basic@create.html
    - fi-kbl-8809g:       [FAIL][44] ([i915#16296]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-kbl-8809g/igt@vgem_basic@create.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-kbl-8809g/igt@vgem_basic@create.html
    - bat-jsl-5:          [FAIL][46] ([i915#16296]) -> [PASS][47]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-jsl-5/igt@vgem_basic@create.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-jsl-5/igt@vgem_basic@create.html
    - bat-apl-1:          [FAIL][48] ([i915#16296]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-apl-1/igt@vgem_basic@create.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-apl-1/igt@vgem_basic@create.html
    - bat-rplp-1:         [FAIL][50] ([i915#16296]) -> [PASS][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-rplp-1/igt@vgem_basic@create.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-rplp-1/igt@vgem_basic@create.html
    - fi-ilk-650:         [FAIL][52] ([i915#16296]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-ilk-650/igt@vgem_basic@create.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-ilk-650/igt@vgem_basic@create.html
    - fi-tgl-1115g4:      [FAIL][54] ([i915#16296]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-tgl-1115g4/igt@vgem_basic@create.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-tgl-1115g4/igt@vgem_basic@create.html
    - fi-cfl-guc:         [FAIL][56] ([i915#16296]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-cfl-guc/igt@vgem_basic@create.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-cfl-guc/igt@vgem_basic@create.html
    - bat-dg2-9:          [FAIL][58] ([i915#16296]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-dg2-9/igt@vgem_basic@create.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-dg2-9/igt@vgem_basic@create.html
    - fi-kbl-x1275:       [FAIL][60] ([i915#16296]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-kbl-x1275/igt@vgem_basic@create.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-kbl-x1275/igt@vgem_basic@create.html
    - bat-adlp-11:        [FAIL][62] ([i915#16296]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-adlp-11/igt@vgem_basic@create.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-adlp-11/igt@vgem_basic@create.html
    - bat-dg1-6:          [FAIL][64] ([i915#16296]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-dg1-6/igt@vgem_basic@create.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-dg1-6/igt@vgem_basic@create.html
    - fi-cfl-8700k:       [FAIL][66] ([i915#16296]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-cfl-8700k/igt@vgem_basic@create.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-cfl-8700k/igt@vgem_basic@create.html
    - bat-kbl-2:          [FAIL][68] ([i915#16296]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-kbl-2/igt@vgem_basic@create.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-kbl-2/igt@vgem_basic@create.html
    - bat-adlp-6:         [FAIL][70] ([i915#16296]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-adlp-6/igt@vgem_basic@create.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-adlp-6/igt@vgem_basic@create.html
    - fi-skl-6600u:       [FAIL][72] ([i915#16296]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-skl-6600u/igt@vgem_basic@create.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-skl-6600u/igt@vgem_basic@create.html
    - bat-atsm-1:         [FAIL][74] ([i915#16296]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-atsm-1/igt@vgem_basic@create.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-atsm-1/igt@vgem_basic@create.html
    - bat-twl-2:          [FAIL][76] ([i915#16296]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-twl-2/igt@vgem_basic@create.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-twl-2/igt@vgem_basic@create.html
    - fi-ivb-3770:        [FAIL][78] ([i915#16296]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-ivb-3770/igt@vgem_basic@create.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-ivb-3770/igt@vgem_basic@create.html
    - bat-dg2-14:         [FAIL][80] ([i915#16296]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-dg2-14/igt@vgem_basic@create.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-dg2-14/igt@vgem_basic@create.html
    - fi-elk-e7500:       [FAIL][82] ([i915#16296]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-elk-e7500/igt@vgem_basic@create.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-elk-e7500/igt@vgem_basic@create.html
    - bat-dg2-8:          [FAIL][84] ([i915#16296]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/bat-dg2-8/igt@vgem_basic@create.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/bat-dg2-8/igt@vgem_basic@create.html
    - fi-bsw-nick:        [FAIL][86] ([i915#16296]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-bsw-nick/igt@vgem_basic@create.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-bsw-nick/igt@vgem_basic@create.html
    - fi-bsw-n3050:       [FAIL][88] ([i915#16296]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8947/fi-bsw-n3050/igt@vgem_basic@create.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/fi-bsw-n3050/igt@vgem_basic@create.html

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


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8947 -> IGTPW_15300
  * Linux: CI_DRM_18611 -> CI_DRM_18623

  CI-20190529: 20190529
  CI_DRM_18611: f059886850b97ea5c089703ba3e566a4f847fa19 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_18623: 740ac771c704c3fa301d7c99952028fe579c7f0b @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15300: 55a850dc7b17fd3fb6123750f385fab792f1bbeb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ Xe.CI.BAT: success for lib: replace libprocps/libproc2 with /proc-based process enumeration
  2026-06-03 18:28 [PATCH] lib: replace libprocps/libproc2 with /proc-based process enumeration Jia Yao
  2026-06-04  1:23 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2026-06-04  1:30 ` Patchwork
  2026-06-04 17:29 ` ✓ Xe.CI.FULL: " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-06-04  1:30 UTC (permalink / raw)
  To: Jia Yao; +Cc: igt-dev

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

== Series Details ==

Series: lib: replace libprocps/libproc2 with /proc-based process enumeration
URL   : https://patchwork.freedesktop.org/series/167838/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8947_BAT -> XEIGTPW_15300_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  No changes in participating hosts


Changes
-------

  No changes found


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

  * IGT: IGT_8947 -> IGTPW_15300
  * Linux: xe-5186-dae47e6a1cce1d19d56c27b48b2670d4094ecbdc -> xe-5199-740ac771c704c3fa301d7c99952028fe579c7f0b

  IGTPW_15300: 55a850dc7b17fd3fb6123750f385fab792f1bbeb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5186-dae47e6a1cce1d19d56c27b48b2670d4094ecbdc: dae47e6a1cce1d19d56c27b48b2670d4094ecbdc
  xe-5199-740ac771c704c3fa301d7c99952028fe579c7f0b: 740ac771c704c3fa301d7c99952028fe579c7f0b

== Logs ==

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

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

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

* ✓ Xe.CI.FULL: success for lib: replace libprocps/libproc2 with /proc-based process enumeration
  2026-06-03 18:28 [PATCH] lib: replace libprocps/libproc2 with /proc-based process enumeration Jia Yao
  2026-06-04  1:23 ` ✓ i915.CI.BAT: success for " Patchwork
  2026-06-04  1:30 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-06-04 17:29 ` Patchwork
  2026-06-05  2:11 ` ✓ i915.CI.Full: " Patchwork
  2026-06-09 17:51 ` [PATCH] " Bai, Zongyao
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-06-04 17:29 UTC (permalink / raw)
  To: Jia Yao; +Cc: igt-dev

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

== Series Details ==

Series: lib: replace libprocps/libproc2 with /proc-based process enumeration
URL   : https://patchwork.freedesktop.org/series/167838/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8947_FULL -> XEIGTPW_15300_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

New tests
---------

  New tests have been introduced between XEIGT_8947_FULL and XEIGTPW_15300_FULL:

### New IGT tests (1) ###

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-hdmi-a-3:
    - Statuses : 1 pass(s)
    - Exec time: [0.58] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-write:
    - shard-bmg:          [PASS][1] -> [FAIL][2] ([Intel XE#7445])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-1/igt@intel_hwmon@hwmon-write.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-bmg:          [PASS][3] -> [FAIL][4] ([Intel XE#3718] / [Intel XE#6078])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2:
    - shard-bmg:          [PASS][5] -> [FAIL][6] ([Intel XE#6078])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#2370])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2327]) +4 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-10/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#1124]) +6 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#7679])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p.html

  * igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#367])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][12] -> [INCOMPLETE][13] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2652]) +8 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2887]) +4 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-1/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2325] / [Intel XE#7358])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-8/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2252]) +4 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_content_protection@dp-mst-type-1-suspend-resume:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#6974])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          NOTRUN -> [FAIL][19] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-4/igt@kms_content_protection@legacy.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2320]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [PASS][21] -> [FAIL][22] ([Intel XE#7571])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#1508])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_fbcon_fbt@fbc:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#4156] / [Intel XE#7425])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html

  * igt@kms_feature_discovery@display-4x:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#1138] / [Intel XE#7344])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-5/igt@kms_feature_discovery@display-4x.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#7178] / [Intel XE#7349])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2311]) +27 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#4141]) +5 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#7061]) +5 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2313]) +34 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html

  * igt@kms_hdr@invalid-hdr@pipe-a-dp-2-xrgb16161616f:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#7922]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-7/igt@kms_hdr@invalid-hdr@pipe-a-dp-2-xrgb16161616f.html

  * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f:
    - shard-bmg:          [PASS][34] -> [SKIP][35] ([Intel XE#7915]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-9/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-8/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html

  * igt@kms_plane@pixel-format-y-tiled-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#7283]) +2 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-modifier.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#2393])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-10/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#5020] / [Intel XE#7348])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-4/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-8/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#1489]) +4 other tests skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@psr2-no-drrs:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-5/igt@kms_psr@psr2-no-drrs.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#7795])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_sharpness_filter@filter-scaler-downscale:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#6503])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-10/igt@kms_sharpness_filter@filter-scaler-downscale.html

  * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-7:
    - shard-bmg:          [PASS][44] -> [FAIL][45] ([Intel XE#7992]) +26 other tests fail
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-10/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-7.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-7.html

  * igt@xe_eudebug_online@single-step:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#7636]) +7 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-10/igt@xe_eudebug_online@single-step.html

  * igt@xe_evict@evict-small-multi-queue-priority:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#7140])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-5/igt@xe_evict@evict-small-multi-queue-priority.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html

  * igt@xe_exec_fault_mode@twice-multi-queue:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#7136]) +5 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue.html

  * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#6874]) +15 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-8/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html

  * igt@xe_exec_reset@cm-multi-queue-cat-error:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#7866])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-10/igt@xe_exec_reset@cm-multi-queue-cat-error.html

  * igt@xe_exec_system_allocator@many-stride-new-prefetch:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][52] ([Intel XE#7098] / [Intel XE#8159])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-new-prefetch.html

  * igt@xe_exec_system_allocator@twice-large-mmap-free-madvise:
    - shard-lnl:          [PASS][53] -> [ABORT][54] ([Intel XE#8007])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-6/igt@xe_exec_system_allocator@twice-large-mmap-free-madvise.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-lnl-1/igt@xe_exec_system_allocator@twice-large-mmap-free-madvise.html
    - shard-bmg:          [PASS][55] -> [ABORT][56] ([Intel XE#8007])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-7/igt@xe_exec_system_allocator@twice-large-mmap-free-madvise.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-9/igt@xe_exec_system_allocator@twice-large-mmap-free-madvise.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#7138]) +5 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate-race.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2229])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-3/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_multigpu_svm@mgpu-atomic-op-basic:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#6964])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-8/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html

  * igt@xe_page_reclaim@prl-max-entries:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#7793])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-10/igt@xe_page_reclaim@prl-max-entries.html

  * igt@xe_pat@l2-flush-opt-svm-pat-restrict:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#7590])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-8/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html

  * igt@xe_pat@pat-sw-hw-reset-compare:
    - shard-bmg:          NOTRUN -> [FAIL][62] ([Intel XE#7695])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-3/igt@xe_pat@pat-sw-hw-reset-compare.html

  * igt@xe_peer2peer@read:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-8/igt@xe_peer2peer@read.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#2284] / [Intel XE#7370])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-8/igt@xe_pm@s3-d3cold-basic-exec.html

  
#### Possible fixes ####

  * igt@kms_big_fb@linear-32bpp-rotate-0:
    - shard-lnl:          [FAIL][65] ([Intel XE#8228]) -> [PASS][66] +7 other tests pass
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-4/igt@kms_big_fb@linear-32bpp-rotate-0.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-lnl-8/igt@kms_big_fb@linear-32bpp-rotate-0.html

  * igt@kms_big_fb@linear-8bpp-rotate-180:
    - shard-bmg:          [FAIL][67] ([Intel XE#8228]) -> [PASS][68] +6 other tests pass
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-10/igt@kms_big_fb@linear-8bpp-rotate-180.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-180.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][69] ([Intel XE#7571]) -> [PASS][70]
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
    - shard-lnl:          [FAIL][71] ([Intel XE#301]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-lnl:          [FAIL][73] ([Intel XE#7340] / [Intel XE#7504]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-lnl:          [FAIL][75] ([Intel XE#7340]) -> [PASS][76]
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb@pipe-b-edp-1:
    - shard-lnl:          [FAIL][77] ([Intel XE#8229]) -> [PASS][78] +2 other tests pass
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-8/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb@pipe-b-edp-1.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-lnl-7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb@pipe-b-edp-1.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-bmg:          [FAIL][79] ([Intel XE#6569]) -> [PASS][80]
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_wedged@wedged-mode-toggle:
    - shard-bmg:          [ABORT][81] ([Intel XE#8007]) -> [PASS][82]
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-9/igt@xe_wedged@wedged-mode-toggle.html

  
#### Warnings ####

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-lnl:          [SKIP][83] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][84] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][85] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][86] ([Intel XE#2509] / [Intel XE#7437])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15300/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
  [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
  [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
  [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
  [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
  [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
  [Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
  [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
  [Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866
  [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
  [Intel XE#7922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7922
  [Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
  [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
  [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
  [Intel XE#8228]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8228
  [Intel XE#8229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8229
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870


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

  * IGT: IGT_8947 -> IGTPW_15300
  * Linux: xe-5186-dae47e6a1cce1d19d56c27b48b2670d4094ecbdc -> xe-5199-740ac771c704c3fa301d7c99952028fe579c7f0b

  IGTPW_15300: 55a850dc7b17fd3fb6123750f385fab792f1bbeb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5186-dae47e6a1cce1d19d56c27b48b2670d4094ecbdc: dae47e6a1cce1d19d56c27b48b2670d4094ecbdc
  xe-5199-740ac771c704c3fa301d7c99952028fe579c7f0b: 740ac771c704c3fa301d7c99952028fe579c7f0b

== Logs ==

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

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

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

* ✓ i915.CI.Full: success for lib: replace libprocps/libproc2 with /proc-based process enumeration
  2026-06-03 18:28 [PATCH] lib: replace libprocps/libproc2 with /proc-based process enumeration Jia Yao
                   ` (2 preceding siblings ...)
  2026-06-04 17:29 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-06-05  2:11 ` Patchwork
  2026-06-09 17:51 ` [PATCH] " Bai, Zongyao
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-06-05  2:11 UTC (permalink / raw)
  To: Jia Yao; +Cc: igt-dev

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

== Series Details ==

Series: lib: replace libprocps/libproc2 with /proc-based process enumeration
URL   : https://patchwork.freedesktop.org/series/167838/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_18623_full -> IGTPW_15300_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  No changes in participating hosts

New tests
---------

  New tests have been introduced between CI_DRM_18623_full and IGTPW_15300_full:

### New IGT tests (57) ###

  * igt@i915_pm_rpm@2x-flip-vs-wf_vblank:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@2x-long-cursor-vs-flip-legacy:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@2x-wf_vblank-ts-check-interruptible:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@all-busy-idle-check-all:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@async-flip-suspend-resume:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@bad-htotal:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@blit-noreloc-keep-cache:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@cliprects-invalid:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@crc-primary-basic-yf-tiled-ccs:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@cursor-offscreen-max-size:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@cursora-vs-flipb-varying-size:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@dmabuf-sync:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@dpms-mode-unset-lpsp:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@etime-multi-wait-for-submit-unsubmitted-submitted:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@faulting-read:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@fbc-2p-scndscrn-cur-indfb-draw-blt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@fbc-2p-scndscrn-pri-shrfb-draw-blt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@fbchdr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@fbchdr-1p-primscrn-spr-indfb-fullscreen:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@fbchdr-2p-scndscrn-spr-indfb-draw-blt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@fbcpsr-2p-primscrn-spr-indfb-move:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@fbcpsrhdr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@fbcpsrhdr-tiling-y:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@flip-vs-cursor-atomic-transitions-varying-size:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@get_properties-sanity-atomic:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@getfb-addfb-different-handles:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@gt-error-state-capture:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@hdr-1p-pri-indfb-multidraw:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@hdr-2p-primscrn-indfb-msflip-blt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@hdr-2p-primscrn-pri-indfb-draw-mmap-gtt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@hdr-2p-scndscrn-cur-indfb-draw-blt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@independent:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@invalid:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@invalid-init:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@invalid-properties-atomic:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@invalid-reset-illegal-handle:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@invalid-set-no-zeromap:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@lease-get:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@legacy:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@multi-wait-for-submit-available-signaled:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@parallel-keep-in-fence:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@partial-mmap:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@plane-upscale-factor-0-25-with-rotation:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@preempt-engines:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@psr-2p-primscrn-pri-shrfb-draw-render:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@psrhdr-1p-offscreen-pri-indfb-draw-mmap-wc:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@psrhdr-1p-pri-indfb-multidraw:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@psrhdr-2p-primscrn-shrfb-pgflip-blt:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@resubmit:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@short-reads:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@test-query-geometry-subslices:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@virtual-busy:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - Statuses :
    - Exec time: [None] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@device_reset@cold-reset-bound:
    - shard-dg1:          NOTRUN -> [SKIP][1] ([i915#11078])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-14/igt@device_reset@cold-reset-bound.html
    - shard-tglu:         NOTRUN -> [SKIP][2] ([i915#11078])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-5/igt@device_reset@cold-reset-bound.html
    - shard-mtlp:         NOTRUN -> [SKIP][3] ([i915#11078])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-7/igt@device_reset@cold-reset-bound.html
    - shard-dg2:          NOTRUN -> [SKIP][4] ([i915#11078])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@device_reset@cold-reset-bound.html

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

  * igt@dmabuf@all-tests:
    - shard-rkl:          NOTRUN -> [SKIP][6] ([i915#15931])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-1/igt@dmabuf@all-tests.html

  * igt@drm_buddy@drm_buddy:
    - shard-rkl:          NOTRUN -> [SKIP][7] ([i915#15678])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@drm_buddy@drm_buddy.html

  * igt@gem_basic@multigpu-create-close:
    - shard-rkl:          NOTRUN -> [SKIP][8] ([i915#7697])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@gem_basic@multigpu-create-close.html
    - shard-dg2:          NOTRUN -> [SKIP][9] ([i915#7697])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-6/igt@gem_basic@multigpu-create-close.html

  * igt@gem_ccs@block-multicopy-inplace:
    - shard-rkl:          NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@gem_ccs@block-multicopy-inplace.html

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

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-rkl:          NOTRUN -> [SKIP][12] ([i915#9323])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

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

  * igt@gem_create@create-ext-set-pat:
    - shard-dg2:          NOTRUN -> [SKIP][16] ([i915#8562])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-7/igt@gem_create@create-ext-set-pat.html
    - shard-rkl:          NOTRUN -> [SKIP][17] ([i915#8562])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@gem_create@create-ext-set-pat.html

  * igt@gem_ctx_persistence@processes:
    - shard-snb:          NOTRUN -> [SKIP][18] ([i915#1099])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-snb4/igt@gem_ctx_persistence@processes.html

  * igt@gem_ctx_sseu@engines:
    - shard-rkl:          NOTRUN -> [SKIP][19] ([i915#280])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-2/igt@gem_ctx_sseu@engines.html

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

  * igt@gem_eio@suspend:
    - shard-dg2:          [PASS][21] -> [ABORT][22] ([i915#15131])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-3/igt@gem_eio@suspend.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-10/igt@gem_eio@suspend.html

  * igt@gem_exec_balancer@bonded-false-hang:
    - shard-dg2:          NOTRUN -> [SKIP][23] ([i915#4812])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-6/igt@gem_exec_balancer@bonded-false-hang.html
    - shard-dg1:          NOTRUN -> [SKIP][24] ([i915#4812]) +2 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-13/igt@gem_exec_balancer@bonded-false-hang.html
    - shard-mtlp:         NOTRUN -> [SKIP][25] ([i915#4812])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-6/igt@gem_exec_balancer@bonded-false-hang.html

  * igt@gem_exec_balancer@parallel:
    - shard-rkl:          NOTRUN -> [SKIP][26] ([i915#4525]) +2 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@gem_exec_balancer@parallel.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-tglu:         NOTRUN -> [SKIP][27] ([i915#4525])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-3/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_balancer@parallel-contexts:
    - shard-tglu-1:       NOTRUN -> [SKIP][28] ([i915#4525])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@gem_exec_balancer@parallel-contexts.html

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

  * igt@gem_exec_flush@basic-uc-ro-default:
    - shard-dg2:          NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-7/igt@gem_exec_flush@basic-uc-ro-default.html

  * igt@gem_exec_flush@basic-uc-rw-default:
    - shard-dg1:          NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-17/igt@gem_exec_flush@basic-uc-rw-default.html

  * igt@gem_exec_reloc@basic-gtt-read:
    - shard-dg2:          NOTRUN -> [SKIP][32] ([i915#3281]) +9 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-read.html
    - shard-mtlp:         NOTRUN -> [SKIP][33] ([i915#3281]) +3 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-read.html

  * igt@gem_exec_reloc@basic-range-active:
    - shard-rkl:          NOTRUN -> [SKIP][34] ([i915#14544] / [i915#3281]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@gem_exec_reloc@basic-range-active.html

  * igt@gem_exec_reloc@basic-wc-cpu-noreloc:
    - shard-dg1:          NOTRUN -> [SKIP][35] ([i915#3281]) +4 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-15/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html

  * igt@gem_exec_reloc@basic-write-read-noreloc:
    - shard-rkl:          NOTRUN -> [SKIP][36] ([i915#3281]) +13 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-noreloc.html

  * igt@gem_exec_schedule@preempt-queue-chain:
    - shard-mtlp:         NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-chain.html
    - shard-dg2:          NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-chain.html

  * igt@gem_exec_suspend@basic-s3:
    - shard-rkl:          [PASS][39] -> [INCOMPLETE][40] ([i915#13356]) +1 other test incomplete
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-4/igt@gem_exec_suspend@basic-s3.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@gem_exec_suspend@basic-s3.html

  * igt@gem_fence_thrash@bo-copy:
    - shard-dg2:          NOTRUN -> [SKIP][41] ([i915#4860])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@gem_fence_thrash@bo-copy.html
    - shard-dg1:          NOTRUN -> [SKIP][42] ([i915#4860])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-18/igt@gem_fence_thrash@bo-copy.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglu-1:       NOTRUN -> [SKIP][43] ([i915#2190])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
    - shard-glk:          NOTRUN -> [SKIP][44] ([i915#4613]) +4 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html

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

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

  * igt@gem_lmem_swapping@parallel-random-verify-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][48] ([i915#4613]) +4 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html

  * igt@gem_lmem_swapping@verify-random-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][49] ([i915#14544] / [i915#4613])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@gem_lmem_swapping@verify-random-ccs.html

  * igt@gem_mmap_gtt@cpuset-big-copy-xy:
    - shard-dg2:          NOTRUN -> [SKIP][50] ([i915#4077]) +8 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
    - shard-dg1:          NOTRUN -> [SKIP][51] ([i915#4077]) +5 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-16/igt@gem_mmap_gtt@cpuset-big-copy-xy.html

  * igt@gem_mmap_gtt@cpuset-medium-copy-odd:
    - shard-mtlp:         NOTRUN -> [SKIP][52] ([i915#4077]) +4 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-5/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html

  * igt@gem_mmap_wc@set-cache-level:
    - shard-mtlp:         NOTRUN -> [SKIP][53] ([i915#4083]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-4/igt@gem_mmap_wc@set-cache-level.html

  * igt@gem_mmap_wc@write-gtt-read-wc:
    - shard-dg2:          NOTRUN -> [SKIP][54] ([i915#4083])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-5/igt@gem_mmap_wc@write-gtt-read-wc.html
    - shard-dg1:          NOTRUN -> [SKIP][55] ([i915#4083]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-14/igt@gem_mmap_wc@write-gtt-read-wc.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-display:
    - shard-dg2:          NOTRUN -> [SKIP][56] ([i915#3282]) +4 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
    - shard-rkl:          NOTRUN -> [SKIP][57] ([i915#3282]) +6 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
    - shard-dg1:          NOTRUN -> [SKIP][58] ([i915#3282]) +4 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads-display.html

  * igt@gem_pread@display:
    - shard-rkl:          NOTRUN -> [SKIP][59] ([i915#14544] / [i915#3282])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@gem_pread@display.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-glk:          NOTRUN -> [WARN][60] ([i915#14702] / [i915#2658])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk2/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_pxp@hw-rejects-pxp-buffer:
    - shard-rkl:          NOTRUN -> [SKIP][61] ([i915#13717])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-buffer.html

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

  * igt@gem_readwrite@new-obj:
    - shard-mtlp:         NOTRUN -> [SKIP][64] ([i915#3282]) +4 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-4/igt@gem_readwrite@new-obj.html

  * igt@gem_render_copy@y-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][65] ([i915#8428]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-7/igt@gem_render_copy@y-tiled.html

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

  * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) +5 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html

  * igt@gem_tiled_pread_pwrite:
    - shard-dg2:          NOTRUN -> [SKIP][68] ([i915#4079])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@gem_tiled_pread_pwrite.html

  * igt@gem_userptr_blits@access-control:
    - shard-rkl:          NOTRUN -> [SKIP][69] ([i915#14544] / [i915#3297])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@gem_userptr_blits@access-control.html

  * igt@gem_userptr_blits@create-destroy-unsync:
    - shard-rkl:          NOTRUN -> [SKIP][70] ([i915#3297]) +2 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-3/igt@gem_userptr_blits@create-destroy-unsync.html

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

  * igt@gem_userptr_blits@readonly-unsync:
    - shard-dg1:          NOTRUN -> [SKIP][72] ([i915#3297])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-16/igt@gem_userptr_blits@readonly-unsync.html
    - shard-tglu:         NOTRUN -> [SKIP][73] ([i915#3297])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-10/igt@gem_userptr_blits@readonly-unsync.html
    - shard-mtlp:         NOTRUN -> [SKIP][74] ([i915#3297])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-5/igt@gem_userptr_blits@readonly-unsync.html

  * igt@gem_userptr_blits@relocations:
    - shard-dg2:          NOTRUN -> [SKIP][75] ([i915#3281] / [i915#3297])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-5/igt@gem_userptr_blits@relocations.html
    - shard-rkl:          NOTRUN -> [SKIP][76] ([i915#3281] / [i915#3297])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@gem_userptr_blits@relocations.html
    - shard-dg1:          NOTRUN -> [SKIP][77] ([i915#3281] / [i915#3297])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-14/igt@gem_userptr_blits@relocations.html
    - shard-mtlp:         NOTRUN -> [SKIP][78] ([i915#3281] / [i915#3297])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-7/igt@gem_userptr_blits@relocations.html

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

  * igt@gem_workarounds@suspend-resume:
    - shard-glk:          [PASS][80] -> [INCOMPLETE][81] ([i915#13356] / [i915#14586])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-glk2/igt@gem_workarounds@suspend-resume.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk4/igt@gem_workarounds@suspend-resume.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-glk:          NOTRUN -> [INCOMPLETE][82] ([i915#13356] / [i915#14586])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk8/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen7_exec_parse@bitmasks:
    - shard-glk10:        NOTRUN -> [SKIP][83] +98 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk10/igt@gen7_exec_parse@bitmasks.html
    - shard-dg2:          NOTRUN -> [SKIP][84] +5 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-10/igt@gen7_exec_parse@bitmasks.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-glk:          [PASS][85] -> [ABORT][86] ([i915#5566])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-glk2/igt@gen9_exec_parse@allowed-single.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk6/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@bb-large:
    - shard-tglu:         NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +2 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-4/igt@gen9_exec_parse@bb-large.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-rkl:          NOTRUN -> [SKIP][88] ([i915#2527]) +3 other tests skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-2/igt@gen9_exec_parse@bb-oversize.html
    - shard-dg1:          NOTRUN -> [SKIP][89] ([i915#2527]) +2 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-18/igt@gen9_exec_parse@bb-oversize.html
    - shard-mtlp:         NOTRUN -> [SKIP][90] ([i915#2856]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-3/igt@gen9_exec_parse@bb-oversize.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-dg2:          NOTRUN -> [SKIP][91] ([i915#2856]) +4 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@gen9_exec_parse@shadow-peek.html

  * igt@gen9_exec_parse@unaligned-jump:
    - shard-tglu-1:       NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@gen9_exec_parse@unaligned-jump.html

  * igt@i915_drm_fdinfo@virtual-busy:
    - shard-dg2:          NOTRUN -> [SKIP][93] ([i915#14118])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy.html
    - shard-dg1:          NOTRUN -> [SKIP][94] ([i915#14118])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy.html
    - shard-mtlp:         NOTRUN -> [SKIP][95] ([i915#14118])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-7/igt@i915_drm_fdinfo@virtual-busy.html

  * igt@i915_fb_tiling@basic-x-tiling:
    - shard-dg2:          NOTRUN -> [SKIP][96] ([i915#13786])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-6/igt@i915_fb_tiling@basic-x-tiling.html
    - shard-dg1:          NOTRUN -> [SKIP][97] ([i915#13786])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-13/igt@i915_fb_tiling@basic-x-tiling.html

  * igt@i915_module_load@fault-injection:
    - shard-dg2:          NOTRUN -> [ABORT][98] ([i915#15342] / [i915#15481])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@i915_module_load@fault-injection.html

  * igt@i915_module_load@fault-injection@__uc_init:
    - shard-dg2:          NOTRUN -> [ABORT][99] ([i915#15481])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@i915_module_load@fault-injection@__uc_init.html
    - shard-tglu-1:       NOTRUN -> [SKIP][100] ([i915#15479]) +4 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@i915_module_load@fault-injection@__uc_init.html

  * igt@i915_module_load@fault-injection@intel_connector_register:
    - shard-tglu-1:       NOTRUN -> [ABORT][101] ([i915#15342]) +1 other test abort
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@i915_module_load@fault-injection@intel_connector_register.html
    - shard-dg2:          NOTRUN -> [DMESG-WARN][102] ([i915#15342])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@i915_module_load@fault-injection@intel_connector_register.html

  * igt@i915_pm_freq_api@freq-basic-api:
    - shard-rkl:          NOTRUN -> [SKIP][103] ([i915#8399])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html

  * igt@i915_pm_freq_api@freq-suspend@gt0:
    - shard-dg2:          [PASS][104] -> [INCOMPLETE][105] ([i915#13356] / [i915#13820]) +1 other test incomplete
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html

  * igt@i915_pm_freq_mult@media-freq@gt0:
    - shard-tglu-1:       NOTRUN -> [SKIP][106] ([i915#6590]) +1 other test skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - shard-tglu:         NOTRUN -> [SKIP][107] ([i915#16080] / [i915#16166])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-10/igt@i915_pm_rc6_residency@media-rc6-accuracy.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-tglu-1:       NOTRUN -> [SKIP][108] ([i915#14498])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - shard-dg2:          [PASS][109] -> [ABORT][110] ([i915#13562])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-3/igt@i915_pm_rpm@system-suspend-execbuf.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-3/igt@i915_pm_rpm@system-suspend-execbuf.html

  * igt@i915_pm_rps@min-max-config-loaded:
    - shard-dg2:          NOTRUN -> [SKIP][111] ([i915#11681] / [i915#6621])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@i915_pm_rps@min-max-config-loaded.html
    - shard-dg1:          NOTRUN -> [SKIP][112] ([i915#11681] / [i915#6621])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-15/igt@i915_pm_rps@min-max-config-loaded.html

  * igt@i915_pm_sseu@full-enable:
    - shard-tglu:         NOTRUN -> [SKIP][113] ([i915#4387])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-3/igt@i915_pm_sseu@full-enable.html

  * igt@i915_power@sanity:
    - shard-rkl:          NOTRUN -> [SKIP][114] ([i915#7984])
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@i915_power@sanity.html

  * igt@i915_query@query-topology-unsupported:
    - shard-rkl:          NOTRUN -> [SKIP][115] ([i915#14544] / [i915#16079])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@i915_query@query-topology-unsupported.html

  * igt@i915_query@test-query-geometry-subslices:
    - shard-rkl:          NOTRUN -> [SKIP][116] ([i915#5723])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@i915_query@test-query-geometry-subslices.html
    - shard-dg1:          NOTRUN -> [SKIP][117] ([i915#5723])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html
    - shard-tglu:         NOTRUN -> [SKIP][118] ([i915#5723])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-5/igt@i915_query@test-query-geometry-subslices.html

  * igt@i915_suspend@basic-s3-without-i915:
    - shard-glk:          NOTRUN -> [INCOMPLETE][119] ([i915#16182] / [i915#4817])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk3/igt@i915_suspend@basic-s3-without-i915.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][120] ([i915#16182] / [i915#4817]) +1 other test incomplete
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk11/igt@i915_suspend@fence-restore-tiled2untiled.html
    - shard-rkl:          [PASS][121] -> [INCOMPLETE][122] ([i915#4817])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-3/igt@i915_suspend@fence-restore-tiled2untiled.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@intel_hwmon@hwmon-read:
    - shard-tglu-1:       NOTRUN -> [SKIP][123] ([i915#7707])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@intel_hwmon@hwmon-read.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][124] ([i915#4212])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html
    - shard-dg1:          NOTRUN -> [SKIP][125] ([i915#4212])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-17/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][126] ([i915#14888]) +1 other test fail
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html

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

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-rkl:          NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555]) +1 other test skip
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

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

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][130] ([i915#5286]) +9 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
    - shard-tglu-1:       NOTRUN -> [SKIP][131] ([i915#5286]) +2 other tests skip
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-mtlp:         [PASS][133] -> [FAIL][134] ([i915#15733] / [i915#5138])
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-dg1:          NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5286]) +2 other tests skip
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][136] ([i915#14544] / [i915#3638]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
    - shard-dg1:          NOTRUN -> [SKIP][137] ([i915#3638]) +2 other tests skip
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-18/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-tglu:         NOTRUN -> [SKIP][138] ([i915#3828]) +1 other test skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-9/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-glk11:        NOTRUN -> [SKIP][139] +50 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk11/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][140] ([i915#3638]) +3 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2:          NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5190]) +8 other tests skip
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
    - shard-dg1:          NOTRUN -> [SKIP][142] ([i915#4538]) +1 other test skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-19/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2:          NOTRUN -> [SKIP][143] ([i915#5190]) +1 other test skip
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@kms_big_fb@yf-tiled-addfb.html
    - shard-mtlp:         NOTRUN -> [SKIP][144] ([i915#6187])
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-tglu-1:       NOTRUN -> [SKIP][145] +70 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][146] ([i915#6095]) +201 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1:
    - shard-tglu:         NOTRUN -> [SKIP][147] ([i915#6095]) +74 other tests skip
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-9/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][148] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][149] ([i915#6095]) +24 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][150] ([i915#12313]) +2 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
    - shard-dg1:          NOTRUN -> [SKIP][151] ([i915#12313]) +1 other test skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-12/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

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

  * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3:
    - shard-dg2:          NOTRUN -> [SKIP][153] ([i915#10307] / [i915#6095]) +132 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][154] ([i915#12313]) +1 other test skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][155] ([i915#12805])
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
    - shard-glk:          NOTRUN -> [INCOMPLETE][156] ([i915#15582]) +3 other tests incomplete
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][157] ([i915#6095]) +19 other tests skip
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html

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

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][159] ([i915#6095]) +71 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][160] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html

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

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][162] ([i915#12313])
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
    - shard-mtlp:         NOTRUN -> [SKIP][163] ([i915#12313])
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

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

  * igt@kms_cdclk@plane-scaling:
    - shard-rkl:          NOTRUN -> [SKIP][165] ([i915#3742])
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-tglu:         NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +11 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-5/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_edid@hdmi-edid-read:
    - shard-rkl:          NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +11 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-read.html

  * igt@kms_chamelium_frames@hdmi-crc-fast:
    - shard-dg2:          NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +6 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@kms_chamelium_frames@hdmi-crc-fast.html

  * igt@kms_chamelium_frames@hdmi-frame-dump:
    - shard-tglu-1:       NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +4 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html

  * igt@kms_chamelium_hpd@dp-hpd-storm-disable:
    - shard-dg1:          NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +5 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
    - shard-mtlp:         NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +4 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-tglu:         NOTRUN -> [SKIP][172] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-0.html
    - shard-mtlp:         NOTRUN -> [SKIP][173] ([i915#15330] / [i915#3299])
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-0.html
    - shard-rkl:          NOTRUN -> [SKIP][174] ([i915#15330] / [i915#3116])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html
    - shard-dg1:          NOTRUN -> [SKIP][175] ([i915#15330] / [i915#3299])
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-0.html

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

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

  * igt@kms_content_protection@lic-type-0:
    - shard-tglu:         NOTRUN -> [SKIP][178] ([i915#15865]) +1 other test skip
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-4/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@lic-type-1:
    - shard-rkl:          NOTRUN -> [SKIP][179] ([i915#14544] / [i915#15865])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_content_protection@lic-type-1.html

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

  * igt@kms_content_protection@type1:
    - shard-dg2:          NOTRUN -> [SKIP][181] ([i915#15865]) +2 other tests skip
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-3/igt@kms_content_protection@type1.html
    - shard-rkl:          NOTRUN -> [SKIP][182] ([i915#15865]) +2 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@kms_content_protection@type1.html
    - shard-dg1:          NOTRUN -> [SKIP][183] ([i915#15865]) +1 other test skip
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-15/igt@kms_content_protection@type1.html
    - shard-mtlp:         NOTRUN -> [SKIP][184] ([i915#15865])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-6/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-offscreen-max-size:
    - shard-dg2:          NOTRUN -> [SKIP][185] ([i915#3555]) +3 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-max-size.html
    - shard-mtlp:         NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8814])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-max-size.html

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

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-rkl:          NOTRUN -> [SKIP][188] ([i915#13049]) +1 other test skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [FAIL][189] ([i915#13566]) +1 other test fail
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-random-64x21:
    - shard-rkl:          [PASS][190] -> [FAIL][191] ([i915#13566]) +1 other test fail
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-7/igt@kms_cursor_crc@cursor-random-64x21.html
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@kms_cursor_crc@cursor-random-64x21.html
    - shard-tglu:         [PASS][192] -> [FAIL][193] ([i915#13566]) +1 other test fail
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-tglu-2/igt@kms_cursor_crc@cursor-random-64x21.html
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-3/igt@kms_cursor_crc@cursor-random-64x21.html

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

  * igt@kms_cursor_crc@cursor-sliding-128x42:
    - shard-mtlp:         NOTRUN -> [SKIP][195] ([i915#8814]) +1 other test skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-32x32:
    - shard-tglu:         NOTRUN -> [SKIP][196] ([i915#3555]) +1 other test skip
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-32x32.html

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-tglu-1:       NOTRUN -> [SKIP][197] ([i915#3555]) +2 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-max-size.html

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

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-dg2:          NOTRUN -> [SKIP][199] ([i915#13046] / [i915#5354]) +2 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
    - shard-mtlp:         NOTRUN -> [SKIP][200] ([i915#9809]) +1 other test skip
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

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

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-rkl:          NOTRUN -> [SKIP][202] ([i915#9723])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
    - shard-dg1:          NOTRUN -> [SKIP][203] ([i915#9723])
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-19/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
    - shard-tglu:         NOTRUN -> [SKIP][204] ([i915#9723])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-rkl:          NOTRUN -> [SKIP][205] ([i915#3555] / [i915#3804])
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
    - shard-tglu-1:       NOTRUN -> [SKIP][206] ([i915#1769] / [i915#3555] / [i915#3804])
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

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

  * igt@kms_dp_aux_dev@basic:
    - shard-tglu:         NOTRUN -> [SKIP][209] ([i915#1257])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-2/igt@kms_dp_aux_dev@basic.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-dg2:          NOTRUN -> [SKIP][210] ([i915#13749])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-3/igt@kms_dp_link_training@non-uhbr-sst.html
    - shard-rkl:          NOTRUN -> [SKIP][211] ([i915#13749])
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-tglu:         NOTRUN -> [SKIP][212] ([i915#13748])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-6/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-dg2:          NOTRUN -> [SKIP][213] ([i915#13707])
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dsc@dsc-basic:
    - shard-rkl:          NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-tglu:         NOTRUN -> [SKIP][215] ([i915#3840])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp.html

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

  * igt@kms_dsc@dsc-with-formats:
    - shard-dg2:          NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840])
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@kms_dsc@dsc-with-formats.html
    - shard-dg1:          NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-12/igt@kms_dsc@dsc-with-formats.html

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

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][220] ([i915#9878])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk10/igt@kms_fbcon_fbt@fbc-suspend.html
    - shard-rkl:          [PASS][221] -> [INCOMPLETE][222] ([i915#9878])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-8/igt@kms_fbcon_fbt@fbc-suspend.html
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg1:          NOTRUN -> [SKIP][223] ([i915#16081])
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-19/igt@kms_feature_discovery@display-4x.html
    - shard-tglu:         NOTRUN -> [SKIP][224] ([i915#16081])
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-4/igt@kms_feature_discovery@display-4x.html
    - shard-mtlp:         NOTRUN -> [SKIP][225] ([i915#16081])
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-4/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-tglu:         NOTRUN -> [SKIP][226] ([i915#9337])
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-3/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr2:
    - shard-rkl:          NOTRUN -> [SKIP][227] ([i915#658])
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-3/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-tglu-1:       NOTRUN -> [SKIP][228] ([i915#3637] / [i915#9934]) +4 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-tglu:         NOTRUN -> [SKIP][229] ([i915#9934]) +1 other test skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@2x-flip-vs-fences-interruptible:
    - shard-dg1:          NOTRUN -> [SKIP][230] ([i915#8381])
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences-interruptible.html
    - shard-mtlp:         NOTRUN -> [SKIP][231] ([i915#8381])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][232] ([i915#12745] / [i915#4839] / [i915#6113])
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk1/igt@kms_flip@2x-flip-vs-suspend.html

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

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][234] ([i915#9934]) +5 other tests skip
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
    - shard-rkl:          NOTRUN -> [SKIP][235] ([i915#9934]) +10 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
    - shard-dg1:          NOTRUN -> [SKIP][236] ([i915#9934]) +5 other tests skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-19/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
    - shard-mtlp:         NOTRUN -> [SKIP][237] ([i915#3637] / [i915#9934]) +5 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html

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

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-dg1:          [PASS][239] -> [FAIL][240] ([i915#13027])
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg1-19/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1:
    - shard-dg1:          NOTRUN -> [FAIL][241] ([i915#13027])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html

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

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-glk:          NOTRUN -> [INCOMPLETE][243] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][244] ([i915#12314] / [i915#12745])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
    - shard-dg1:          NOTRUN -> [SKIP][245] ([i915#15643]) +2 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-dg2:          NOTRUN -> [SKIP][246] ([i915#15643]) +1 other test skip
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][247] ([i915#15643]) +1 other test skip
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-rkl:          NOTRUN -> [SKIP][248] ([i915#14544] / [i915#15643])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
    - shard-tglu:         NOTRUN -> [SKIP][249] ([i915#15643]) +5 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
    - shard-mtlp:         NOTRUN -> [SKIP][250] ([i915#15643])
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8813])
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-mtlp:         NOTRUN -> [SKIP][252] ([i915#8810] / [i915#8813])
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html

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

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][254] ([i915#15643] / [i915#5190]) +2 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][255] ([i915#15990] / [i915#8708]) +3 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
    - shard-mtlp:         NOTRUN -> [SKIP][256] ([i915#15991] / [i915#1825]) +13 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html

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

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-fullscreen:
    - shard-mtlp:         NOTRUN -> [SKIP][258] ([i915#15991]) +24 other tests skip
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt:
    - shard-tglu:         NOTRUN -> [SKIP][259] +110 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-10/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-mmap-wc:
    - shard-rkl:          [PASS][260] -> [SKIP][261] ([i915#15989]) +1 other test skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-mmap-wc.html
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbchdr-stridechange:
    - shard-tglu:         NOTRUN -> [SKIP][262] ([i915#15989]) +19 other tests skip
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-5/igt@kms_frontbuffer_tracking@fbchdr-stridechange.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-snb:          NOTRUN -> [SKIP][263] +168 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-snb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
    - shard-dg1:          NOTRUN -> [SKIP][264] ([i915#15104] / [i915#15990])
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][265] ([i915#10433] / [i915#15102])
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][266] ([i915#15990] / [i915#8708]) +14 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
    - shard-rkl:          NOTRUN -> [SKIP][267] ([i915#1825]) +5 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][268] ([i915#14544] / [i915#1825])
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][269] ([i915#15990] / [i915#8708]) +9 other tests skip
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][270] ([i915#15990]) +15 other tests skip
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt:
    - shard-mtlp:         NOTRUN -> [SKIP][271] ([i915#15989]) +11 other tests skip
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-plflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][272] ([i915#14544] / [i915#15102]) +2 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt:
    - shard-dg1:          NOTRUN -> [SKIP][273] ([i915#15102]) +19 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][274] ([i915#15102]) +36 other tests skip
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
    - shard-tglu-1:       NOTRUN -> [SKIP][275] ([i915#5439])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html

  * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-tglu-1:       NOTRUN -> [SKIP][276] ([i915#15989]) +14 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
    - shard-dg2:          NOTRUN -> [SKIP][277] ([i915#15989]) +13 other tests skip
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
    - shard-rkl:          NOTRUN -> [SKIP][278] ([i915#15989]) +30 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
    - shard-dg1:          NOTRUN -> [SKIP][279] ([i915#15989]) +8 other tests skip
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-15/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@hdr-2p-rte:
    - shard-dg1:          NOTRUN -> [SKIP][280] +47 other tests skip
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-2p-rte.html

  * igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu:
    - shard-dg2:          [PASS][281] -> [SKIP][282] ([i915#15989]) +3 other tests skip
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu.html
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-tglu-1:       NOTRUN -> [SKIP][283] ([i915#15102]) +22 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
    - shard-rkl:          NOTRUN -> [SKIP][284] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
    - shard-tglu:         NOTRUN -> [SKIP][285] ([i915#15102]) +43 other tests skip
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][286] ([i915#15102]) +26 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
    - shard-rkl:          NOTRUN -> [SKIP][287] ([i915#15102] / [i915#3023]) +21 other tests skip
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][288] ([i915#15990] / [i915#4423] / [i915#8708])
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
    - shard-dg2:          NOTRUN -> [SKIP][289] ([i915#15991] / [i915#5354]) +20 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][290] +122 other tests skip
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][291] ([i915#14544]) +7 other tests skip
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
    - shard-mtlp:         NOTRUN -> [SKIP][292] ([i915#15990]) +4 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][293] ([i915#15990]) +10 other tests skip
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-13/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-indfb-msflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][294] ([i915#15991]) +35 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_hdmi_inject@inject-4k:
    - shard-mtlp:         [PASS][295] -> [SKIP][296] ([i915#15725])
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-mtlp-7/igt@kms_hdmi_inject@inject-4k.html
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][297] ([i915#16012] / [i915#3555] / [i915#8228]) +1 other test skip
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html
    - shard-tglu-1:       NOTRUN -> [SKIP][298] ([i915#16012] / [i915#3555] / [i915#8228])
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010:
    - shard-tglu-1:       NOTRUN -> [SKIP][299] ([i915#16012]) +1 other test skip
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010.html

  * igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010:
    - shard-rkl:          NOTRUN -> [SKIP][300] ([i915#16012]) +5 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-tglu:         NOTRUN -> [SKIP][301] ([i915#16012] / [i915#3555] / [i915#8228])
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-7/igt@kms_hdr@bpc-switch-suspend.html
    - shard-dg2:          NOTRUN -> [SKIP][302] ([i915#16012] / [i915#3555] / [i915#8228])
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@kms_hdr@bpc-switch-suspend.html
    - shard-dg1:          NOTRUN -> [SKIP][303] ([i915#16012] / [i915#3555] / [i915#8228])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-13/igt@kms_hdr@bpc-switch-suspend.html
    - shard-snb:          NOTRUN -> [FAIL][304] ([i915#16018])
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-snb7/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010:
    - shard-dg2:          NOTRUN -> [SKIP][305] ([i915#16012]) +1 other test skip
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html
    - shard-snb:          NOTRUN -> [FAIL][306] ([i915#16013]) +1 other test fail
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-snb7/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html
    - shard-tglu:         NOTRUN -> [SKIP][307] ([i915#16012]) +1 other test skip
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-7/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb16161616f:
    - shard-dg1:          NOTRUN -> [SKIP][308] ([i915#16012]) +5 other tests skip
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-13/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html

  * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010:
    - shard-rkl:          NOTRUN -> [SKIP][309] ([i915#16011]) +1 other test skip
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-tglu-1:       NOTRUN -> [SKIP][310] ([i915#16011] / [i915#3555] / [i915#8228])
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-1-xrgb16161616f:
    - shard-tglu-1:       NOTRUN -> [SKIP][311] ([i915#16011]) +1 other test skip
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-1-xrgb16161616f.html

  * igt@kms_hdr@static-swap:
    - shard-dg1:          NOTRUN -> [SKIP][312] ([i915#16011] / [i915#3555] / [i915#8228])
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-18/igt@kms_hdr@static-swap.html
    - shard-mtlp:         NOTRUN -> [SKIP][313] ([i915#16011] / [i915#3555] / [i915#8228])
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-4/igt@kms_hdr@static-swap.html

  * igt@kms_hdr@static-swap@pipe-a-edp-1-xrgb2101010:
    - shard-mtlp:         NOTRUN -> [SKIP][314] ([i915#16011]) +1 other test skip
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-4/igt@kms_hdr@static-swap@pipe-a-edp-1-xrgb2101010.html

  * igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
    - shard-dg2:          NOTRUN -> [SKIP][315] ([i915#16011]) +7 other tests skip
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-5/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-dg2:          [PASS][316] -> [SKIP][317] ([i915#16011] / [i915#3555] / [i915#8228])
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-6/igt@kms_hdr@static-toggle-dpms.html
    - shard-tglu:         NOTRUN -> [SKIP][318] ([i915#16011] / [i915#3555] / [i915#8228])
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-9/igt@kms_hdr@static-toggle-dpms.html

  * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010:
    - shard-tglu:         NOTRUN -> [SKIP][319] ([i915#16011]) +1 other test skip
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-9/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010.html

  * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-4-xrgb2101010:
    - shard-dg1:          NOTRUN -> [SKIP][320] ([i915#16011]) +5 other tests skip
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-17/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-4-xrgb2101010.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][321] ([i915#16011] / [i915#3555] / [i915#8228]) +1 other test skip
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][322] ([i915#13688])
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-6/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][323] ([i915#15458])
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-dg2:          NOTRUN -> [SKIP][324] ([i915#15815])
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-dg1:          NOTRUN -> [SKIP][325] ([i915#15815])
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-17/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-tglu-1:       NOTRUN -> [SKIP][326] ([i915#6301])
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
    - shard-mtlp:         NOTRUN -> [SKIP][327] +5 other tests skip
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-7/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html

  * igt@kms_pipe_stress@stress-xrgb8888-4tiled:
    - shard-dg1:          NOTRUN -> [SKIP][328] ([i915#14712])
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-14/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
    - shard-tglu:         NOTRUN -> [SKIP][329] ([i915#14712])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
    - shard-mtlp:         NOTRUN -> [SKIP][330] ([i915#15709]) +1 other test skip
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html

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

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
    - shard-dg1:          NOTRUN -> [SKIP][332] ([i915#15709]) +1 other test skip
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html

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

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

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

  * igt@kms_plane@pixel-format-yf-tiled-modifier:
    - shard-rkl:          NOTRUN -> [SKIP][336] ([i915#15709]) +6 other tests skip
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_plane@pixel-format-yf-tiled-modifier.html
    - shard-tglu-1:       NOTRUN -> [SKIP][337] ([i915#15709]) +1 other test skip
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
    - shard-tglu:         NOTRUN -> [SKIP][338] ([i915#15709]) +4 other tests skip
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
    - shard-glk:          NOTRUN -> [INCOMPLETE][339] ([i915#13026]) +1 other test incomplete
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
    - shard-rkl:          [PASS][340] -> [ABORT][341] ([i915#15132]) +1 other test abort
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html

  * igt@kms_plane_alpha_blend@constant-alpha-max:
    - shard-glk:          NOTRUN -> [FAIL][342] ([i915#10647] / [i915#12169])
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max.html

  * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][343] ([i915#10647]) +1 other test fail
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html

  * igt@kms_plane_lowres@tiling-4:
    - shard-dg1:          NOTRUN -> [SKIP][344] ([i915#3555]) +4 other tests skip
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-15/igt@kms_plane_lowres@tiling-4.html

  * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][345] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html

  * igt@kms_plane_lowres@tiling-none@pipe-d-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][346] ([i915#11614] / [i915#3582]) +1 other test skip
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-dg2:          NOTRUN -> [SKIP][347] ([i915#3555] / [i915#8821])
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@kms_plane_lowres@tiling-yf.html

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

  * igt@kms_plane_multiple@tiling-x:
    - shard-dg1:          [PASS][349] -> [DMESG-WARN][350] ([i915#4423]) +4 other tests dmesg-warn
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg1-17/igt@kms_plane_multiple@tiling-x.html
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-12/igt@kms_plane_multiple@tiling-x.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-rkl:          NOTRUN -> [SKIP][351] ([i915#14259])
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
    - shard-dg1:          NOTRUN -> [SKIP][352] ([i915#15329]) +8 other tests skip
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
    - shard-tglu:         NOTRUN -> [SKIP][353] ([i915#15329]) +4 other tests skip
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
    - shard-tglu-1:       NOTRUN -> [SKIP][354] ([i915#15329] / [i915#3555])
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
    - shard-dg1:          NOTRUN -> [SKIP][355] ([i915#15329] / [i915#3555])
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
    - shard-tglu-1:       NOTRUN -> [SKIP][356] ([i915#15329]) +3 other tests skip
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html

  * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
    - shard-rkl:          NOTRUN -> [SKIP][357] ([i915#15329]) +7 other tests skip
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg2:          NOTRUN -> [SKIP][358] ([i915#12343] / [i915#5354]) +1 other test skip
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-5/igt@kms_pm_backlight@bad-brightness.html
    - shard-rkl:          NOTRUN -> [SKIP][359] ([i915#12343] / [i915#5354]) +2 other tests skip
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html
    - shard-dg1:          NOTRUN -> [SKIP][360] ([i915#12343] / [i915#5354])
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-14/igt@kms_pm_backlight@bad-brightness.html
    - shard-tglu:         NOTRUN -> [SKIP][361] ([i915#12343] / [i915#9812])
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][362] ([i915#12343])
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-6/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-rkl:          NOTRUN -> [SKIP][363] ([i915#12343])
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][364] ([i915#12343])
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-13/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-tglu:         NOTRUN -> [SKIP][365] ([i915#12343])
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-8/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2:          NOTRUN -> [SKIP][366] ([i915#15948])
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@kms_pm_dc@dc5-psr.html
    - shard-tglu-1:       NOTRUN -> [SKIP][367] ([i915#15948])
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html
    - shard-dg1:          NOTRUN -> [SKIP][368] ([i915#15948])
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-19/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-dg2:          NOTRUN -> [SKIP][369] ([i915#3828])
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-8/igt@kms_pm_dc@dc5-retention-flops.html
    - shard-rkl:          NOTRUN -> [SKIP][370] ([i915#14544] / [i915#3828])
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html
    - shard-dg1:          NOTRUN -> [SKIP][371] ([i915#3828])
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-15/igt@kms_pm_dc@dc5-retention-flops.html
    - shard-mtlp:         NOTRUN -> [SKIP][372] ([i915#3828])
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-8/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-rkl:          NOTRUN -> [SKIP][373] ([i915#15739])
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-rkl:          NOTRUN -> [SKIP][374] ([i915#3828])
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-dg2:          NOTRUN -> [SKIP][375] ([i915#8430])
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-6/igt@kms_pm_lpsp@screens-disabled.html
    - shard-rkl:          NOTRUN -> [SKIP][376] ([i915#8430])
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-rkl:          [PASS][377] -> [SKIP][378] ([i915#15073]) +3 other tests skip
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-dg2:          [PASS][379] -> [SKIP][380] ([i915#15073]) +1 other test skip
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-rkl:          NOTRUN -> [SKIP][381] ([i915#15073])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-dg1:          [PASS][382] -> [SKIP][383] ([i915#15073]) +1 other test skip
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp.html
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-tglu-1:       NOTRUN -> [SKIP][384] ([i915#15073]) +1 other test skip
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-glk:          [PASS][385] -> [INCOMPLETE][386] ([i915#10553])
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-glk4/igt@kms_pm_rpm@system-suspend-modeset.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk9/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_prime@d3hot:
    - shard-tglu:         NOTRUN -> [SKIP][387] ([i915#6524])
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-3/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-dg2:          NOTRUN -> [SKIP][388] ([i915#11520]) +6 other tests skip
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-8/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
    - shard-rkl:          NOTRUN -> [SKIP][389] ([i915#11520]) +8 other tests skip
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
    - shard-tglu-1:       NOTRUN -> [SKIP][390] ([i915#11520]) +4 other tests skip
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
    - shard-snb:          NOTRUN -> [SKIP][391] ([i915#11520]) +3 other tests skip
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-snb7/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
    - shard-dg1:          NOTRUN -> [SKIP][392] ([i915#11520]) +5 other tests skip
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-19/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][393] ([i915#9808]) +1 other test skip
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
    - shard-glk10:        NOTRUN -> [SKIP][394] ([i915#11520]) +4 other tests skip
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-mtlp:         NOTRUN -> [SKIP][395] ([i915#12316]) +5 other tests skip
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-4/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-tglu:         NOTRUN -> [SKIP][396] ([i915#11520]) +7 other tests skip
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
    - shard-rkl:          NOTRUN -> [SKIP][397] ([i915#11520] / [i915#14544])
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html

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

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2:          NOTRUN -> [SKIP][399] ([i915#9683])
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html
    - shard-rkl:          NOTRUN -> [SKIP][400] ([i915#9683])
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_psr2_su@page_flip-p010.html
    - shard-tglu-1:       NOTRUN -> [SKIP][401] ([i915#9683])
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html
    - shard-dg1:          NOTRUN -> [SKIP][402] ([i915#9683])
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-19/igt@kms_psr2_su@page_flip-p010.html
    - shard-mtlp:         NOTRUN -> [SKIP][403] ([i915#4348])
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-1/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-tglu:         NOTRUN -> [SKIP][404] ([i915#9683])
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-2/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-pr-basic:
    - shard-mtlp:         NOTRUN -> [SKIP][405] ([i915#9688]) +9 other tests skip
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-4/igt@kms_psr@fbc-pr-basic.html

  * igt@kms_psr@fbc-pr-sprite-plane-onoff:
    - shard-rkl:          NOTRUN -> [SKIP][406] ([i915#1072] / [i915#9732]) +25 other tests skip
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
    - shard-tglu-1:       NOTRUN -> [SKIP][407] ([i915#9732]) +10 other tests skip
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-plane-onoff.html

  * igt@kms_psr@fbc-psr-cursor-plane-move:
    - shard-dg2:          NOTRUN -> [SKIP][408] ([i915#1072] / [i915#9732]) +18 other tests skip
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-6/igt@kms_psr@fbc-psr-cursor-plane-move.html

  * igt@kms_psr@fbc-psr2-primary-mmap-gtt:
    - shard-tglu:         NOTRUN -> [SKIP][409] ([i915#9732]) +18 other tests skip
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-7/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html
    - shard-rkl:          NOTRUN -> [SKIP][410] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html

  * igt@kms_psr@psr-suspend:
    - shard-dg1:          NOTRUN -> [SKIP][411] ([i915#1072] / [i915#9732]) +10 other tests skip
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-17/igt@kms_psr@psr-suspend.html

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

  * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
    - shard-glk:          NOTRUN -> [INCOMPLETE][413] ([i915#15500] / [i915#16184])
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
    - shard-dg1:          NOTRUN -> [SKIP][414] ([i915#5289])
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
    - shard-tglu:         NOTRUN -> [SKIP][415] ([i915#5289])
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html

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

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-rkl:          NOTRUN -> [SKIP][417] ([i915#5289]) +2 other tests skip
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_setmode@basic:
    - shard-tglu:         NOTRUN -> [FAIL][418] ([i915#15106]) +2 other tests fail
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-9/igt@kms_setmode@basic.html

  * igt@kms_setmode@basic@pipe-a-hdmi-a-1:
    - shard-rkl:          [PASS][419] -> [FAIL][420] ([i915#15106]) +2 other tests fail
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-8/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html

  * igt@kms_setmode@basic@pipe-b-edp-1:
    - shard-mtlp:         [PASS][421] -> [FAIL][422] ([i915#15106]) +2 other tests fail
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-2/igt@kms_setmode@basic@pipe-b-edp-1.html

  * igt@kms_setmode@invalid-clone-exclusive-crtc:
    - shard-mtlp:         NOTRUN -> [SKIP][423] ([i915#3555] / [i915#8809] / [i915#8823])
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-rkl:          NOTRUN -> [SKIP][424] ([i915#9906]) +1 other test skip
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-2/igt@kms_vrr@flip-basic-fastset.html

  * igt@kms_vrr@flipline:
    - shard-dg2:          NOTRUN -> [SKIP][425] ([i915#15243] / [i915#3555])
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-5/igt@kms_vrr@flipline.html

  * igt@kms_vrr@seamless-rr-switch-vrr:
    - shard-tglu:         NOTRUN -> [SKIP][426] ([i915#9906]) +2 other tests skip
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-vrr.html

  * igt@perf@per-context-mode-unprivileged:
    - shard-rkl:          NOTRUN -> [SKIP][427] ([i915#14544] / [i915#2435])
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html

  * igt@perf_pmu@module-unload:
    - shard-tglu:         NOTRUN -> [ABORT][428] ([i915#15778])
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-8/igt@perf_pmu@module-unload.html

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

  * igt@perf_pmu@rc6-suspend:
    - shard-glk:          NOTRUN -> [INCOMPLETE][430] ([i915#13356] / [i915#14242] / [i915#16236])
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk4/igt@perf_pmu@rc6-suspend.html
    - shard-rkl:          NOTRUN -> [INCOMPLETE][431] ([i915#13520])
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@perf_pmu@rc6-suspend.html

  * igt@perf_pmu@rc6@other-idle-gt0:
    - shard-dg2:          NOTRUN -> [SKIP][432] ([i915#8516])
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-7/igt@perf_pmu@rc6@other-idle-gt0.html
    - shard-rkl:          NOTRUN -> [SKIP][433] ([i915#8516])
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@perf_pmu@rc6@other-idle-gt0.html

  * igt@prime_vgem@basic-fence-read:
    - shard-rkl:          NOTRUN -> [SKIP][434] ([i915#3291] / [i915#3708]) +1 other test skip
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@prime_vgem@basic-fence-read.html

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

  * igt@prime_vgem@coherency-gtt:
    - shard-rkl:          NOTRUN -> [SKIP][436] ([i915#3708])
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-3/igt@prime_vgem@coherency-gtt.html

  * igt@sriov_basic@bind-unbind-vf:
    - shard-rkl:          NOTRUN -> [SKIP][437] ([i915#9917])
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@sriov_basic@bind-unbind-vf.html

  * igt@sriov_basic@bind-unbind-vf@vf-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][438] ([i915#16066]) +19 other tests skip
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html

  * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
    - shard-tglu:         NOTRUN -> [SKIP][439] ([i915#16066]) +9 other tests skip
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-4/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html

  
#### Possible fixes ####

  * igt@i915_module_load@resize-bar:
    - shard-dg2:          [DMESG-WARN][440] ([i915#14545]) -> [PASS][441]
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-1/igt@i915_module_load@resize-bar.html
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-6/igt@i915_module_load@resize-bar.html

  * igt@i915_pm_rpm@gem-idle:
    - shard-dg1:          [DMESG-WARN][442] ([i915#4423]) -> [PASS][443] +1 other test pass
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg1-14/igt@i915_pm_rpm@gem-idle.html
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-15/igt@i915_pm_rpm@gem-idle.html

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - shard-rkl:          [INCOMPLETE][444] ([i915#13356]) -> [PASS][445]
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@i915_pm_rpm@system-suspend-execbuf.html

  * igt@i915_selftest@live:
    - shard-mtlp:         [DMESG-FAIL][446] ([i915#15560]) -> [PASS][447]
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-mtlp-2/igt@i915_selftest@live.html
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-1/igt@i915_selftest@live.html

  * igt@i915_selftest@live@gem_contexts:
    - shard-mtlp:         [DMESG-FAIL][448] ([i915#16077]) -> [PASS][449]
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-mtlp-2/igt@i915_selftest@live@gem_contexts.html
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-1/igt@i915_selftest@live@gem_contexts.html

  * igt@i915_suspend@sysfs-reader:
    - shard-rkl:          [INCOMPLETE][450] ([i915#4817]) -> [PASS][451]
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-4/igt@i915_suspend@sysfs-reader.html
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@i915_suspend@sysfs-reader.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-mtlp:         [FAIL][452] ([i915#5956]) -> [PASS][453] +1 other test pass
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-0:
    - shard-mtlp:         [FAIL][454] ([i915#15733] / [i915#5138]) -> [PASS][455]
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-mtlp-8/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-4/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
    - shard-tglu:         [FAIL][456] ([i915#13566]) -> [PASS][457] +1 other test pass
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html

  * igt@kms_force_connector_basic@force-connector-state:
    - shard-mtlp:         [SKIP][458] ([i915#15672]) -> [PASS][459]
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-4/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
    - shard-rkl:          [SKIP][460] ([i915#15989]) -> [PASS][461] +9 other tests pass
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-move:
    - shard-glk:          [SKIP][462] -> [PASS][463] +2 other tests pass
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-glk9/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-move.html
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-move.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-rkl:          [INCOMPLETE][464] ([i915#12756] / [i915#13476]) -> [PASS][465]
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
    - shard-rkl:          [INCOMPLETE][466] ([i915#13476]) -> [PASS][467]
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg2:          [SKIP][468] ([i915#9340]) -> [PASS][469]
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-7/igt@kms_pm_lpsp@kms-lpsp.html
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-dg2:          [SKIP][470] ([i915#15073]) -> [PASS][471] +1 other test pass
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-rkl:          [SKIP][472] ([i915#15073]) -> [PASS][473] +2 other tests pass
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
    - shard-dg1:          [SKIP][474] ([i915#15073]) -> [PASS][475]
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@system-suspend-idle:
    - shard-dg2:          [INCOMPLETE][476] ([i915#14419]) -> [PASS][477]
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-1/igt@kms_pm_rpm@system-suspend-idle.html

  * igt@kms_vrr@negative-basic:
    - shard-mtlp:         [FAIL][478] ([i915#15420]) -> [PASS][479] +1 other test pass
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-mtlp-5/igt@kms_vrr@negative-basic.html
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-2/igt@kms_vrr@negative-basic.html

  
#### Warnings ####

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-rkl:          [SKIP][480] ([i915#9323]) -> [SKIP][481] ([i915#14544] / [i915#9323])
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html

  * igt@gem_exec_reloc@basic-concurrent0:
    - shard-rkl:          [SKIP][482] ([i915#3281]) -> [SKIP][483] ([i915#14544] / [i915#3281]) +3 other tests skip
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-3/igt@gem_exec_reloc@basic-concurrent0.html
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@gem_exec_reloc@basic-concurrent0.html

  * igt@gem_exec_reloc@basic-gtt-wc-noreloc:
    - shard-rkl:          [SKIP][484] ([i915#14544] / [i915#3281]) -> [SKIP][485] ([i915#3281])
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html

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

  * igt@gem_lmem_swapping@massive-random:
    - shard-rkl:          [SKIP][488] ([i915#14544] / [i915#4613]) -> [SKIP][489] ([i915#4613])
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@gem_lmem_swapping@massive-random.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-90:
    - shard-rkl:          [SKIP][490] ([i915#5286]) -> [SKIP][491] ([i915#14544] / [i915#5286]) +2 other tests skip
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-rkl:          [SKIP][492] ([i915#3638]) -> [SKIP][493] ([i915#14544] / [i915#3638]) +1 other test skip
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][494] ([i915#12313]) -> [SKIP][495] ([i915#12313] / [i915#14544])
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3:
    - shard-dg1:          [SKIP][496] ([i915#6095]) -> [SKIP][497] ([i915#4423] / [i915#6095]) +1 other test skip
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg1-13/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-12/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
    - shard-rkl:          [SKIP][498] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][499] ([i915#14098] / [i915#6095])
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
    - shard-rkl:          [SKIP][500] ([i915#14098] / [i915#6095]) -> [SKIP][501] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html

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

  * igt@kms_chamelium_edid@dp-mode-timings:
    - shard-rkl:          [SKIP][504] ([i915#11151] / [i915#7828]) -> [SKIP][505] ([i915#11151] / [i915#14544] / [i915#7828]) +5 other tests skip
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-8/igt@kms_chamelium_edid@dp-mode-timings.html
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html

  * igt@kms_content_protection@content-type-change:
    - shard-rkl:          [SKIP][506] ([i915#15865]) -> [SKIP][507] ([i915#14544] / [i915#15865])
   [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-7/igt@kms_content_protection@content-type-change.html
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_content_protection@content-type-change.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-rkl:          [SKIP][508] ([i915#13049]) -> [SKIP][509] ([i915#13049] / [i915#14544])
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
   [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-rkl:          [SKIP][510] ([i915#14544] / [i915#3555]) -> [SKIP][511] ([i915#3555])
   [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
   [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-dg2:          [SKIP][512] ([i915#13049]) -> [SKIP][513] ([i915#13049] / [i915#3359])
   [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x170.html
   [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html

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

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-rkl:          [SKIP][516] ([i915#14544]) -> [SKIP][517] +8 other tests skip
   [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
   [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
    - shard-rkl:          [SKIP][518] ([i915#9067]) -> [SKIP][519] ([i915#14544] / [i915#9067])
   [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
   [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-rkl:          [SKIP][520] ([i915#3955]) -> [SKIP][521] ([i915#14544] / [i915#3955])
   [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html
   [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-rkl:          [SKIP][522] ([i915#16084]) -> [SKIP][523] ([i915#14544] / [i915#16084])
   [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-8/igt@kms_feature_discovery@chamelium.html
   [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-rkl:          [SKIP][524] ([i915#9337]) -> [SKIP][525] ([i915#14544] / [i915#9337])
   [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-8/igt@kms_feature_discovery@dp-mst.html
   [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-plain-flip:
    - shard-rkl:          [SKIP][526] ([i915#9934]) -> [SKIP][527] ([i915#14544] / [i915#9934]) +3 other tests skip
   [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-5/igt@kms_flip@2x-plain-flip.html
   [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-dg1:          [SKIP][528] ([i915#15643]) -> [SKIP][529] ([i915#15643] / [i915#4423])
   [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
   [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-mtlp:         [SKIP][530] ([i915#15672]) -> [SKIP][531]
   [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
   [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-rkl:          [SKIP][532] ([i915#1825]) -> [SKIP][533] ([i915#14544] / [i915#1825]) +1 other test skip
   [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][534] ([i915#14544] / [i915#1825]) -> [SKIP][535] ([i915#1825]) +1 other test skip
   [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
   [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-plflip-blt:
    - shard-dg1:          [SKIP][536] -> [SKIP][537] ([i915#4423]) +2 other tests skip
   [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg1-13/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-plflip-blt.html
   [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-12/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
    - shard-rkl:          [SKIP][538] ([i915#5439]) -> [SKIP][539] ([i915#14544] / [i915#5439])
   [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
   [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
    - shard-rkl:          [SKIP][540] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][541] ([i915#15102] / [i915#3023]) +2 other tests skip
   [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
   [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu:
    - shard-dg2:          [SKIP][542] ([i915#15102]) -> [SKIP][543] ([i915#10433] / [i915#15102]) +2 other tests skip
   [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
   [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu:
    - shard-rkl:          [SKIP][544] ([i915#15102]) -> [SKIP][545] ([i915#14544] / [i915#15102]) +10 other tests skip
   [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html
   [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
    - shard-dg2:          [SKIP][546] ([i915#10433] / [i915#15102]) -> [SKIP][547] ([i915#15102]) +5 other tests skip
   [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
   [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
    - shard-rkl:          [SKIP][548] ([i915#15102] / [i915#3023]) -> [SKIP][549] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
   [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
   [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu:
    - shard-rkl:          [SKIP][550] ([i915#14544] / [i915#15102]) -> [SKIP][551] ([i915#15102]) +2 other tests skip
   [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
   [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-msflip-blt:
    - shard-dg1:          [SKIP][552] ([i915#15102]) -> [SKIP][553] ([i915#15102] / [i915#4423])
   [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg1-13/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-msflip-blt.html
   [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-18/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-rkl:          [SKIP][554] -> [SKIP][555] ([i915#14544]) +28 other tests skip
   [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-5/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt.html
   [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_hdr@invalid-hdr:
    - shard-rkl:          [SKIP][556] ([i915#16012] / [i915#3555] / [i915#8228]) -> [SKIP][557] ([i915#3555] / [i915#8228])
   [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-7/igt@kms_hdr@invalid-hdr.html
   [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-1/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010:
    - shard-rkl:          [SKIP][558] ([i915#16012]) -> [SKIP][559] ([i915#16025]) +1 other test skip
   [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-7/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010.html
   [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-1/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-rkl:          [SKIP][560] ([i915#15458]) -> [SKIP][561] ([i915#14544] / [i915#15458])
   [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
    - shard-rkl:          [SKIP][562] ([i915#15709]) -> [SKIP][563] ([i915#14544] / [i915#15709]) +3 other tests skip
   [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
   [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-rkl:          [SKIP][564] ([i915#13958]) -> [SKIP][565] ([i915#13958] / [i915#14544])
   [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-x.html
   [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
    - shard-rkl:          [SKIP][566] ([i915#15329]) -> [SKIP][567] ([i915#14544] / [i915#15329]) +3 other tests skip
   [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
   [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-rkl:          [SKIP][568] ([i915#12343] / [i915#5354]) -> [SKIP][569] ([i915#12343] / [i915#14544] / [i915#5354])
   [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html
   [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-rkl:          [SKIP][570] ([i915#15948]) -> [SKIP][571] ([i915#14544] / [i915#15948])
   [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-4/igt@kms_pm_dc@dc6-psr.html
   [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress:
    - shard-dg1:          [SKIP][572] ([i915#15073]) -> [SKIP][573] ([i915#4423])
   [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
   [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-rkl:          [SKIP][574] ([i915#6524]) -> [SKIP][575] ([i915#14544] / [i915#6524])
   [574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-3/igt@kms_prime@basic-crc-hybrid.html
   [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-rkl:          [SKIP][576] ([i915#11520]) -> [SKIP][577] ([i915#11520] / [i915#14544]) +2 other tests skip
   [576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
   [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-dg1:          [SKIP][578] ([i915#1072] / [i915#9732]) -> [SKIP][579] ([i915#1072] / [i915#4423] / [i915#9732])
   [578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg1-13/igt@kms_psr@fbc-psr2-primary-render.html
   [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-19/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_psr@pr-no-drrs:
    - shard-rkl:          [SKIP][580] ([i915#1072] / [i915#9732]) -> [SKIP][581] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip
   [580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-3/igt@kms_psr@pr-no-drrs.html
   [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_psr@pr-no-drrs.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-dg2:          [SKIP][582] ([i915#12755] / [i915#15867] / [i915#5190]) -> [SKIP][583] ([i915#15867] / [i915#5190])
   [582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
   [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-rkl:          [SKIP][584] ([i915#3555]) -> [SKIP][585] ([i915#14544] / [i915#3555]) +5 other tests skip
   [584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-2/igt@kms_setmode@basic-clone-single-crtc.html
   [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-rkl:          [SKIP][586] ([i915#8623]) -> [SKIP][587] ([i915#14544] / [i915#8623])
   [586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html
   [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-dg1:          [SKIP][588] ([i915#4423] / [i915#9906]) -> [SKIP][589] ([i915#9906])
   [588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-dg1-12/igt@kms_vrr@flip-basic-fastset.html
   [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-dg1-17/igt@kms_vrr@flip-basic-fastset.html

  * igt@kms_vrr@lobf:
    - shard-rkl:          [SKIP][590] ([i915#11920]) -> [SKIP][591] ([i915#11920] / [i915#14544])
   [590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-5/igt@kms_vrr@lobf.html
   [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_vrr@lobf.html

  * igt@kms_vrr@seamless-rr-switch-virtual:
    - shard-rkl:          [SKIP][592] ([i915#9906]) -> [SKIP][593] ([i915#14544] / [i915#9906])
   [592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-virtual.html
   [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-rkl:          [SKIP][594] ([i915#14544] / [i915#9917]) -> [SKIP][595] ([i915#9917])
   [594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18623/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
   [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15300/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  
  [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
  [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
  [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
  [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
  [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
  [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
  [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
  [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
  [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
  [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
  [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
  [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
  [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
  [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
  [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242
  [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
  [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
  [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
  [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
  [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
  [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
  [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
  [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
  [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
  [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
  [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
  [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
  [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
  [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
  [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
  [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
  [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
  [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
  [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
  [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
  [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
  [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
  [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
  [i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011
  [i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012
  [i915#16013]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16013
  [i915#16018]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16018
  [i915#16025]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16025
  [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
  [i915#16077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16077
  [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079
  [i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080
  [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
  [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084
  [i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166
  [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
  [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184
  [i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
  [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
  [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
  [i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
  [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
  [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
  [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
  [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
  [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
  [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
  [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
  [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
  [i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
  [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
  [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
  [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8947 -> IGTPW_15300
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_18623: 740ac771c704c3fa301d7c99952028fe579c7f0b @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15300: 55a850dc7b17fd3fb6123750f385fab792f1bbeb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* Re: [PATCH] lib: replace libprocps/libproc2 with /proc-based process enumeration
  2026-06-03 18:28 [PATCH] lib: replace libprocps/libproc2 with /proc-based process enumeration Jia Yao
                   ` (3 preceding siblings ...)
  2026-06-05  2:11 ` ✓ i915.CI.Full: " Patchwork
@ 2026-06-09 17:51 ` Bai, Zongyao
  2026-06-11 21:22   ` Dixit, Ashutosh
  4 siblings, 1 reply; 7+ messages in thread
From: Bai, Zongyao @ 2026-06-09 17:51 UTC (permalink / raw)
  To: Jia Yao, igt-dev

Hi Jia,

LGTM

  Reviewed-by: Zongyao Bai <zongyao.bai@intel.com>


On 6/3/2026 11:28 AM, Jia Yao wrote:
> The previous code used compile-time #ifdef HAVE_LIBPROCPS / HAVE_LIBPROC2
> to select between two incompatible APIs, requiring separate builds for
> Ubuntu 22.04 (libprocps) and Ubuntu 24.04 (libproc2).
> Replace the platform-specific code with internal static helpers in
> igt_aux.c that read /proc/<pid>/status directly, requiring no external
> library and working identically across distro versions.
> The libprocps/libproc2 meson dependencies have been removed entirely.
>
> Cc: Zongyao Bai <zongyao.bai@intel.com>
> Signed-off-by: Jia Yao <jia.yao@intel.com>
> ---
>   lib/igt_aux.c   | 203 +++++++++++++++++++++++++++++++-----------------
>   lib/meson.build |   6 --
>   meson.build     |  13 +---
>   3 files changed, 131 insertions(+), 91 deletions(-)
>
> diff --git a/lib/igt_aux.c b/lib/igt_aux.c
> index 87c0593a4..0d250ae2f 100644
> --- a/lib/igt_aux.c
> +++ b/lib/igt_aux.c
> @@ -53,12 +53,6 @@
>   #include <assert.h>
>   #include <grp.h>
>   
> -#ifdef HAVE_LIBPROCPS
> -#  include <proc/readproc.h>
> -#elif HAVE_LIBPROC2
> -#  include <libproc2/pids.h>
> -#endif
> -
>   #include <dirent.h>
>   #ifdef __linux__
>   #  include <libudev.h>
> @@ -1285,93 +1279,156 @@ void igt_unlock_mem(void)
>   	locked_mem = NULL;
>   }
>   
> +/*
> + * Internal /proc-based process iterator.  Reads /proc/<pid>/status directly
> + * so there is no dependency on libprocps or libproc2.
> + *
> + * /proc/<pid>/status fields used:
> + *   Name:  <comm>  - command name (kernel escapes spaces, so %s is safe)
> + *   Pid:   <pid>
> + *   Uid:   ruid euid suid fsuid
> + *   Gid:   rgid egid sgid fsgid
> + */
> +struct procps_iter {
> +	DIR   *procdir;
> +	char   comm[64];
> +	pid_t  tid;
> +	uid_t  euid;
> +	gid_t  egid;
> +};
> +
> +static struct procps_iter *procps_open(void)
> +{
> +	struct procps_iter *iter = calloc(1, sizeof(*iter));
> +
> +	if (!iter)
> +		return NULL;
> +
> +	iter->procdir = opendir("/proc");
> +	if (!iter->procdir) {
> +		free(iter);
> +		return NULL;
> +	}
> +
> +	return iter;
> +}
> +
> +static bool procps_next(struct procps_iter *iter,
> +			pid_t *tid, uid_t *euid, gid_t *egid,
> +			const char **comm)
> +{
> +	struct dirent *ent;
> +
> +	if (!iter || !iter->procdir)
> +		return false;
> +
> +	while ((ent = readdir(iter->procdir))) {
> +		char path[64];
> +		FILE *f;
> +		pid_t _tid = 0;
> +		uid_t _euid = 0;
> +		gid_t _egid = 0;
> +		char _comm[64] = "";
> +		int fields = 0;   /* bit 0=Name, 1=Pid, 2=Uid, 3=Gid */
> +		char line[256];
> +
> +		if (ent->d_name[0] < '1' || ent->d_name[0] > '9')
> +			continue;
> +
> +		snprintf(path, sizeof(path), "/proc/%.20s/status", ent->d_name);
> +
> +		f = fopen(path, "r");
> +		if (!f)
> +			continue;
> +
> +		while (fields != 0xf && fgets(line, sizeof(line), f)) {
> +			if (!(fields & 0x1) && strncmp(line, "Name:", 5) == 0) {
> +				if (sscanf(line + 5, " %63s", _comm) == 1)
> +					fields |= 0x1;
> +			} else if (!(fields & 0x2) && strncmp(line, "Pid:", 4) == 0) {
> +				if (sscanf(line + 4, " %d", &_tid) == 1)
> +					fields |= 0x2;
> +			} else if (!(fields & 0x4) && strncmp(line, "Uid:", 4) == 0) {
> +				/* skip ruid, read euid */
> +				unsigned int _e;
> +
> +				if (sscanf(line + 4, " %*u %u", &_e) == 1) {
> +					_euid = (uid_t)_e;
> +					fields |= 0x4;
> +				}
> +			} else if (!(fields & 0x8) && strncmp(line, "Gid:", 4) == 0) {
> +				/* skip rgid, read egid */
> +				unsigned int _e;
> +
> +				if (sscanf(line + 4, " %*u %u", &_e) == 1) {
> +					_egid = (gid_t)_e;
> +					fields |= 0x8;
> +				}
> +			}
> +		}
> +
> +		fclose(f);
> +
> +		if (_tid <= 0)
> +			continue;
> +
> +		iter->tid  = _tid;
> +		iter->euid = _euid;
> +		iter->egid = _egid;
> +		snprintf(iter->comm, sizeof(iter->comm), "%s", _comm);
> +
> +		*tid  = iter->tid;
> +		*euid = iter->euid;
> +		*egid = iter->egid;
> +		*comm = iter->comm;
> +		return true;
> +	}
> +
> +	return false;
> +}
> +
> +static void procps_close(struct procps_iter *iter)
> +{
> +	if (!iter)
> +		return;
> +
> +	if (iter->procdir)
> +		closedir(iter->procdir);
> +
> +	free(iter);
> +}
> +
>   struct igt_process {
> -#ifdef HAVE_LIBPROCPS
> -	PROCTAB * proc;
> -	proc_t *proc_info;
> -#elif HAVE_LIBPROC2
> -	struct pids_info *info;
> -	struct pids_stack *stack;
> -#endif
> +	struct procps_iter *iter;
>   	pid_t tid;
> -	pid_t euid;
> -	pid_t egid;
> -	char *comm;
> +	uid_t euid;
> +	gid_t egid;
> +	const char *comm;
>   };
>   
>   static void open_process(struct igt_process *prcs)
>   {
> -#ifdef HAVE_LIBPROCPS
> -	prcs->proc = openproc(PROC_FILLCOM | PROC_FILLSTAT | PROC_FILLARG);
> -	igt_assert_f(prcs->proc != NULL, "procps open failed\n");
> -	prcs->proc_info = NULL;
> -#elif HAVE_LIBPROC2
> -	enum pids_item Items[] = { PIDS_ID_PID, PIDS_ID_EUID, PIDS_ID_EGID, PIDS_CMD };
> -	int err;
> -
> -	prcs->info = NULL;
> -	err = procps_pids_new(&prcs->info, Items, 4);
> -	igt_assert_f(err >= 0, "procps-ng open failed\n");
> -	prcs->stack = NULL;
> -#endif
> +	prcs->iter = procps_open();
> +	igt_assert_f(prcs->iter, "procps open failed (no /proc filesystem?)\n");
>   	prcs->tid = 0;
>   	prcs->comm = NULL;
>   }
>   
>   static void close_process(struct igt_process *prcs)
>   {
> -#ifdef HAVE_LIBPROCPS
> -	if (prcs->proc_info)
> -		freeproc(prcs->proc_info);
> -
> -	closeproc(prcs->proc);
> -	prcs->proc_info = NULL;
> -	prcs->proc = NULL;
> -#elif HAVE_LIBPROC2
> -	procps_pids_unref(&prcs->info);
> -	prcs->info = NULL;
> -#endif
> +	procps_close(prcs->iter);
> +	prcs->iter = NULL;
>   	prcs->tid = 0;
>   	prcs->comm = NULL;
>   }
>   
>   static bool get_process_ids(struct igt_process *prcs)
>   {
> -#ifdef HAVE_LIBPROCPS
> -	if (prcs->proc_info)
> -		freeproc(prcs->proc_info);
> -
> -	prcs->tid = 0;
> -	prcs->comm = NULL;
> -	prcs->proc_info = readproc(prcs->proc, NULL);
> -
> -	if (prcs->proc_info) {
> -		prcs->tid = prcs->proc_info->tid;
> -		prcs->euid = prcs->proc_info->euid;
> -		prcs->egid = prcs->proc_info->egid;
> -		prcs->comm = prcs->proc_info->cmd;
> -	}
> -#elif HAVE_LIBPROC2
> -	enum rel_items { EU_PID, EU_EUID, EU_EGID, EU_CMD }; // order at open
> -
>   	prcs->tid = 0;
>   	prcs->comm = NULL;
> -	prcs->stack = procps_pids_get(prcs->info, PIDS_FETCH_TASKS_ONLY);
> -	if (prcs->stack) {
> -#if defined(HAVE_LIBPROC2_POST_4_0_5_API)
> -		prcs->tid = PIDS_VAL(EU_PID, s_int, prcs->stack);
> -		prcs->euid = PIDS_VAL(EU_EUID, s_int, prcs->stack);
> -		prcs->egid = PIDS_VAL(EU_EGID, s_int, prcs->stack);
> -		prcs->comm = PIDS_VAL(EU_CMD, str, prcs->stack);
> -#else
> -		prcs->tid = PIDS_VAL(EU_PID, s_int, prcs->stack, prcs->info);
> -		prcs->euid = PIDS_VAL(EU_EUID, s_int, prcs->stack, prcs->info);
> -		prcs->egid = PIDS_VAL(EU_EGID, s_int, prcs->stack, prcs->info);
> -		prcs->comm = PIDS_VAL(EU_CMD, str, prcs->stack, prcs->info);
> -#endif
> -	}
> -#endif
> -	return prcs->tid != 0;
> +	return procps_next(prcs->iter,
> +			   &prcs->tid, &prcs->euid, &prcs->egid,
> +			   &prcs->comm);
>   }
>   
>   /**
> diff --git a/lib/meson.build b/lib/meson.build
> index a8d6566ae..f25ecd8b2 100644
> --- a/lib/meson.build
> +++ b/lib/meson.build
> @@ -257,12 +257,6 @@ if build_xe_eudebug
>   	lib_sources += 'xe/xe_eudebug.c'
>   endif
>   
> -if libprocps.found()
> -	lib_deps += libprocps
> -else
> -	lib_deps += libproc2
> -endif
> -
>   if get_option('srcdir') != ''
>       srcdir = join_paths(get_option('srcdir'), 'tests')
>   else
> diff --git a/meson.build b/meson.build
> index e750f7a51..4def24cbc 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -133,18 +133,7 @@ build_info += 'With libdrm: ' + ','.join(libdrm_info)
>   
>   pciaccess = dependency('pciaccess', version : '>=0.10')
>   libkmod = dependency('libkmod')
> -libprocps = dependency('libprocps', required : false)
> -libproc2 = dependency('libproc2', required : false)
> -if libprocps.found()
> -  config.set('HAVE_LIBPROCPS', 1)
> -elif libproc2.found()
> -  config.set('HAVE_LIBPROC2', 1)
> -  if libproc2.version().version_compare('>= 4.0.5')
> -    config.set('HAVE_LIBPROC2_POST_4_0_5_API', 1)
> -  endif
> -else
> -  error('Either libprocps or libproc2 is required')
> -endif
> +# igt_procps.c reads /proc directly; libprocps and libproc2 are not needed.
>   
>   libunwind = dependency('libunwind', required : get_option('libunwind'))
>   if libunwind.found()

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

* Re: [PATCH] lib: replace libprocps/libproc2 with /proc-based process enumeration
  2026-06-09 17:51 ` [PATCH] " Bai, Zongyao
@ 2026-06-11 21:22   ` Dixit, Ashutosh
  0 siblings, 0 replies; 7+ messages in thread
From: Dixit, Ashutosh @ 2026-06-11 21:22 UTC (permalink / raw)
  To: Bai, Zongyao; +Cc: Jia Yao, igt-dev

On Tue, 09 Jun 2026 10:51:13 -0700, Bai, Zongyao wrote:
>
> Hi Jia,
>
> LGTM
>
>  Reviewed-by: Zongyao Bai <zongyao.bai@intel.com>

Hmm, not sure what's with the '_' (or space) before Reviewed-by, because of
which R-b doesn't show if we retrieve/apply the patch.

Anyway, I've fixed this up and merged it.

Thanks for the patch and the review.

-Ashutosh

>
>
> On 6/3/2026 11:28 AM, Jia Yao wrote:
> > The previous code used compile-time #ifdef HAVE_LIBPROCPS / HAVE_LIBPROC2
> > to select between two incompatible APIs, requiring separate builds for
> > Ubuntu 22.04 (libprocps) and Ubuntu 24.04 (libproc2).
> > Replace the platform-specific code with internal static helpers in
> > igt_aux.c that read /proc/<pid>/status directly, requiring no external
> > library and working identically across distro versions.
> > The libprocps/libproc2 meson dependencies have been removed entirely.
> >
> > Cc: Zongyao Bai <zongyao.bai@intel.com>
> > Signed-off-by: Jia Yao <jia.yao@intel.com>
> > ---
> >   lib/igt_aux.c   | 203 +++++++++++++++++++++++++++++++-----------------
> >   lib/meson.build |   6 --
> >   meson.build     |  13 +---
> >   3 files changed, 131 insertions(+), 91 deletions(-)
> >
> > diff --git a/lib/igt_aux.c b/lib/igt_aux.c
> > index 87c0593a4..0d250ae2f 100644
> > --- a/lib/igt_aux.c
> > +++ b/lib/igt_aux.c
> > @@ -53,12 +53,6 @@
> >   #include <assert.h>
> >   #include <grp.h>
> >   -#ifdef HAVE_LIBPROCPS
> > -#  include <proc/readproc.h>
> > -#elif HAVE_LIBPROC2
> > -#  include <libproc2/pids.h>
> > -#endif
> > -
> >   #include <dirent.h>
> >   #ifdef __linux__
> >   #  include <libudev.h>
> > @@ -1285,93 +1279,156 @@ void igt_unlock_mem(void)
> >	locked_mem = NULL;
> >   }
> >   +/*
> > + * Internal /proc-based process iterator.  Reads /proc/<pid>/status directly
> > + * so there is no dependency on libprocps or libproc2.
> > + *
> > + * /proc/<pid>/status fields used:
> > + *   Name:  <comm>  - command name (kernel escapes spaces, so %s is safe)
> > + *   Pid:   <pid>
> > + *   Uid:   ruid euid suid fsuid
> > + *   Gid:   rgid egid sgid fsgid
> > + */
> > +struct procps_iter {
> > +	DIR   *procdir;
> > +	char   comm[64];
> > +	pid_t  tid;
> > +	uid_t  euid;
> > +	gid_t  egid;
> > +};
> > +
> > +static struct procps_iter *procps_open(void)
> > +{
> > +	struct procps_iter *iter = calloc(1, sizeof(*iter));
> > +
> > +	if (!iter)
> > +		return NULL;
> > +
> > +	iter->procdir = opendir("/proc");
> > +	if (!iter->procdir) {
> > +		free(iter);
> > +		return NULL;
> > +	}
> > +
> > +	return iter;
> > +}
> > +
> > +static bool procps_next(struct procps_iter *iter,
> > +			pid_t *tid, uid_t *euid, gid_t *egid,
> > +			const char **comm)
> > +{
> > +	struct dirent *ent;
> > +
> > +	if (!iter || !iter->procdir)
> > +		return false;
> > +
> > +	while ((ent = readdir(iter->procdir))) {
> > +		char path[64];
> > +		FILE *f;
> > +		pid_t _tid = 0;
> > +		uid_t _euid = 0;
> > +		gid_t _egid = 0;
> > +		char _comm[64] = "";
> > +		int fields = 0;   /* bit 0=Name, 1=Pid, 2=Uid, 3=Gid */
> > +		char line[256];
> > +
> > +		if (ent->d_name[0] < '1' || ent->d_name[0] > '9')
> > +			continue;
> > +
> > +		snprintf(path, sizeof(path), "/proc/%.20s/status", ent->d_name);
> > +
> > +		f = fopen(path, "r");
> > +		if (!f)
> > +			continue;
> > +
> > +		while (fields != 0xf && fgets(line, sizeof(line), f)) {
> > +			if (!(fields & 0x1) && strncmp(line, "Name:", 5) == 0) {
> > +				if (sscanf(line + 5, " %63s", _comm) == 1)
> > +					fields |= 0x1;
> > +			} else if (!(fields & 0x2) && strncmp(line, "Pid:", 4) == 0) {
> > +				if (sscanf(line + 4, " %d", &_tid) == 1)
> > +					fields |= 0x2;
> > +			} else if (!(fields & 0x4) && strncmp(line, "Uid:", 4) == 0) {
> > +				/* skip ruid, read euid */
> > +				unsigned int _e;
> > +
> > +				if (sscanf(line + 4, " %*u %u", &_e) == 1) {
> > +					_euid = (uid_t)_e;
> > +					fields |= 0x4;
> > +				}
> > +			} else if (!(fields & 0x8) && strncmp(line, "Gid:", 4) == 0) {
> > +				/* skip rgid, read egid */
> > +				unsigned int _e;
> > +
> > +				if (sscanf(line + 4, " %*u %u", &_e) == 1) {
> > +					_egid = (gid_t)_e;
> > +					fields |= 0x8;
> > +				}
> > +			}
> > +		}
> > +
> > +		fclose(f);
> > +
> > +		if (_tid <= 0)
> > +			continue;
> > +
> > +		iter->tid  = _tid;
> > +		iter->euid = _euid;
> > +		iter->egid = _egid;
> > +		snprintf(iter->comm, sizeof(iter->comm), "%s", _comm);
> > +
> > +		*tid  = iter->tid;
> > +		*euid = iter->euid;
> > +		*egid = iter->egid;
> > +		*comm = iter->comm;
> > +		return true;
> > +	}
> > +
> > +	return false;
> > +}
> > +
> > +static void procps_close(struct procps_iter *iter)
> > +{
> > +	if (!iter)
> > +		return;
> > +
> > +	if (iter->procdir)
> > +		closedir(iter->procdir);
> > +
> > +	free(iter);
> > +}
> > +
> >   struct igt_process {
> > -#ifdef HAVE_LIBPROCPS
> > -	PROCTAB * proc;
> > -	proc_t *proc_info;
> > -#elif HAVE_LIBPROC2
> > -	struct pids_info *info;
> > -	struct pids_stack *stack;
> > -#endif
> > +	struct procps_iter *iter;
> >	pid_t tid;
> > -	pid_t euid;
> > -	pid_t egid;
> > -	char *comm;
> > +	uid_t euid;
> > +	gid_t egid;
> > +	const char *comm;
> >   };
> >     static void open_process(struct igt_process *prcs)
> >   {
> > -#ifdef HAVE_LIBPROCPS
> > -	prcs->proc = openproc(PROC_FILLCOM | PROC_FILLSTAT | PROC_FILLARG);
> > -	igt_assert_f(prcs->proc != NULL, "procps open failed\n");
> > -	prcs->proc_info = NULL;
> > -#elif HAVE_LIBPROC2
> > -	enum pids_item Items[] = { PIDS_ID_PID, PIDS_ID_EUID, PIDS_ID_EGID, PIDS_CMD };
> > -	int err;
> > -
> > -	prcs->info = NULL;
> > -	err = procps_pids_new(&prcs->info, Items, 4);
> > -	igt_assert_f(err >= 0, "procps-ng open failed\n");
> > -	prcs->stack = NULL;
> > -#endif
> > +	prcs->iter = procps_open();
> > +	igt_assert_f(prcs->iter, "procps open failed (no /proc filesystem?)\n");
> >	prcs->tid = 0;
> >	prcs->comm = NULL;
> >   }
> >     static void close_process(struct igt_process *prcs)
> >   {
> > -#ifdef HAVE_LIBPROCPS
> > -	if (prcs->proc_info)
> > -		freeproc(prcs->proc_info);
> > -
> > -	closeproc(prcs->proc);
> > -	prcs->proc_info = NULL;
> > -	prcs->proc = NULL;
> > -#elif HAVE_LIBPROC2
> > -	procps_pids_unref(&prcs->info);
> > -	prcs->info = NULL;
> > -#endif
> > +	procps_close(prcs->iter);
> > +	prcs->iter = NULL;
> >	prcs->tid = 0;
> >	prcs->comm = NULL;
> >   }
> >     static bool get_process_ids(struct igt_process *prcs)
> >   {
> > -#ifdef HAVE_LIBPROCPS
> > -	if (prcs->proc_info)
> > -		freeproc(prcs->proc_info);
> > -
> > -	prcs->tid = 0;
> > -	prcs->comm = NULL;
> > -	prcs->proc_info = readproc(prcs->proc, NULL);
> > -
> > -	if (prcs->proc_info) {
> > -		prcs->tid = prcs->proc_info->tid;
> > -		prcs->euid = prcs->proc_info->euid;
> > -		prcs->egid = prcs->proc_info->egid;
> > -		prcs->comm = prcs->proc_info->cmd;
> > -	}
> > -#elif HAVE_LIBPROC2
> > -	enum rel_items { EU_PID, EU_EUID, EU_EGID, EU_CMD }; // order at open
> > -
> >	prcs->tid = 0;
> >	prcs->comm = NULL;
> > -	prcs->stack = procps_pids_get(prcs->info, PIDS_FETCH_TASKS_ONLY);
> > -	if (prcs->stack) {
> > -#if defined(HAVE_LIBPROC2_POST_4_0_5_API)
> > -		prcs->tid = PIDS_VAL(EU_PID, s_int, prcs->stack);
> > -		prcs->euid = PIDS_VAL(EU_EUID, s_int, prcs->stack);
> > -		prcs->egid = PIDS_VAL(EU_EGID, s_int, prcs->stack);
> > -		prcs->comm = PIDS_VAL(EU_CMD, str, prcs->stack);
> > -#else
> > -		prcs->tid = PIDS_VAL(EU_PID, s_int, prcs->stack, prcs->info);
> > -		prcs->euid = PIDS_VAL(EU_EUID, s_int, prcs->stack, prcs->info);
> > -		prcs->egid = PIDS_VAL(EU_EGID, s_int, prcs->stack, prcs->info);
> > -		prcs->comm = PIDS_VAL(EU_CMD, str, prcs->stack, prcs->info);
> > -#endif
> > -	}
> > -#endif
> > -	return prcs->tid != 0;
> > +	return procps_next(prcs->iter,
> > +			   &prcs->tid, &prcs->euid, &prcs->egid,
> > +			   &prcs->comm);
> >   }
> >     /**
> > diff --git a/lib/meson.build b/lib/meson.build
> > index a8d6566ae..f25ecd8b2 100644
> > --- a/lib/meson.build
> > +++ b/lib/meson.build
> > @@ -257,12 +257,6 @@ if build_xe_eudebug
> >	lib_sources += 'xe/xe_eudebug.c'
> >   endif
> >   -if libprocps.found()
> > -	lib_deps += libprocps
> > -else
> > -	lib_deps += libproc2
> > -endif
> > -
> >   if get_option('srcdir') != ''
> >       srcdir = join_paths(get_option('srcdir'), 'tests')
> >   else
> > diff --git a/meson.build b/meson.build
> > index e750f7a51..4def24cbc 100644
> > --- a/meson.build
> > +++ b/meson.build
> > @@ -133,18 +133,7 @@ build_info += 'With libdrm: ' + ','.join(libdrm_info)
> >     pciaccess = dependency('pciaccess', version : '>=0.10')
> >   libkmod = dependency('libkmod')
> > -libprocps = dependency('libprocps', required : false)
> > -libproc2 = dependency('libproc2', required : false)
> > -if libprocps.found()
> > -  config.set('HAVE_LIBPROCPS', 1)
> > -elif libproc2.found()
> > -  config.set('HAVE_LIBPROC2', 1)
> > -  if libproc2.version().version_compare('>= 4.0.5')
> > -    config.set('HAVE_LIBPROC2_POST_4_0_5_API', 1)
> > -  endif
> > -else
> > -  error('Either libprocps or libproc2 is required')
> > -endif
> > +# igt_procps.c reads /proc directly; libprocps and libproc2 are not needed.
> >     libunwind = dependency('libunwind', required :
> > get_option('libunwind'))
> >   if libunwind.found()

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

end of thread, other threads:[~2026-06-11 21:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-03 18:28 [PATCH] lib: replace libprocps/libproc2 with /proc-based process enumeration Jia Yao
2026-06-04  1:23 ` ✓ i915.CI.BAT: success for " Patchwork
2026-06-04  1:30 ` ✓ Xe.CI.BAT: " Patchwork
2026-06-04 17:29 ` ✓ Xe.CI.FULL: " Patchwork
2026-06-05  2:11 ` ✓ i915.CI.Full: " Patchwork
2026-06-09 17:51 ` [PATCH] " Bai, Zongyao
2026-06-11 21:22   ` Dixit, Ashutosh

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