All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 00/25] tools: remove unnecessary shared library
@ 2026-06-24  8:47 Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 01/25] tools: igt_stats: drop libigt.so, link against minimal sub-libraries Sebastian Brzezinka
                   ` (27 more replies)
  0 siblings, 28 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

Standalone tools linked libigt.so as a side effect, pulling in cairo,
pixman and libX11 even without framebuffer use.

Following intel_gpu_top's approach, each tool now links only the static
sub-libraries it needs. Five new ones are introduced:

lib_igt_tools_stub, lib_igt_drm_stub, lib_igt_halffloat,
lib_i915_decode, lib_igt_reg_tools.

igt_load_igtrc() is moved to igt_device_scan.c so lsgpu can use
lib_igt_device_scan without pulling in libigt.so.

All 20 tools: 35 shared libs -> 3-8.

Behavioural differences vs original binaries (no-hardware runs):

intel_backlight, intel_lid, intel_gpu_time, intel_audio_dump,
intel_infoframes, intel_panel_fitter, intel_firmware_decode:
assertion failure format: IGT CRITICAL block -> single-line message;
exit code: 98 (IGT_EXIT_FAILURE) -> 1.

intel_gtt, intel_display_poller, intel_watermark:
same as above; additionally print an extra "Test requirement passed:
pci_dev" line on stderr (previously suppressed by IGT log layer).

intel_guc_logger:
same exit code change (98->1); --help drops IGT framework options
(--list-subtests, --run-subtest, --device, etc.) which had no effect
on guc_logger since it opens debugfs directly, not via IGT device
selection; --version, --debug, --hook also removed.
Unknown option exit code: 79 (IGT_EXIT_INVALID) -> 1.

intel_gvtg_test:
skip message: IGT skip block -> single-line; exit code unchanged (77).

Tested on Intel Meteor Lake-P (device 0x7d45) with the series applied:
lsgpu                enumerates card0/renderD128
intel_gpu_frequency  reads cur/min/max/RP1 frequencies
intel_stepping       reports device 0x7d45 rev 0x04
intel_error_decode   parses empty error state
igt_stats            computes median from stdin
intel_backlight      reads current backlight value: 0%
intel_gtt            dumps GTT linear mappings
intel_gpu_time       user: 0.000322s, GPU: 0.0%
intel_infoframes     runs, reports hardware not yet supported
intel_panel_fitter   shows usage with -l/-p/-x/-y options
intel_audio_dump     dumps meteorlake audio registers
intel_watermark      dumps WM_LINETIME and plane watermarks
intel_display_poller shows usage (requires --test option)
intel_lid            polls lid state: open (loops by design)
intel_forcewaked     locks forcewake, restarts daemon on gpu reset
intel_gvtg_test      exits 77, no GVT-g hardware
intel_guc_logger     --help prints usage correctly
intel_vbt_decode     --help prints usage correctly
intel_firmware_decode runs, fails on missing CSR file as expected
intel_dump_decode    runs, rejects unknown options as expected

Sebastian Brzezinka (25):
  tools: igt_stats: drop libigt.so, link against minimal sub-libraries
  tools: intel_firmware_decode: drop libigt.so, link against minimal
    sub-libraries
  lib: extend igt_tools_stub with additional stubs needed by tools
  lib: introduce lib_igt_drm_stub for tools needing driver detection
  lib: introduce lib_igt_halffloat static sub-library for tools
  lib: introduce lib_i915_decode static sub-library for tools
  lib: introduce lib_igt_reg_tools static sub-library for tools
  tools: intel_gpu_frequency: drop libigt.so, link against minimal
    sub-libraries
  lib/i915: intel_decode: replace igt.h with minimal headers
  tools: intel_stepping: drop libigt.so, link against minimal
    sub-libraries
  tools: intel_gtt: drop libigt.so, link against minimal sub-libraries
  tools: intel_error_decode: drop libigt.so, link against minimal
    sub-libraries
  tools: intel_vbt_decode: drop libigt.so, link against minimal
    sub-libraries
  tools: intel_backlight: drop libigt.so, link against minimal
    sub-libraries
  tools: intel_lid: drop libigt.so, link against minimal sub-libraries
  tools: intel_gpu_time: drop libigt.so, link against minimal
    sub-libraries
  tools: intel_audio_dump: drop libigt.so, link against minimal
    sub-libraries
  tools: intel_forcewaked: drop libigt.so, link against minimal
    sub-libraries
  tools: intel_guc_logger: drop libigt.so, link against minimal
    sub-libraries
  tools: intel_infoframes: drop libigt.so, link against minimal
    sub-libraries
  tools: intel_panel_fitter: drop libigt.so, link against minimal
    sub-libraries
  tools: intel_watermark: drop libigt.so, link against minimal
    sub-libraries
  tools: intel_display_poller: drop libigt.so, link against minimal
    sub-libraries
  tools: intel_gvtg_test: drop libigt.so, link against minimal
    sub-libraries
  tools: lsgpu: drop libigt.so, link against minimal sub-libraries

 lib/i915/intel_decode.c  |   4 +-
 lib/igt_core.c           |  47 --------------
 lib/igt_device_scan.c    |  48 +++++++++++++++
 lib/igt_drm_stub.c       | 129 +++++++++++++++++++++++++++++++++++++++
 lib/igt_tools_stub.c     |  67 ++++++++++++++++++++
 lib/meson.build          |  65 +++++++++++++++++++-
 tools/intel_guc_logger.c |  21 ++++++-
 tools/intel_gvtg_test.c  |   2 +-
 tools/lsgpu.c            |   2 +-
 tools/meson.build        | 126 +++++++++++++++++++++++++++++++-------
 10 files changed, 434 insertions(+), 77 deletions(-)
 create mode 100644 lib/igt_drm_stub.c

-- 
2.53.0


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

* [PATCH i-g-t 01/25] tools: igt_stats: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 02/25] tools: intel_firmware_decode: " Sebastian Brzezinka
                   ` (26 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

igt_stats only needs the statistics helpers and a small assert stub.
Link it against lib_igt_stats and lib_igt_tools_stub instead of the
full libigt.so stack.

ldd before: 35  (ldd | wc -l)
ldd after:   4   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 lib/meson.build   | 14 ++++++++++++++
 tools/meson.build |  6 +++++-
 2 files changed, 19 insertions(+), 1 deletion(-)

diff --git a/lib/meson.build b/lib/meson.build
index f25ecd8b2..96903d06f 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -389,6 +389,20 @@ lib_igt_profiling_build = static_library('igt_profiling',
 lib_igt_profiling = declare_dependency(link_with : lib_igt_profiling_build,
 				        include_directories : inc)
 
+lib_igt_tools_stub_build = static_library('igt_tools_stub',
+	['igt_tools_stub.c'],
+	include_directories : inc)
+
+lib_igt_tools_stub = declare_dependency(link_with : lib_igt_tools_stub_build,
+					include_directories : inc)
+
+lib_igt_stats_build = static_library('igt_stats_tools',
+	['igt_stats.c'],
+	include_directories : inc)
+
+lib_igt_stats = declare_dependency(link_with : lib_igt_stats_build,
+				   include_directories : inc)
+
 i915_perf_files = [
   'igt_list.c',
   'i915/perf.c',
diff --git a/tools/meson.build b/tools/meson.build
index 8185ba160..286a718c8 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -14,7 +14,6 @@ endforeach
 tools_progs = [
 	'igt_facts',
 	'igt_power',
-	'igt_stats',
 	'intel_audio_dump',
 	'intel_backlight',
 	'intel_bios_dumper',
@@ -58,6 +57,11 @@ foreach prog : tools_progs
 		   install : true)
 endforeach
 
+executable('igt_stats', 'igt_stats.c',
+	   dependencies : [lib_igt_stats, lib_igt_tools_stub, math],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 02/25] tools: intel_firmware_decode: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 01/25] tools: igt_stats: drop libigt.so, link against minimal sub-libraries Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 03/25] lib: extend igt_tools_stub with additional stubs needed by tools Sebastian Brzezinka
                   ` (25 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_firmware_decode only needs the lightweight assert stub used by
igt_assert(), so the full libigt.so stack is unnecessary.

Switch to linking against lib_igt_tools_stub only.

ldd before: 35  (ldd | wc -l)
ldd after:   3   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index 286a718c8..4c67dde4f 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -24,7 +24,6 @@ tools_progs = [
 	'intel_error_decode',
 	'intel_forcewaked',
 	'intel_gpu_frequency',
-	'intel_firmware_decode',
 	'intel_framebuffer_dump',
 	'intel_gpu_time',
 	'intel_gtt',
@@ -62,6 +61,11 @@ executable('igt_stats', 'igt_stats.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_firmware_decode', 'intel_firmware_decode.c',
+	   dependencies : [lib_igt_tools_stub],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 03/25] lib: extend igt_tools_stub with additional stubs needed by tools
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 01/25] tools: igt_stats: drop libigt.so, link against minimal sub-libraries Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 02/25] tools: intel_firmware_decode: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 04/25] lib: introduce lib_igt_drm_stub for tools needing driver detection Sebastian Brzezinka
                   ` (24 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

Add stubs for functions used by tools when linking without the full
libigt.so: __igt_skip_check, igt_exit, igt_debugfs_open and
igt_open_forcewake_handle_for_pcidev.

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 lib/igt_tools_stub.c | 67 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 67 insertions(+)

diff --git a/lib/igt_tools_stub.c b/lib/igt_tools_stub.c
index 9a0ec6217..081a05a8a 100644
--- a/lib/igt_tools_stub.c
+++ b/lib/igt_tools_stub.c
@@ -21,7 +21,24 @@
  * IN THE SOFTWARE.
  *
  */
+#include <fcntl.h>
+#include <limits.h>
+#include <stdarg.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/stat.h>
+#include <sys/sysmacros.h>
+#include <unistd.h>
+
 #include "igt_core.h"
+#include "igt_debugfs.h"
+
+/*
+ * Forward declaration only - avoids pulling in the heavy igt_gt.h header.
+ * The type is used as an opaque pointer; this stub always returns -1.
+ */
+struct pci_device;
+int igt_open_forcewake_handle_for_pcidev(const struct pci_device *pci_dev);
 
 /* Stub for igt_log, this stub will simply print the msg on stderr device.
  * Domain and log level are ignored.
@@ -49,3 +66,53 @@ void __igt_fail_assert(const char *domain, const char *file,
 		func, assertion);
 	exit(1);
 }
+
+void __igt_skip_check(const char *file, const int line,
+		      const char *func, const char *check, const char *format, ...)
+{
+	fprintf(stderr, "%s: %d %s Skipped: %s", file, line, func, check);
+	if (format) {
+		va_list args;
+
+		fprintf(stderr, ": ");
+		va_start(args, format);
+		vfprintf(stderr, format, args);
+		va_end(args);
+	}
+	fprintf(stderr, "\n");
+	exit(77);
+}
+
+/* Stub: tools use exit(0) rather than the full igt teardown sequence. */
+__noreturn void igt_exit(void)
+{
+	exit(0);
+}
+
+/* Stub: open a debugfs entry for a DRM device directly by path.
+ * device == -1 follows the igt_debugfs_path() convention of defaulting to
+ * the first DRM device (dri/0).  When a valid fd is given, the DRM minor is
+ * resolved via fstat() so the correct dri/<minor> directory is used.
+ */
+int igt_debugfs_open(int device, const char *filename, int mode)
+{
+	char path[PATH_MAX];
+	int drm_minor = 0;
+
+	if (device >= 0) {
+		struct stat st;
+
+		if (fstat(device, &st) == 0 && S_ISCHR(st.st_mode))
+			drm_minor = minor(st.st_rdev);
+	}
+
+	snprintf(path, sizeof(path),
+		 "/sys/kernel/debug/dri/%d/%s", drm_minor, filename);
+	return open(path, mode);
+}
+
+/* Stub: in tool context the driver keeps the GPU awake; no forcewake needed. */
+int igt_open_forcewake_handle_for_pcidev(const struct pci_device *pci_dev)
+{
+	return -1;
+}
-- 
2.53.0


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

* [PATCH i-g-t 04/25] lib: introduce lib_igt_drm_stub for tools needing driver detection
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (2 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 03/25] lib: extend igt_tools_stub with additional stubs needed by tools Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 05/25] lib: introduce lib_igt_halffloat static sub-library for tools Sebastian Brzezinka
                   ` (23 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

Split drm/pciaccess-dependent stubs out of igt_tools_stub.c into a
new igt_drm_stub.c.  This avoids pulling libdrm into tools that only
need dep-free logging and exit stubs.

The new lib_igt_drm_stub static sub-library provides:
igt_pci_system_init, is_i915_device, is_intel_device, xe_dev_id and
__drm_open_driver.  It is also compiled into lib_igt_device_scan which
already needs libdrm and pciaccess.

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 lib/igt_drm_stub.c | 129 +++++++++++++++++++++++++++++++++++++++++++++
 lib/meson.build    |  29 ++++++----
 tools/meson.build  |   3 +-
 3 files changed, 151 insertions(+), 10 deletions(-)
 create mode 100644 lib/igt_drm_stub.c

diff --git a/lib/igt_drm_stub.c b/lib/igt_drm_stub.c
new file mode 100644
index 000000000..871d8bd38
--- /dev/null
+++ b/lib/igt_drm_stub.c
@@ -0,0 +1,129 @@
+/*
+ * Copyright © 2020 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+/*
+ * Minimal DRM/PCI stubs for tools that need driver detection and device
+ * opening but do not link the full libigt.so.  Requires libdrm and pciaccess.
+ */
+
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <pciaccess.h>
+#include <stdbool.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <string.h>
+#include <sys/stat.h>
+#include <sys/sysmacros.h>
+#include <unistd.h>
+#include <xf86drm.h>
+
+#include "drmtest.h"
+
+int igt_pci_system_init(void)
+{
+	return pci_system_init();
+}
+
+static bool driver_name_matches(int fd, const char *name)
+{
+	drmVersionPtr version;
+	bool match = false;
+
+	version = drmGetVersion(fd);
+	if (!version)
+		return false;
+
+	match = version->name_len > 0 && !strcmp(version->name, name);
+	drmFreeVersion(version);
+
+	return match;
+}
+
+bool is_i915_device(int fd)
+{
+	return driver_name_matches(fd, "i915");
+}
+
+bool is_intel_device(int fd)
+{
+	return is_i915_device(fd) || driver_name_matches(fd, "xe");
+}
+
+static uint16_t read_pci_device_id(int fd)
+{
+	char path[PATH_MAX], buf[32];
+	struct stat st;
+	int sysfs, len;
+	unsigned int devid;
+
+	if (fstat(fd, &st) || !S_ISCHR(st.st_mode))
+		return 0;
+
+	snprintf(path, sizeof(path), "/sys/dev/char/%d:%d/device/device",
+		 major(st.st_rdev), minor(st.st_rdev));
+	sysfs = open(path, O_RDONLY);
+	if (sysfs < 0)
+		return 0;
+
+	len = read(sysfs, buf, sizeof(buf) - 1);
+	close(sysfs);
+	if (len <= 0)
+		return 0;
+
+	buf[len] = '\0';
+	if (sscanf(buf, "0x%x", &devid) != 1)
+		return 0;
+
+	return devid;
+}
+
+uint16_t xe_dev_id(int fd);
+uint16_t xe_dev_id(int fd)
+{
+	return read_pci_device_id(fd);
+}
+
+int __drm_open_driver(int chipset)
+{
+	char path[PATH_MAX];
+	int fd;
+
+	for (int i = 0; i < 16; i++) {
+		snprintf(path, sizeof(path), "/dev/dri/card%d", i);
+		fd = open(path, O_RDWR | O_CLOEXEC);
+		if (fd < 0)
+			continue;
+
+		if ((chipset == DRIVER_INTEL && is_i915_device(fd)) ||
+		    (chipset == DRIVER_XE && driver_name_matches(fd, "xe")) ||
+		    (chipset == DRIVER_ANY && is_intel_device(fd)))
+			return fd;
+
+		close(fd);
+	}
+
+	errno = ENODEV;
+	return -1;
+}
diff --git a/lib/meson.build b/lib/meson.build
index 96903d06f..0fcbee230 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -348,24 +348,42 @@ lib_igt_perf_build = static_library('igt_perf',
 lib_igt_perf = declare_dependency(link_with : lib_igt_perf_build,
 				  include_directories : inc)
 
+lib_igt_tools_stub_build = static_library('igt_tools_stub',
+	['igt_tools_stub.c'],
+	include_directories : inc)
+
+lib_igt_tools_stub = declare_dependency(link_with : lib_igt_tools_stub_build,
+					include_directories : inc)
+
+lib_igt_drm_stub_build = static_library('igt_drm_stub',
+	['igt_drm_stub.c'],
+	dependencies : [libdrm, pciaccess],
+	include_directories : inc)
+
+lib_igt_drm_stub = declare_dependency(link_with : lib_igt_drm_stub_build,
+				      dependencies : [libdrm, pciaccess],
+				      include_directories : inc)
+
 scan_dep = [
 	glib,
+	libdrm,
 	libpci,
 	libudev,
+	pciaccess,
 ]
 
 lib_igt_device_scan_build = static_library('igt_device_scan',
 	['igt_device_scan.c',
 	'igt_list.c',
 	'igt_map.c',
-	'igt_tools_stub.c',
 	'intel_device_info.c',
 	'intel_cmds_info.c',
 	],
-	dependencies : scan_dep,
+	dependencies : [scan_dep, lib_igt_drm_stub, lib_igt_tools_stub],
 	include_directories : inc)
 
 lib_igt_device_scan = declare_dependency(link_with : lib_igt_device_scan_build,
+				  dependencies : [libdrm, pciaccess],
 				  include_directories : inc)
 
 lib_igt_drm_clients_build = static_library('igt_drm_clients',
@@ -389,13 +407,6 @@ lib_igt_profiling_build = static_library('igt_profiling',
 lib_igt_profiling = declare_dependency(link_with : lib_igt_profiling_build,
 				        include_directories : inc)
 
-lib_igt_tools_stub_build = static_library('igt_tools_stub',
-	['igt_tools_stub.c'],
-	include_directories : inc)
-
-lib_igt_tools_stub = declare_dependency(link_with : lib_igt_tools_stub_build,
-					include_directories : inc)
-
 lib_igt_stats_build = static_library('igt_stats_tools',
 	['igt_stats.c'],
 	include_directories : inc)
diff --git a/tools/meson.build b/tools/meson.build
index 4c67dde4f..53aa31056 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -105,7 +105,8 @@ install_subdir('registers', install_dir : datadir)
 executable('intel_gpu_top', 'intel_gpu_top.c',
 	   install : true,
 	   install_rpath : bindir_rpathdir,
-	   dependencies : [lib_igt_perf,lib_igt_device_scan,lib_igt_drm_clients,lib_igt_drm_fdinfo,math])
+	   dependencies : [lib_igt_perf,lib_igt_device_scan,lib_igt_drm_clients,lib_igt_drm_fdinfo,
+	                   lib_igt_drm_stub, lib_igt_tools_stub, math])
 
 executable('amd_hdmi_compliance', 'amd_hdmi_compliance.c',
 	   dependencies : [tool_deps],
-- 
2.53.0


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

* [PATCH i-g-t 05/25] lib: introduce lib_igt_halffloat static sub-library for tools
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (3 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 04/25] lib: introduce lib_igt_drm_stub for tools needing driver detection Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 06/25] lib: introduce lib_i915_decode " Sebastian Brzezinka
                   ` (22 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

Add lib_igt_halffloat backed by igt_halffloat.c with a math dependency.
Tools that use half-float conversion (e.g. intel_vbt_decode) can link
this minimal library instead of the full libigt.so.

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 lib/meson.build | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/lib/meson.build b/lib/meson.build
index 0fcbee230..299acae7f 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -414,6 +414,14 @@ lib_igt_stats_build = static_library('igt_stats_tools',
 lib_igt_stats = declare_dependency(link_with : lib_igt_stats_build,
 				   include_directories : inc)
 
+lib_igt_halffloat_build = static_library('igt_halffloat',
+	['igt_halffloat.c'],
+	include_directories : inc)
+
+lib_igt_halffloat = declare_dependency(link_with : lib_igt_halffloat_build,
+				       dependencies : [math],
+				       include_directories : inc)
+
 i915_perf_files = [
   'igt_list.c',
   'i915/perf.c',
-- 
2.53.0


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

* [PATCH i-g-t 06/25] lib: introduce lib_i915_decode static sub-library for tools
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (4 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 05/25] lib: introduce lib_igt_halffloat static sub-library for tools Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 07/25] lib: introduce lib_igt_reg_tools " Sebastian Brzezinka
                   ` (21 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

Add lib_i915_decode built from i915/intel_decode.c and instdone.c.
This lets tools like intel_error_decode link only the decode logic
without pulling in the full libigt.so.

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 lib/meson.build | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/lib/meson.build b/lib/meson.build
index 299acae7f..cced7b260 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -422,6 +422,18 @@ lib_igt_halffloat = declare_dependency(link_with : lib_igt_halffloat_build,
 				       dependencies : [math],
 				       include_directories : inc)
 
+lib_i915_decode_build = static_library('i915_decode',
+	['i915/intel_decode.c',
+	 'instdone.c',
+	],
+	dependencies : [lib_igt_chipset],
+	include_directories : inc)
+
+lib_i915_decode = declare_dependency(link_with : lib_i915_decode_build,
+				     dependencies : [lib_igt_chipset,
+				                     lib_igt_tools_stub],
+				     include_directories : inc)
+
 i915_perf_files = [
   'igt_list.c',
   'i915/perf.c',
-- 
2.53.0


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

* [PATCH i-g-t 07/25] lib: introduce lib_igt_reg_tools static sub-library for tools
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (5 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 06/25] lib: introduce lib_i915_decode " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 08/25] tools: intel_gpu_frequency: drop libigt.so, link against minimal sub-libraries Sebastian Brzezinka
                   ` (20 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

Add lib_igt_reg_tools built from intel_mmio.c, intel_reg_map.c and
intel_iosf.c.  Tools that need register access (e.g. intel_reg) can
link this library without pulling in the full libigt.so.

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 lib/meson.build | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/lib/meson.build b/lib/meson.build
index cced7b260..95bce8e1f 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -434,6 +434,21 @@ lib_i915_decode = declare_dependency(link_with : lib_i915_decode_build,
 				                     lib_igt_tools_stub],
 				     include_directories : inc)
 
+lib_igt_reg_tools_build = static_library('igt_reg_tools',
+	['intel_mmio.c',
+	 'intel_reg_map.c',
+	 'intel_iosf.c',
+	],
+	dependencies : [pciaccess, libdrm],
+	include_directories : inc)
+
+lib_igt_reg_tools = declare_dependency(link_with : lib_igt_reg_tools_build,
+				       dependencies : [lib_igt_chipset,
+				                       lib_igt_tools_stub,
+				                       lib_igt_drm_stub,
+				                       pciaccess, libdrm],
+				       include_directories : inc)
+
 i915_perf_files = [
   'igt_list.c',
   'i915/perf.c',
-- 
2.53.0


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

* [PATCH i-g-t 08/25] tools: intel_gpu_frequency: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (6 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 07/25] lib: introduce lib_igt_reg_tools " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 09/25] lib/i915: intel_decode: replace igt.h with minimal headers Sebastian Brzezinka
                   ` (19 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_gpu_frequency needs only intel_gen/devid helpers and a DRM device
opener to query the GPU frequency.  Link it against lib_igt_chipset for
the devid helpers and lib_igt_drm_stub for driver detection and device
opening, instead of the full libigt.so stack.

ldd before: 35  (ldd intel_gpu_frequency | wc -l)
ldd after:   5  (ldd intel_gpu_frequency | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index 53aa31056..01400f53e 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -23,7 +23,6 @@ tools_progs = [
 	'intel_dump_decode',
 	'intel_error_decode',
 	'intel_forcewaked',
-	'intel_gpu_frequency',
 	'intel_framebuffer_dump',
 	'intel_gpu_time',
 	'intel_gtt',
@@ -66,6 +65,11 @@ executable('intel_firmware_decode', 'intel_firmware_decode.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_gpu_frequency', 'intel_gpu_frequency.c',
+	   dependencies : [lib_igt_chipset, lib_igt_tools_stub, lib_igt_drm_stub],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 09/25] lib/i915: intel_decode: replace igt.h with minimal headers
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (7 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 08/25] tools: intel_gpu_frequency: drop libigt.so, link against minimal sub-libraries Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 10/25] tools: intel_stepping: drop libigt.so, link against minimal sub-libraries Sebastian Brzezinka
                   ` (18 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_decode.c only uses two symbols from the IGT universe:
intel_gen() and intel_get_device_info(), both provided by
intel_chipset.h.  The DRM_PRINTFLIKE macro used for the
instr_out() format attribute is provided by xf86drm.h.

This is a prerequisite for building intel_decode.c into a static
sub-library (lib_i915_decode) that tools can link without pulling
in the full libigt.so stack.

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 lib/i915/intel_decode.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/i915/intel_decode.c b/lib/i915/intel_decode.c
index b78993c47..7e21d1cff 100644
--- a/lib/i915/intel_decode.c
+++ b/lib/i915/intel_decode.c
@@ -29,7 +29,8 @@
 #include <stdarg.h>
 #include <string.h>
 
-#include "igt.h"
+#include <xf86drm.h>
+#include "intel_chipset.h"
 #include "intel_decode.h"
 
 /* Struct for tracking intel_decode state. */
-- 
2.53.0


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

* [PATCH i-g-t 10/25] tools: intel_stepping: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (8 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 09/25] lib/i915: intel_decode: replace igt.h with minimal headers Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 11/25] tools: intel_gtt: " Sebastian Brzezinka
                   ` (17 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_stepping only needs the chipset tables and the small tool stub
support used by those helpers, not the full libigt.so stack.

Switch to linking against lib_igt_chipset, lib_igt_tools_stub and
libpciaccess.

ldd before: 35  (ldd | wc -l)
ldd after:   4   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index 01400f53e..8eb346321 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -36,7 +36,6 @@ tools_progs = [
 	'intel_pm_rpm',
 	'intel_reg_checker',
 	'intel_residency',
-	'intel_stepping',
 	'intel_tiling_detect',
 	'intel_vbt_decode',
 	'intel_watermark',
@@ -70,6 +69,12 @@ executable('intel_gpu_frequency', 'intel_gpu_frequency.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_stepping', 'intel_stepping.c',
+	   dependencies : [lib_igt_chipset, lib_igt_tools_stub, lib_igt_drm_stub,
+	                    pciaccess, libdrm],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 11/25] tools: intel_gtt: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (9 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 10/25] tools: intel_stepping: drop libigt.so, link against minimal sub-libraries Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 12/25] tools: intel_error_decode: " Sebastian Brzezinka
                   ` (16 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_gtt only needs the chipset helpers plus the small tool stubs they
rely on. The full libigt.so dependency chain is unnecessary.

Switch to linking against lib_igt_chipset, lib_igt_tools_stub,
libpciaccess and libdrm.

ldd before: 35  (ldd | wc -l)
ldd after:   5   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 lib/i915/intel_decode.c |  1 -
 lib/meson.build         |  5 +++--
 tools/meson.build       | 13 +++++++++++--
 3 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/lib/i915/intel_decode.c b/lib/i915/intel_decode.c
index 7e21d1cff..d4a4da4da 100644
--- a/lib/i915/intel_decode.c
+++ b/lib/i915/intel_decode.c
@@ -28,7 +28,6 @@
 #include <stdbool.h>
 #include <stdarg.h>
 #include <string.h>
-
 #include <xf86drm.h>
 #include "intel_chipset.h"
 #include "intel_decode.h"
diff --git a/lib/meson.build b/lib/meson.build
index 95bce8e1f..fe8ee7ffa 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -431,7 +431,9 @@ lib_i915_decode_build = static_library('i915_decode',
 
 lib_i915_decode = declare_dependency(link_with : lib_i915_decode_build,
 				     dependencies : [lib_igt_chipset,
-				                     lib_igt_tools_stub],
+				                     lib_igt_tools_stub,
+				                     lib_igt_drm_stub,
+				                     pciaccess],
 				     include_directories : inc)
 
 lib_igt_reg_tools_build = static_library('igt_reg_tools',
@@ -448,7 +450,6 @@ lib_igt_reg_tools = declare_dependency(link_with : lib_igt_reg_tools_build,
 				                       lib_igt_drm_stub,
 				                       pciaccess, libdrm],
 				       include_directories : inc)
-
 i915_perf_files = [
   'igt_list.c',
   'i915/perf.c',
diff --git a/tools/meson.build b/tools/meson.build
index 8eb346321..467b8eea1 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -20,12 +20,10 @@ tools_progs = [
 	'intel_display_bandwidth',
 	'intel_display_crc',
 	'intel_display_poller',
-	'intel_dump_decode',
 	'intel_error_decode',
 	'intel_forcewaked',
 	'intel_framebuffer_dump',
 	'intel_gpu_time',
-	'intel_gtt',
 	'intel_guc_logger',
 	'intel_hdcp',
 	'intel_infoframes',
@@ -75,6 +73,17 @@ executable('intel_stepping', 'intel_stepping.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_gtt', 'intel_gtt.c',
+	   dependencies : [lib_igt_chipset, lib_igt_tools_stub, lib_igt_drm_stub,
+	                    pciaccess, libdrm],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
+executable('intel_dump_decode', 'intel_dump_decode.c',
+	   dependencies : [lib_i915_decode],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 12/25] tools: intel_error_decode: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (10 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 11/25] tools: intel_gtt: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 13/25] tools: intel_vbt_decode: " Sebastian Brzezinka
                   ` (15 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_error_decode needs the batch decoder, chipset tables and zlib for
compressed error state handling, but not the full libigt.so stack.

Switch to linking against lib_i915_decode plus the minimal helper
libraries it relies on.

ldd before: 35  (ldd | wc -l)
ldd after:   4   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index 467b8eea1..b04754c5e 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -20,7 +20,6 @@ tools_progs = [
 	'intel_display_bandwidth',
 	'intel_display_crc',
 	'intel_display_poller',
-	'intel_error_decode',
 	'intel_forcewaked',
 	'intel_framebuffer_dump',
 	'intel_gpu_time',
@@ -84,6 +83,11 @@ executable('intel_dump_decode', 'intel_dump_decode.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_error_decode', 'intel_error_decode.c',
+	   dependencies : [lib_i915_decode, pciaccess, zlib, libdrm],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 13/25] tools: intel_vbt_decode: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (11 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 12/25] tools: intel_error_decode: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 14/25] tools: intel_backlight: " Sebastian Brzezinka
                   ` (14 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_vbt_decode only needs the chipset tables, half-float conversion
helpers and the lightweight tool stubs used by those helpers.

Switch to linking against lib_igt_chipset, lib_igt_halffloat and
lib_igt_tools_stub instead of the full libigt.so stack.

ldd before: 35  (ldd | wc -l)
ldd after:   4   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index b04754c5e..46cf1a717 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -34,7 +34,6 @@ tools_progs = [
 	'intel_reg_checker',
 	'intel_residency',
 	'intel_tiling_detect',
-	'intel_vbt_decode',
 	'intel_watermark',
 	'intel_gem_info',
 	'intel_gvtg_test',
@@ -88,6 +87,11 @@ executable('intel_error_decode', 'intel_error_decode.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_vbt_decode', 'intel_vbt_decode.c',
+	   dependencies : [lib_igt_chipset, lib_igt_halffloat, lib_igt_tools_stub, pciaccess, libdrm, math],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 14/25] tools: intel_backlight: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (12 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 13/25] tools: intel_vbt_decode: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 15/25] tools: intel_lid: " Sebastian Brzezinka
                   ` (13 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_backlight only needs MMIO/register access helpers and the chipset
metadata they use. The full libigt.so stack is unnecessary.

Add lib_igt_reg_tools and link intel_backlight against it instead of
libigt.so.

ldd before: 35  (ldd | wc -l)
ldd after:   5   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index 46cf1a717..8899a5b49 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -15,7 +15,6 @@ tools_progs = [
 	'igt_facts',
 	'igt_power',
 	'intel_audio_dump',
-	'intel_backlight',
 	'intel_bios_dumper',
 	'intel_display_bandwidth',
 	'intel_display_crc',
@@ -92,6 +91,11 @@ executable('intel_vbt_decode', 'intel_vbt_decode.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_backlight', 'intel_backlight.c',
+	   dependencies : [lib_igt_reg_tools, pciaccess, libdrm],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 15/25] tools: intel_lid: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (13 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 14/25] tools: intel_backlight: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 16/25] tools: intel_gpu_time: " Sebastian Brzezinka
                   ` (12 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_lid only needs the register/MMIO helper subset, not the full
libigt.so stack.

Switch to linking against lib_igt_reg_tools.

ldd before: 35  (ldd | wc -l)
ldd after:   5   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index 8899a5b49..0978f8f11 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -25,7 +25,6 @@ tools_progs = [
 	'intel_guc_logger',
 	'intel_hdcp',
 	'intel_infoframes',
-	'intel_lid',
 	'intel_opregion_decode',
 	'intel_panel_fitter',
 	'intel_perf_counters',
@@ -96,6 +95,11 @@ executable('intel_backlight', 'intel_backlight.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_lid', 'intel_lid.c',
+	   dependencies : [lib_igt_reg_tools, pciaccess, libdrm],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 16/25] tools: intel_gpu_time: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (14 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 15/25] tools: intel_lid: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 17/25] tools: intel_audio_dump: " Sebastian Brzezinka
                   ` (11 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_gpu_time only needs the register/MMIO helper subset, not the full
libigt.so stack.

Switch to linking against lib_igt_reg_tools.

ldd before: 35  (ldd | wc -l)
ldd after:   5   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index 0978f8f11..2e8ceea36 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -21,7 +21,6 @@ tools_progs = [
 	'intel_display_poller',
 	'intel_forcewaked',
 	'intel_framebuffer_dump',
-	'intel_gpu_time',
 	'intel_guc_logger',
 	'intel_hdcp',
 	'intel_infoframes',
@@ -100,6 +99,11 @@ executable('intel_lid', 'intel_lid.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_gpu_time', 'intel_gpu_time.c',
+	   dependencies : [lib_igt_reg_tools, pciaccess, libdrm],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 17/25] tools: intel_audio_dump: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (15 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 16/25] tools: intel_gpu_time: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 18/25] tools: intel_forcewaked: " Sebastian Brzezinka
                   ` (10 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_audio_dump only needs the register/MMIO helper subset, not the
full libigt.so stack.

Switch to linking against lib_igt_reg_tools.

ldd before: 35  (ldd | wc -l)
ldd after:   5   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index 2e8ceea36..f9bbb41a9 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -14,7 +14,6 @@ endforeach
 tools_progs = [
 	'igt_facts',
 	'igt_power',
-	'intel_audio_dump',
 	'intel_bios_dumper',
 	'intel_display_bandwidth',
 	'intel_display_crc',
@@ -104,6 +103,11 @@ executable('intel_gpu_time', 'intel_gpu_time.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_audio_dump', 'intel_audio_dump.c',
+	   dependencies : [lib_igt_reg_tools, pciaccess, libdrm],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 18/25] tools: intel_forcewaked: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (16 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 17/25] tools: intel_audio_dump: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 19/25] tools: intel_guc_logger: " Sebastian Brzezinka
                   ` (9 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_forcewaked only needs the register/MMIO helper subset, not the
full libigt.so stack.

Switch to linking against lib_igt_reg_tools.

ldd before: 35  (ldd | wc -l)
ldd after:   5   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index f9bbb41a9..15bd40dec 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -18,7 +18,6 @@ tools_progs = [
 	'intel_display_bandwidth',
 	'intel_display_crc',
 	'intel_display_poller',
-	'intel_forcewaked',
 	'intel_framebuffer_dump',
 	'intel_guc_logger',
 	'intel_hdcp',
@@ -108,6 +107,11 @@ executable('intel_audio_dump', 'intel_audio_dump.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_forcewaked', 'intel_forcewaked.c',
+	   dependencies : [lib_igt_reg_tools, pciaccess, libdrm],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 19/25] tools: intel_guc_logger: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (17 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 18/25] tools: intel_forcewaked: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 20/25] tools: intel_infoframes: " Sebastian Brzezinka
                   ` (8 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_guc_logger only needs core logging/assert helpers and debugfs access,
not the full libigt.so stack. Replace the monolithic include with the
minimal headers and link against lib_igt_reg_tools.

ldd before: 35  (ldd | wc -l)
ldd after:   3   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/intel_guc_logger.c | 21 ++++++++++++++++++---
 tools/meson.build        |  6 +++++-
 2 files changed, 23 insertions(+), 4 deletions(-)

diff --git a/tools/intel_guc_logger.c b/tools/intel_guc_logger.c
index 629b4e660..3990aef87 100644
--- a/tools/intel_guc_logger.c
+++ b/tools/intel_guc_logger.c
@@ -38,9 +38,12 @@
 #include <sys/syscall.h>
 #include <sys/mman.h>
 #include <assert.h>
+#include <getopt.h>
 #include <pthread.h>
 
-#include "igt.h"
+#include "drmtest.h"
+#include "igt_core.h"
+#include "igt_debugfs.h"
 
 #define MB(x) ((uint64_t)(x) * 1024 * 1024)
 #ifndef PAGE_SIZE
@@ -367,6 +370,8 @@ static int parse_options(int opt, int opt_index, void *data)
 		discard_oldlogs = true;
 		igt_debug("old/boot-time logs will be discarded\n");
 		break;
+	default:
+		exit(1);
 	}
 
 	return 0;
@@ -382,10 +387,12 @@ static void process_command_line(int argc, char **argv)
 		{"polltimeout", required_argument, 0, 'p'},
 		{"size", required_argument, 0, 's'},
 		{"discard", no_argument, 0, 'd'},
+		{"help", no_argument, 0, 'h'},
 		{ 0, 0, 0, 0 }
 	};
 
 	const char *help =
+		"Usage: intel_guc_logger [options]\n"
 		"  -v --verbosity=level   verbosity level of GuC logging (0-3)\n"
 		"  -o --outputfile=name   name of the output file, including the location, where logs will be stored\n"
 		"  -b --buffers=num       number of buffers to be maintained on logger side for storing logs\n"
@@ -394,8 +401,16 @@ static void process_command_line(int argc, char **argv)
 		"  -s --size=MB           max size of output file in MBs after which logging will be stopped\n"
 		"  -d --discard           discard the old/boot-time logs before entering into the capture loop\n";
 
-	igt_simple_init_parse_opts(&argc, argv, "v:o:b:t:p:s:d", long_options,
-				   help, parse_options, NULL);
+	int opt, opt_index = 0;
+
+	while ((opt = getopt_long(argc, argv, "v:o:b:t:p:s:dh",
+				  long_options, &opt_index)) != -1) {
+		if (opt == 'h') {
+			printf("%s", help);
+			exit(0);
+		}
+		parse_options(opt, opt_index, NULL);
+	}
 }
 
 int main(int argc, char **argv)
diff --git a/tools/meson.build b/tools/meson.build
index 15bd40dec..62e4cfb69 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -19,7 +19,6 @@ tools_progs = [
 	'intel_display_crc',
 	'intel_display_poller',
 	'intel_framebuffer_dump',
-	'intel_guc_logger',
 	'intel_hdcp',
 	'intel_infoframes',
 	'intel_opregion_decode',
@@ -112,6 +111,11 @@ executable('intel_forcewaked', 'intel_forcewaked.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_guc_logger', 'intel_guc_logger.c',
+	   dependencies : [lib_igt_reg_tools, libdrm, pthreads],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 20/25] tools: intel_infoframes: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (18 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 19/25] tools: intel_guc_logger: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 21/25] tools: intel_panel_fitter: " Sebastian Brzezinka
                   ` (7 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_infoframes only needs the register/MMIO helper subset, not the
full libigt.so stack.

Switch to linking against lib_igt_reg_tools.

ldd before: 35  (ldd | wc -l)
ldd after:   5   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index 62e4cfb69..8f0537f14 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -20,7 +20,6 @@ tools_progs = [
 	'intel_display_poller',
 	'intel_framebuffer_dump',
 	'intel_hdcp',
-	'intel_infoframes',
 	'intel_opregion_decode',
 	'intel_panel_fitter',
 	'intel_perf_counters',
@@ -116,6 +115,11 @@ executable('intel_guc_logger', 'intel_guc_logger.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_infoframes', 'intel_infoframes.c',
+	   dependencies : [lib_igt_reg_tools, pciaccess, libdrm],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 21/25] tools: intel_panel_fitter: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (19 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 20/25] tools: intel_infoframes: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 22/25] tools: intel_watermark: " Sebastian Brzezinka
                   ` (6 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_panel_fitter only needs the register/MMIO helper subset, not the
full libigt.so stack.

Switch to linking against lib_igt_reg_tools.

ldd before: 35  (ldd | wc -l)
ldd after:   5   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index 8f0537f14..19d0ef754 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -21,7 +21,6 @@ tools_progs = [
 	'intel_framebuffer_dump',
 	'intel_hdcp',
 	'intel_opregion_decode',
-	'intel_panel_fitter',
 	'intel_perf_counters',
 	'intel_pm_rpm',
 	'intel_reg_checker',
@@ -120,6 +119,11 @@ executable('intel_infoframes', 'intel_infoframes.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_panel_fitter', 'intel_panel_fitter.c',
+	   dependencies : [lib_igt_reg_tools, pciaccess, libdrm],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 22/25] tools: intel_watermark: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (20 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 21/25] tools: intel_panel_fitter: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 23/25] tools: intel_display_poller: " Sebastian Brzezinka
                   ` (5 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_watermark only needs the register/MMIO helper subset, not the
full libigt.so stack.

Switch to linking against lib_igt_reg_tools.

ldd before: 35  (ldd | wc -l)
ldd after:   5   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index 19d0ef754..71f241f8c 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -26,7 +26,6 @@ tools_progs = [
 	'intel_reg_checker',
 	'intel_residency',
 	'intel_tiling_detect',
-	'intel_watermark',
 	'intel_gem_info',
 	'intel_gvtg_test',
 	'dpcd_reg',
@@ -124,6 +123,11 @@ executable('intel_panel_fitter', 'intel_panel_fitter.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_watermark', 'intel_watermark.c',
+	   dependencies : [lib_igt_reg_tools, pciaccess, libdrm],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 23/25] tools: intel_display_poller: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (21 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 22/25] tools: intel_watermark: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 24/25] tools: intel_gvtg_test: " Sebastian Brzezinka
                   ` (4 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_display_poller only needs the register/MMIO helper subset, not the
full libigt.so stack.

Switch to linking against lib_igt_reg_tools.

ldd before: 35  (ldd | wc -l)
ldd after:   5   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tools/meson.build b/tools/meson.build
index 71f241f8c..82d569f46 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -17,7 +17,6 @@ tools_progs = [
 	'intel_bios_dumper',
 	'intel_display_bandwidth',
 	'intel_display_crc',
-	'intel_display_poller',
 	'intel_framebuffer_dump',
 	'intel_hdcp',
 	'intel_opregion_decode',
@@ -128,6 +127,11 @@ executable('intel_watermark', 'intel_watermark.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_display_poller', 'intel_display_poller.c',
+	   dependencies : [lib_igt_reg_tools, pciaccess, libdrm],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 24/25] tools: intel_gvtg_test: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (22 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 23/25] tools: intel_display_poller: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24  8:47 ` [PATCH i-g-t 25/25] tools: lsgpu: " Sebastian Brzezinka
                   ` (3 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

intel_gvtg_test only needs the core assert/log/skip helpers provided by
igt_core plus the lightweight tool stubs. Replace the monolithic include
with the minimal header set and stop linking against libigt.so.

ldd before: 35  (ldd | wc -l)
ldd after:   3   (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 tools/intel_gvtg_test.c | 2 +-
 tools/meson.build       | 6 +++++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/tools/intel_gvtg_test.c b/tools/intel_gvtg_test.c
index 408e703bf..fe8f7a599 100644
--- a/tools/intel_gvtg_test.c
+++ b/tools/intel_gvtg_test.c
@@ -30,7 +30,7 @@
  */
 #include "config.h"
 
-#include "igt.h"
+#include "igt_core.h"
 #include <errno.h>
 #include <getopt.h>
 #include <math.h>
diff --git a/tools/meson.build b/tools/meson.build
index 82d569f46..0ebc906ad 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -26,7 +26,6 @@ tools_progs = [
 	'intel_residency',
 	'intel_tiling_detect',
 	'intel_gem_info',
-	'intel_gvtg_test',
 	'dpcd_reg',
 	'lsgpu',
 ]
@@ -132,6 +131,11 @@ executable('intel_display_poller', 'intel_display_poller.c',
 	   install_rpath : bindir_rpathdir,
 	   install : true)
 
+executable('intel_gvtg_test', 'intel_gvtg_test.c',
+	   dependencies : [lib_igt_tools_stub, pciaccess, libdrm, math],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 if libudev.found()
 	intel_dp_compliance_src = [
 		'intel_dp_compliance.c',
-- 
2.53.0


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

* [PATCH i-g-t 25/25] tools: lsgpu: drop libigt.so, link against minimal sub-libraries
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (23 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 24/25] tools: intel_gvtg_test: " Sebastian Brzezinka
@ 2026-06-24  8:47 ` Sebastian Brzezinka
  2026-06-24 10:35 ` ✓ i915.CI.BAT: success for tools: remove unnecessary shared library Patchwork
                   ` (2 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: Sebastian Brzezinka @ 2026-06-24  8:47 UTC (permalink / raw)
  To: igt-dev
  Cc: Sebastian Brzezinka, kamil.konieczny, krzysztof.karas,
	krzysztof.niemiec

lsgpu only needs device enumeration and the lightweigth tool stubs.
Move igt_load_igtrc() from lib/igt_core.c to lib/igt_device_scan.c
where it fits, device scan is the primary user of the igtrc device
configuration. Replace #include "igt.h" with the minimal header set
and stop linking against libigt.so.

ldd before: 35  (ldd | wc -l)
ldd after:   8  (ldd | wc -l)

Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
---
 lib/igt_core.c        | 47 ------------------------------------------
 lib/igt_device_scan.c | 48 +++++++++++++++++++++++++++++++++++++++++++
 tools/lsgpu.c         |  2 +-
 tools/meson.build     |  7 ++++++-
 4 files changed, 55 insertions(+), 49 deletions(-)

diff --git a/lib/igt_core.c b/lib/igt_core.c
index 5198d4ec5..b6d2c160c 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -972,53 +972,6 @@ static void oom_adjust_for_doom(void)
 
 }
 
-/**
- * load_igtrc:
- *
- * Load .igtrc from the path pointed to by #IGT_CONFIG_PATH or from
- * home directory if that is not set. The returned keyfile needs to be
- * deallocated using g_key_file_free().
- *
- * Returns: Pointer to the keyfile, NULL on error.
- */
-GKeyFile *igt_load_igtrc(void)
-{
-	char *key_file_env = NULL;
-	char *key_file_loc = NULL;
-	GError *error = NULL;
-	GKeyFile *file;
-	int ret;
-
-	/* Determine igt config path */
-	key_file_env = getenv("IGT_CONFIG_PATH");
-	if (key_file_env) {
-		key_file_loc = key_file_env;
-	} else {
-		key_file_loc = malloc(100);
-		snprintf(key_file_loc, 100, "%s/.igtrc", g_get_home_dir());
-	}
-
-	/* Load igt config file */
-	file = g_key_file_new();
-	ret = g_key_file_load_from_file(file, key_file_loc,
-					G_KEY_FILE_NONE, &error);
-	if (!ret) {
-		g_error_free(error);
-		g_key_file_free(file);
-		file = NULL;
-
-		goto out;
-	}
-
-	g_clear_error(&error);
-
- out:
-	if (!key_file_env && key_file_loc)
-		free(key_file_loc);
-
-	return file;
-}
-
 static void common_init_config(void)
 {
 	GError *error = NULL;
diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
index 7c7995224..a15a4624e 100644
--- a/lib/igt_device_scan.c
+++ b/lib/igt_device_scan.c
@@ -33,6 +33,7 @@
 #include <ctype.h>
 #include <dirent.h>
 #include <fcntl.h>
+#include <glib.h>
 #include <libudev.h>
 #ifdef __linux__
 #include <linux/limits.h>
@@ -2477,3 +2478,50 @@ int igt_device_prepare_filtered_view(const char *vendor)
 
 	return gpu_count;
 }
+
+/**
+ * igt_load_igtrc:
+ *
+ * Load .igtrc from the path pointed to by #IGT_CONFIG_PATH or from
+ * home directory if that is not set. The returned keyfile needs to be
+ * deallocated using g_key_file_free().
+ *
+ * Returns: Pointer to the keyfile, NULL on error.
+ */
+GKeyFile *igt_load_igtrc(void)
+{
+	char *key_file_env = NULL;
+	char *key_file_loc = NULL;
+	GError *error = NULL;
+	GKeyFile *file;
+	int ret;
+
+	/* Determine igt config path */
+	key_file_env = getenv("IGT_CONFIG_PATH");
+	if (key_file_env) {
+		key_file_loc = key_file_env;
+	} else {
+		key_file_loc = malloc(100);
+		snprintf(key_file_loc, 100, "%s/.igtrc", g_get_home_dir());
+	}
+
+	/* Load igt config file */
+	file = g_key_file_new();
+	ret = g_key_file_load_from_file(file, key_file_loc,
+					G_KEY_FILE_NONE, &error);
+	if (!ret) {
+		g_error_free(error);
+		g_key_file_free(file);
+		file = NULL;
+
+		goto out;
+	}
+
+	g_clear_error(&error);
+
+ out:
+	if (!key_file_env && key_file_loc)
+		free(key_file_loc);
+
+	return file;
+}
diff --git a/tools/lsgpu.c b/tools/lsgpu.c
index 935371dea..7d6b70b9b 100644
--- a/tools/lsgpu.c
+++ b/tools/lsgpu.c
@@ -34,7 +34,7 @@
 #include <signal.h>
 #include <sys/ioctl.h>
 
-#include "igt.h"
+#include "igt_core.h"
 #include "igt_device_scan.h"
 
 /**
diff --git a/tools/meson.build b/tools/meson.build
index 0ebc906ad..70b168a82 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -27,7 +27,6 @@ tools_progs = [
 	'intel_tiling_detect',
 	'intel_gem_info',
 	'dpcd_reg',
-	'lsgpu',
 ]
 tool_deps = igt_deps
 tool_deps += zlib
@@ -172,6 +171,12 @@ install_data(['intel_gpu_abrt', 'intel-gfx-fw-info'], install_dir : bindir)
 
 install_subdir('registers', install_dir : datadir)
 
+executable('lsgpu', 'lsgpu.c',
+	   dependencies : [lib_igt_device_scan, lib_igt_tools_stub,
+	                    lib_igt_drm_stub, glib, libudev, libpci],
+	   install_rpath : bindir_rpathdir,
+	   install : true)
+
 executable('intel_gpu_top', 'intel_gpu_top.c',
 	   install : true,
 	   install_rpath : bindir_rpathdir,
-- 
2.53.0


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

* ✓ i915.CI.BAT: success for tools: remove unnecessary shared library
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (24 preceding siblings ...)
  2026-06-24  8:47 ` [PATCH i-g-t 25/25] tools: lsgpu: " Sebastian Brzezinka
@ 2026-06-24 10:35 ` Patchwork
  2026-06-24 10:39 ` ✓ Xe.CI.BAT: " Patchwork
  2026-06-24 12:10 ` ✗ Xe.CI.FULL: failure " Patchwork
  27 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-06-24 10:35 UTC (permalink / raw)
  To: Sebastian Brzezinka; +Cc: igt-dev

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

== Series Details ==

Series: tools: remove unnecessary shared library
URL   : https://patchwork.freedesktop.org/series/169086/
State : success

== Summary ==

CI Bug Log - changes from IGT_8982 -> IGTPW_15438
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_huc_copy@huc-copy:
    - fi-glk-j4005:       NOTRUN -> [SKIP][1] ([i915#2190])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15438/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html

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

  * igt@kms_pm_rpm@basic-rte:
    - bat-rpls-4:         [PASS][3] -> [DMESG-WARN][4] ([i915#13400])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8982/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15438/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html

  * igt@kms_psr@psr-primary-page-flip:
    - fi-glk-j4005:       NOTRUN -> [SKIP][5] +12 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15438/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html

  
  [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
  [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613


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

  * CI: CI-20190529 -> None
  * IGT: IGT_8982 -> IGTPW_15438
  * Linux: CI_DRM_18712 -> CI_DRM_18714

  CI-20190529: 20190529
  CI_DRM_18712: e7cd62086ec5a70cefb8b8b00964096692bfab36 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_18714: b2817f6a1517bc9ecdef5229b84e8a44d983de82 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_15438: d3aa1e1874101fcf8fafc97fe59758d5ee66eb60 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8982: 48befce9e6b0c0d371c4812bfff34a61319f68f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ Xe.CI.BAT: success for tools: remove unnecessary shared library
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (25 preceding siblings ...)
  2026-06-24 10:35 ` ✓ i915.CI.BAT: success for tools: remove unnecessary shared library Patchwork
@ 2026-06-24 10:39 ` Patchwork
  2026-06-24 12:10 ` ✗ Xe.CI.FULL: failure " Patchwork
  27 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-06-24 10:39 UTC (permalink / raw)
  To: Sebastian Brzezinka; +Cc: igt-dev

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

== Series Details ==

Series: tools: remove unnecessary shared library
URL   : https://patchwork.freedesktop.org/series/169086/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8982_BAT -> XEIGTPW_15438_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  Additional (1): bat-ptl-vm 
  Missing    (1): bat-lnl-1 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@xe_evict@evict-beng-small-cm:
    - bat-ptl-vm:         NOTRUN -> [SKIP][1] ([Intel XE#5764]) +10 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html

  * igt@xe_exec_balancer@no-exec-cm-virtual-basic:
    - bat-ptl-vm:         NOTRUN -> [SKIP][2] ([Intel XE#7482]) +17 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/bat-ptl-vm/igt@xe_exec_balancer@no-exec-cm-virtual-basic.html

  * igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd:
    - bat-ptl-vm:         NOTRUN -> [SKIP][3] ([Intel XE#8364]) +13 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/bat-ptl-vm/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd.html

  * igt@xe_live_ktest@xe_dma_buf:
    - bat-bmg-vm:         [PASS][4] -> [ABORT][5] ([Intel XE#8007] / [Intel XE#8023]) +1 other test abort
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/bat-bmg-vm/igt@xe_live_ktest@xe_dma_buf.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/bat-bmg-vm/igt@xe_live_ktest@xe_dma_buf.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - bat-ptl-vm:         NOTRUN -> [SKIP][6] ([Intel XE#5775])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_mmap@vram:
    - bat-ptl-vm:         NOTRUN -> [SKIP][7] ([Intel XE#5776])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/bat-ptl-vm/igt@xe_mmap@vram.html

  * igt@xe_pat@pat-index-xehpc:
    - bat-ptl-vm:         NOTRUN -> [SKIP][8] ([Intel XE#5777] / [Intel XE#7590])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelp:
    - bat-ptl-vm:         NOTRUN -> [SKIP][9] ([Intel XE#5771] / [Intel XE#7590])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html

  * igt@xe_pat@pat-index-xelpg:
    - bat-ptl-vm:         NOTRUN -> [SKIP][10] ([Intel XE#5780] / [Intel XE#7590])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html

  
  [Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
  [Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
  [Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
  [Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
  [Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
  [Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8023]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8023
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364


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

  * IGT: IGT_8982 -> IGTPW_15438
  * Linux: xe-5292-e7cd62086ec5a70cefb8b8b00964096692bfab36 -> xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82

  IGTPW_15438: d3aa1e1874101fcf8fafc97fe59758d5ee66eb60 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8982: 48befce9e6b0c0d371c4812bfff34a61319f68f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5292-e7cd62086ec5a70cefb8b8b00964096692bfab36: e7cd62086ec5a70cefb8b8b00964096692bfab36
  xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82: b2817f6a1517bc9ecdef5229b84e8a44d983de82

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for tools: remove unnecessary shared library
  2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
                   ` (26 preceding siblings ...)
  2026-06-24 10:39 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-06-24 12:10 ` Patchwork
  27 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2026-06-24 12:10 UTC (permalink / raw)
  To: Sebastian Brzezinka; +Cc: igt-dev

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

== Series Details ==

Series: tools: remove unnecessary shared library
URL   : https://patchwork.freedesktop.org/series/169086/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8982_FULL -> XEIGTPW_15438_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_15438_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_15438_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

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

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-bmg:          NOTRUN -> [SKIP][1] +597 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@wf_vblank-ts-check:
    - shard-bmg:          [PASS][2] -> [SKIP][3] +3745 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@kms_flip@wf_vblank-ts-check.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check.html

  * igt@xe_exec_compute_mode@once-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][4] +242 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@xe_exec_compute_mode@once-userptr-invalidate-race.html

  * igt@xe_exec_system_allocator@twice-new-prefetch:
    - shard-lnl:          [PASS][5] -> [SKIP][6] +3670 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@xe_exec_system_allocator@twice-new-prefetch.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@xe_exec_system_allocator@twice-new-prefetch.html

  
#### Warnings ####

  * igt@asahi/asahi_get_params@get-params:
    - shard-lnl:          [SKIP][7] ([Intel XE#8416]) -> [SKIP][8] +7 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@asahi/asahi_get_params@get-params.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@asahi/asahi_get_params@get-params.html

  * igt@asahi/asahi_get_time@get-time-flags-uint64-max:
    - shard-bmg:          [SKIP][9] ([Intel XE#8416]) -> [SKIP][10] +7 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@asahi/asahi_get_time@get-time-flags-uint64-max.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@asahi/asahi_get_time@get-time-flags-uint64-max.html

  * igt@intel_hwmon@hwmon-read:
    - shard-lnl:          [SKIP][11] ([Intel XE#1125] / [Intel XE#7312]) -> [SKIP][12]
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@intel_hwmon@hwmon-read.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@intel_hwmon@hwmon-read.html

  * igt@kms_3d@basic:
    - shard-lnl:          [SKIP][13] ([Intel XE#6011]) -> [SKIP][14]
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_3d@basic.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_3d@basic.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-lnl:          [SKIP][15] ([Intel XE#1466]) -> [SKIP][16]
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-lnl:          [SKIP][17] ([Intel XE#3157]) -> [SKIP][18]
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-lnl:          [SKIP][19] ([Intel XE#3279]) -> [SKIP][20] +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-bmg:          [SKIP][21] ([Intel XE#2370]) -> [SKIP][22] +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-90:
    - shard-bmg:          [SKIP][23] ([Intel XE#2327]) -> [SKIP][24] +20 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          [SKIP][25] ([Intel XE#3658] / [Intel XE#7360]) -> [SKIP][26] +3 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-lnl:          [SKIP][27] ([Intel XE#1407]) -> [SKIP][28] +26 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-lnl:          [SKIP][29] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][30] +3 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-bmg:          [SKIP][31] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][32] +3 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-0:
    - shard-lnl:          [SKIP][33] ([Intel XE#1124]) -> [SKIP][34] +60 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          [SKIP][35] ([Intel XE#2328] / [Intel XE#7367]) -> [SKIP][36] +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-lnl:          [SKIP][37] ([Intel XE#1477] / [Intel XE#7361]) -> [SKIP][38] +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-lnl:          [SKIP][39] ([Intel XE#1428] / [Intel XE#7387]) -> [SKIP][40]
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
    - shard-bmg:          [SKIP][41] ([Intel XE#610] / [Intel XE#7387]) -> [SKIP][42]
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-bmg:          [SKIP][43] ([Intel XE#1124]) -> [SKIP][44] +57 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-lnl:          [SKIP][45] ([Intel XE#1467] / [Intel XE#7367]) -> [SKIP][46] +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_big_fb@yf-tiled-addfb.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-bmg:          [SKIP][47] ([Intel XE#607] / [Intel XE#7361]) -> [SKIP][48] +1 other test skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p:
    - shard-lnl:          [SKIP][49] ([Intel XE#7679]) -> [SKIP][50] +6 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p:
    - shard-bmg:          [SKIP][51] ([Intel XE#7679]) -> [SKIP][52] +6 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p:
    - shard-lnl:          [SKIP][53] ([Intel XE#8365]) -> [SKIP][54] +7 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
    - shard-bmg:          [SKIP][55] ([Intel XE#367]) -> [SKIP][56] +15 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-target-2560x1440p:
    - shard-lnl:          [SKIP][57] ([Intel XE#367]) -> [SKIP][58] +7 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          [SKIP][59] ([Intel XE#2887]) -> [SKIP][60] +84 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [INCOMPLETE][61] ([Intel XE#7084] / [Intel XE#8150]) -> [SKIP][62]
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
    - shard-lnl:          [SKIP][63] ([Intel XE#2669] / [Intel XE#3433] / [Intel XE#7389]) -> [SKIP][64]
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
    - shard-bmg:          [SKIP][65] ([Intel XE#3432]) -> [SKIP][66] +10 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][67] ([Intel XE#2652]) -> [SKIP][68] +5 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-lnl:          [SKIP][69] ([Intel XE#3432]) -> [SKIP][70] +10 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
    - shard-lnl:          [SKIP][71] ([Intel XE#2669] / [Intel XE#7389]) -> [SKIP][72] +4 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-bmg:          [SKIP][73] ([Intel XE#2887]) -> [SKIP][74] +79 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          [SKIP][75] ([Intel XE#2724] / [Intel XE#7449]) -> [SKIP][76] +1 other test skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-9/igt@kms_cdclk@mode-transition-all-outputs.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@kms_cdclk@mode-transition-all-outputs.html
    - shard-lnl:          [SKIP][77] ([Intel XE#7008]) -> [SKIP][78]
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_cdclk@mode-transition-all-outputs.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_cdclk@plane-scaling:
    - shard-lnl:          [SKIP][79] ([Intel XE#4416] / [Intel XE#7381]) -> [SKIP][80]
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@kms_cdclk@plane-scaling.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_cdclk@plane-scaling.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-bmg:          [SKIP][81] ([Intel XE#2325] / [Intel XE#7358]) -> [SKIP][82] +9 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_chamelium_color@ctm-0-25.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-lnl:          [SKIP][83] ([Intel XE#306] / [Intel XE#7358]) -> [SKIP][84] +10 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_chamelium_color@ctm-blue-to-red.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d:
    - shard-lnl:          [SKIP][85] ([Intel XE#7358]) -> [SKIP][86] +7 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@kms_chamelium_color_pipeline@plane-lut1d.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_chamelium_color_pipeline@plane-lut1d.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d:
    - shard-bmg:          [SKIP][87] ([Intel XE#7358]) -> [SKIP][88] +6 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-bmg:          [SKIP][89] ([Intel XE#2252]) -> [SKIP][90] +43 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
    - shard-lnl:          [SKIP][91] ([Intel XE#373]) -> [SKIP][92] +44 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html

  * igt@kms_chamelium_sharpness_filter@filter-basic:
    - shard-bmg:          [SKIP][93] ([Intel XE#6507]) -> [SKIP][94]
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-1/igt@kms_chamelium_sharpness_filter@filter-basic.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@kms_chamelium_sharpness_filter@filter-basic.html
    - shard-lnl:          [SKIP][95] ([Intel XE#6507]) -> [SKIP][96]
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@kms_chamelium_sharpness_filter@filter-basic.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_chamelium_sharpness_filter@filter-basic.html

  * igt@kms_color_pipeline@plane-lut3d-green-only:
    - shard-lnl:          [SKIP][97] ([Intel XE#6969] / [Intel XE#7006]) -> [SKIP][98]
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_color_pipeline@plane-lut3d-green-only.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@kms_color_pipeline@plane-lut3d-green-only.html
    - shard-bmg:          [SKIP][99] ([Intel XE#6969] / [Intel XE#7006]) -> [SKIP][100]
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_color_pipeline@plane-lut3d-green-only.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@kms_color_pipeline@plane-lut3d-green-only.html

  * igt@kms_content_protection@atomic-dpms-hdcp14:
    - shard-bmg:          [FAIL][101] ([Intel XE#3304] / [Intel XE#7374]) -> [SKIP][102]
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@kms_content_protection@atomic-dpms-hdcp14.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          [SKIP][103] ([Intel XE#7642]) -> [SKIP][104] +2 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_content_protection@content-type-change.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-bmg:          [SKIP][105] ([Intel XE#2390] / [Intel XE#6974]) -> [SKIP][106] +3 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-1.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@dp-mst-type-0-hdcp14:
    - shard-bmg:          [SKIP][107] ([Intel XE#6974]) -> [SKIP][108] +3 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-9/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@kms_content_protection@dp-mst-type-0-hdcp14.html

  * igt@kms_content_protection@dp-mst-type-0-suspend-resume:
    - shard-lnl:          [SKIP][109] ([Intel XE#6974]) -> [SKIP][110] +3 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-lnl:          [SKIP][111] ([Intel XE#307] / [Intel XE#6974]) -> [SKIP][112] +3 other tests skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_content_protection@dp-mst-type-1.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][113] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][114] +7 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@kms_content_protection@legacy.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@mei-interface:
    - shard-lnl:          [SKIP][115] ([Intel XE#1468] / [Intel XE#7396]) -> [SKIP][116]
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@kms_content_protection@mei-interface.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@kms_content_protection@mei-interface.html

  * igt@kms_content_protection@suspend-resume:
    - shard-lnl:          [SKIP][117] ([Intel XE#7642]) -> [SKIP][118] +13 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@kms_content_protection@suspend-resume.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_content_protection@suspend-resume.html

  * igt@kms_content_protection@uevent-hdcp14:
    - shard-bmg:          [FAIL][119] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][120] +1 other test skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@kms_content_protection@uevent-hdcp14.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_content_protection@uevent-hdcp14.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-bmg:          [SKIP][121] ([Intel XE#2320]) -> [SKIP][122] +26 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-lnl:          [SKIP][123] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][124] +8 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
    - shard-bmg:          [SKIP][125] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][126] +8 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-64x21:
    - shard-lnl:          [SKIP][127] ([Intel XE#1424]) -> [SKIP][128] +27 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-64x21.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-64x21.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-lnl:          [SKIP][129] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][130] +24 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
    - shard-lnl:          [SKIP][131] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) -> [SKIP][132]
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-lnl:          [SKIP][133] ([Intel XE#323] / [Intel XE#6035]) -> [SKIP][134] +2 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
    - shard-bmg:          [SKIP][135] ([Intel XE#2286] / [Intel XE#6035]) -> [SKIP][136] +1 other test skip
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-lnl:          [SKIP][137] ([Intel XE#1508]) -> [SKIP][138]
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
    - shard-bmg:          [SKIP][139] ([Intel XE#1508]) -> [SKIP][140]
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][141] ([Intel XE#4210] / [Intel XE#7467]) -> [SKIP][142]
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-lnl:          [SKIP][143] ([Intel XE#4302]) -> [SKIP][144]
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_display_modes@extended-mode-basic.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-lnl:          [SKIP][145] ([Intel XE#4354] / [Intel XE#5882]) -> [SKIP][146]
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_dp_link_training@non-uhbr-mst.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-bmg:          [SKIP][147] ([Intel XE#4354] / [Intel XE#5882]) -> [SKIP][148]
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-mst.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-10/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-lnl:          [SKIP][149] ([Intel XE#4354] / [Intel XE#7450]) -> [SKIP][150]
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@kms_dp_link_training@non-uhbr-sst.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-lnl:          [SKIP][151] ([Intel XE#4354] / [Intel XE#7386]) -> [SKIP][152]
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_dp_link_training@uhbr-mst.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_dp_link_training@uhbr-mst.html
    - shard-bmg:          [SKIP][153] ([Intel XE#4354] / [Intel XE#7386]) -> [SKIP][154]
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@kms_dp_link_training@uhbr-mst.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-lnl:          [SKIP][155] ([Intel XE#4354] / [Intel XE#5870]) -> [SKIP][156]
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_dp_link_training@uhbr-sst.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_dp_link_training@uhbr-sst.html
    - shard-bmg:          [SKIP][157] ([Intel XE#4354] / [Intel XE#5870]) -> [SKIP][158]
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@kms_dp_link_training@uhbr-sst.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-10/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-lnl:          [SKIP][159] ([Intel XE#4294] / [Intel XE#7477]) -> [SKIP][160]
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-lnl:          [SKIP][161] ([Intel XE#4331] / [Intel XE#7227]) -> [SKIP][162]
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
    - shard-bmg:          [SKIP][163] ([Intel XE#4331] / [Intel XE#7227]) -> [SKIP][164]
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-basic-bigjoiner:
    - shard-bmg:          [SKIP][165] ([Intel XE#8265]) -> [SKIP][166] +21 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-8/igt@kms_dsc@dsc-basic-bigjoiner.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@kms_dsc@dsc-basic-bigjoiner.html

  * igt@kms_dsc@dsc-with-output-formats-bigjoiner:
    - shard-lnl:          [SKIP][167] ([Intel XE#8265]) -> [SKIP][168] +23 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-bmg:          [SKIP][169] ([Intel XE#4422] / [Intel XE#7442]) -> [SKIP][170] +2 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
    - shard-lnl:          [SKIP][171] ([Intel XE#4422] / [Intel XE#7442]) -> [SKIP][172] +2 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html

  * igt@kms_fbcon_fbt@fbc:
    - shard-bmg:          [SKIP][173] ([Intel XE#4156] / [Intel XE#7425]) -> [SKIP][174]
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@kms_fbcon_fbt@fbc.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-6/igt@kms_fbcon_fbt@fbc.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-lnl:          [INCOMPLETE][175] ([Intel XE#8430]) -> [SKIP][176]
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@kms_fbcon_fbt@fbc-suspend.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-bmg:          [SKIP][177] ([Intel XE#6126] / [Intel XE#776]) -> [SKIP][178] +1 other test skip
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@chamelium:
    - shard-bmg:          [SKIP][179] ([Intel XE#2372] / [Intel XE#7359]) -> [SKIP][180]
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@kms_feature_discovery@chamelium.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_feature_discovery@chamelium.html
    - shard-lnl:          [SKIP][181] ([Intel XE#701] / [Intel XE#7359]) -> [SKIP][182]
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_feature_discovery@chamelium.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_feature_discovery@chamelium.html

  * igt@kms_feature_discovery@display-2x:
    - shard-lnl:          [SKIP][183] ([Intel XE#702] / [Intel XE#7344]) -> [SKIP][184]
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@kms_feature_discovery@display-2x.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_feature_discovery@display-2x.html

  * igt@kms_feature_discovery@display-3x:
    - shard-lnl:          [SKIP][185] ([Intel XE#703] / [Intel XE#7448]) -> [SKIP][186]
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@kms_feature_discovery@display-3x.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_feature_discovery@display-3x.html
    - shard-bmg:          [SKIP][187] ([Intel XE#2373] / [Intel XE#7448]) -> [SKIP][188]
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_feature_discovery@display-3x.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@kms_feature_discovery@display-3x.html

  * igt@kms_feature_discovery@display-4x:
    - shard-lnl:          [SKIP][189] ([Intel XE#1138] / [Intel XE#7344]) -> [SKIP][190]
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@kms_feature_discovery@display-4x.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@kms_feature_discovery@display-4x.html
    - shard-bmg:          [SKIP][191] ([Intel XE#1138] / [Intel XE#7344]) -> [SKIP][192]
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@kms_feature_discovery@display-4x.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-lnl:          [SKIP][193] ([Intel XE#1137] / [Intel XE#2375]) -> [SKIP][194]
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@kms_feature_discovery@dp-mst.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_feature_discovery@dp-mst.html
    - shard-bmg:          [SKIP][195] ([Intel XE#2375]) -> [SKIP][196]
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_feature_discovery@dp-mst.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr1:
    - shard-bmg:          [SKIP][197] ([Intel XE#2374] / [Intel XE#6127]) -> [SKIP][198]
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-9/igt@kms_feature_discovery@psr1.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@kms_feature_discovery@psr1.html

  * igt@kms_feature_discovery@psr2:
    - shard-bmg:          [SKIP][199] ([Intel XE#2374] / [Intel XE#6128]) -> [SKIP][200]
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@kms_feature_discovery@psr2.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip@2x-flip-vs-rmfb-interruptible:
    - shard-lnl:          [SKIP][201] ([Intel XE#1421]) -> [SKIP][202] +41 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-bmg:          [FAIL][203] ([Intel XE#3098]) -> [SKIP][204]
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [FAIL][205] ([Intel XE#301] / [Intel XE#3149]) -> [SKIP][206]
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-lnl:          [SKIP][207] ([Intel XE#7178] / [Intel XE#7349]) -> [SKIP][208] +3 other tests skip
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
    - shard-lnl:          [SKIP][209] ([Intel XE#7179]) -> [SKIP][210] +3 other tests skip
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          [SKIP][211] ([Intel XE#7178] / [Intel XE#7349]) -> [SKIP][212] +3 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
    - shard-lnl:          [SKIP][213] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385]) -> [SKIP][214] +8 other tests skip
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-lnl:          [SKIP][215] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][216] +23 other tests skip
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
    - shard-bmg:          [SKIP][217] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][218] +22 other tests skip
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
    - shard-bmg:          [SKIP][219] ([Intel XE#7179]) -> [SKIP][220] +3 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-8/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-lnl:          [SKIP][221] ([Intel XE#352]) -> [SKIP][222] +2 other tests skip
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_force_connector_basic@prune-stale-modes.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-lnl:          [SKIP][223] ([Intel XE#7905]) -> [SKIP][224] +279 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render:
    - shard-lnl:          [SKIP][225] ([Intel XE#7061]) -> [SKIP][226] +34 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-lnl:          [ABORT][227] ([Intel XE#8007]) -> [SKIP][228]
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][229] ([Intel XE#4141]) -> [SKIP][230] +78 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt:
    - shard-lnl:          [SKIP][231] ([Intel XE#6312]) -> [SKIP][232] +94 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-bmg:          [SKIP][233] ([Intel XE#2311]) -> [SKIP][234] +326 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt:
    - shard-lnl:          [SKIP][235] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][236] +29 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
    - shard-bmg:          [SKIP][237] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][238] +28 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
    - shard-lnl:          [SKIP][239] ([Intel XE#6312] / [Intel XE#651]) -> [SKIP][240] +71 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
    - shard-lnl:          [SKIP][241] ([Intel XE#1469] / [Intel XE#7399]) -> [SKIP][242] +2 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
    - shard-bmg:          [SKIP][243] ([Intel XE#2352] / [Intel XE#7399]) -> [SKIP][244] +2 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y:
    - shard-lnl:          [SKIP][245] ([Intel XE#7399]) -> [SKIP][246] +2 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y:
    - shard-bmg:          [SKIP][247] ([Intel XE#7399]) -> [SKIP][248] +2 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html

  * igt@kms_frontbuffer_tracking@plane-fbc-rte:
    - shard-bmg:          [SKIP][249] ([Intel XE#2350] / [Intel XE#7503]) -> [SKIP][250]
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@kms_frontbuffer_tracking@plane-fbc-rte.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][251] ([Intel XE#2313]) -> [SKIP][252] +329 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
    - shard-lnl:          [SKIP][253] ([Intel XE#656] / [Intel XE#7905]) -> [SKIP][254] +230 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt:
    - shard-lnl:          [SKIP][255] ([Intel XE#7865]) -> [SKIP][256] +167 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt:
    - shard-bmg:          [SKIP][257] ([Intel XE#7061]) -> [SKIP][258] +34 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html

  * igt@kms_hdmi_inject@inject-4k:
    - shard-lnl:          [SKIP][259] ([Intel XE#1470]) -> [SKIP][260]
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_hdmi_inject@inject-4k.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_hdmi_inject@inject-4k.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-lnl:          [SKIP][261] ([Intel XE#1470] / [Intel XE#2853]) -> [SKIP][262]
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@kms_hdmi_inject@inject-audio.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_hdmi_inject@inject-audio.html
    - shard-bmg:          [SKIP][263] ([Intel XE#7308]) -> [SKIP][264]
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-7/igt@kms_hdmi_inject@inject-audio.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-5/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-lnl:          [SKIP][265] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][266]
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@kms_hdr@brightness-with-hdr.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@kms_hdr@brightness-with-hdr.html
    - shard-bmg:          [SKIP][267] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][268]
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-lnl:          [SKIP][269] ([Intel XE#1503]) -> [SKIP][270] +4 other tests skip
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_hdr@invalid-metadata-sizes.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-lnl:          [SKIP][271] ([Intel XE#6901]) -> [SKIP][272] +1 other test skip
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@kms_joiner@basic-big-joiner.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@kms_joiner@basic-big-joiner.html
    - shard-bmg:          [SKIP][273] ([Intel XE#6901]) -> [SKIP][274] +1 other test skip
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_joiner@basic-big-joiner.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-lnl:          [SKIP][275] ([Intel XE#7086] / [Intel XE#7390]) -> [SKIP][276] +1 other test skip
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@kms_joiner@basic-force-big-joiner.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-lnl:          [SKIP][277] ([Intel XE#4298] / [Intel XE#5873]) -> [SKIP][278]
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@kms_joiner@basic-max-non-joiner.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_joiner@basic-max-non-joiner.html
    - shard-bmg:          [SKIP][279] ([Intel XE#4298] / [Intel XE#5873]) -> [SKIP][280]
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-8/igt@kms_joiner@basic-max-non-joiner.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-lnl:          [SKIP][281] ([Intel XE#6900] / [Intel XE#7362]) -> [SKIP][282] +3 other tests skip
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@kms_joiner@basic-ultra-joiner.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@kms_joiner@basic-ultra-joiner.html
    - shard-bmg:          [SKIP][283] ([Intel XE#6911] / [Intel XE#7378]) -> [SKIP][284] +1 other test skip
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@kms_joiner@basic-ultra-joiner.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          [SKIP][285] ([Intel XE#6911] / [Intel XE#7466]) -> [SKIP][286] +1 other test skip
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-bmg:          [SKIP][287] ([Intel XE#4090] / [Intel XE#7443]) -> [SKIP][288]
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
    - shard-lnl:          [SKIP][289] ([Intel XE#7173] / [Intel XE#7294]) -> [SKIP][290]
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_mst@mst-suspend-read-crc:
    - shard-lnl:          [SKIP][291] ([Intel XE#8348]) -> [SKIP][292]
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@kms_mst@mst-suspend-read-crc.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@kms_mst@mst-suspend-read-crc.html
    - shard-bmg:          [SKIP][293] ([Intel XE#8348]) -> [SKIP][294]
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-5/igt@kms_mst@mst-suspend-read-crc.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-6/igt@kms_mst@mst-suspend-read-crc.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          [SKIP][295] ([Intel XE#7591]) -> [SKIP][296]
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
    - shard-lnl:          [SKIP][297] ([Intel XE#7591]) -> [SKIP][298]
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          [SKIP][299] ([Intel XE#2486]) -> [SKIP][300] +1 other test skip
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@kms_panel_fitting@legacy.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-lnl:          [SKIP][301] ([Intel XE#6912] / [Intel XE#7375]) -> [SKIP][302]
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          [SKIP][303] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) -> [SKIP][304]
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
    - shard-lnl:          [SKIP][305] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) -> [SKIP][306]
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
    - shard-lnl:          [SKIP][307] ([Intel XE#7283]) -> [SKIP][308] +24 other tests skip
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
    - shard-bmg:          [SKIP][309] ([Intel XE#7283]) -> [SKIP][310] +22 other tests skip
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html

  * igt@kms_plane_lowres@tiling-x:
    - shard-lnl:          [SKIP][311] ([Intel XE#599] / [Intel XE#7382]) -> [SKIP][312] +2 other tests skip
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_plane_lowres@tiling-x.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-5/igt@kms_plane_lowres@tiling-x.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-lnl:          [SKIP][313] ([Intel XE#599]) -> [SKIP][314] +1 other test skip
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@kms_plane_lowres@tiling-y.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@kms_plane_lowres@tiling-y.html
    - shard-bmg:          [SKIP][315] ([Intel XE#2393]) -> [SKIP][316] +1 other test skip
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@kms_plane_lowres@tiling-y.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-lnl:          [SKIP][317] ([Intel XE#4596] / [Intel XE#5854]) -> [SKIP][318] +4 other tests skip
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_plane_multiple@2x-tiling-none.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          [SKIP][319] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][320] +1 other test skip
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-lnl:          [SKIP][321] ([Intel XE#5020] / [Intel XE#7348]) -> [SKIP][322] +1 other test skip
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@kms_plane_multiple@tiling-yf.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@kms_plane_multiple@tiling-yf.html
    - shard-bmg:          [SKIP][323] ([Intel XE#5020] / [Intel XE#7348]) -> [SKIP][324] +1 other test skip
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@intel-max-src-size:
    - shard-bmg:          [SKIP][325] ([Intel XE#2685] / [Intel XE#3307]) -> [SKIP][326]
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-8/igt@kms_plane_scaling@intel-max-src-size.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@kms_plane_scaling@intel-max-src-size.html
    - shard-lnl:          [SKIP][327] ([Intel XE#3307]) -> [SKIP][328]
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_plane_scaling@intel-max-src-size.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@kms_plane_scaling@intel-max-src-size.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
    - shard-bmg:          [SKIP][329] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][330] +3 other tests skip
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
    - shard-lnl:          [SKIP][331] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][332] +10 other tests skip
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-bmg:          [SKIP][333] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) -> [SKIP][334] +3 other tests skip
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-1/igt@kms_pm_backlight@bad-brightness.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          [SKIP][335] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760]) -> [SKIP][336]
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_pm_backlight@brightness-with-dpms.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-10/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc3co-vpb-framegap:
    - shard-lnl:          [SKIP][337] ([Intel XE#8395]) -> [SKIP][338] +3 other tests skip
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@kms_pm_dc@dc3co-vpb-framegap.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_pm_dc@dc3co-vpb-framegap.html
    - shard-bmg:          [SKIP][339] ([Intel XE#8395]) -> [SKIP][340] +2 other tests skip
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@kms_pm_dc@dc3co-vpb-framegap.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@kms_pm_dc@dc3co-vpb-framegap.html

  * igt@kms_pm_dc@dc5-dpms-negative:
    - shard-lnl:          [SKIP][341] ([Intel XE#1131]) -> [SKIP][342]
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_pm_dc@dc5-dpms-negative.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_pm_dc@dc5-dpms-negative.html

  * igt@kms_pm_dc@dc5-pageflip-negative:
    - shard-bmg:          [SKIP][343] ([Intel XE#6927]) -> [SKIP][344]
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-8/igt@kms_pm_dc@dc5-pageflip-negative.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@kms_pm_dc@dc5-pageflip-negative.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-lnl:          [SKIP][345] ([Intel XE#3309] / [Intel XE#7368]) -> [SKIP][346]
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_pm_dc@dc5-retention-flops.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_pm_dc@dc5-retention-flops.html
    - shard-bmg:          [SKIP][347] ([Intel XE#3309] / [Intel XE#7368]) -> [SKIP][348]
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-9/igt@kms_pm_dc@dc5-retention-flops.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-bmg:          [SKIP][349] ([Intel XE#7794]) -> [SKIP][350] +1 other test skip
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@kms_pm_dc@dc6-psr.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-lnl:          [FAIL][351] ([Intel XE#2029] / [Intel XE#7395]) -> [SKIP][352]
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@kms_pm_dc@deep-pkgc.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html
    - shard-bmg:          [SKIP][353] ([Intel XE#2505] / [Intel XE#7447]) -> [SKIP][354]
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-1/igt@kms_pm_dc@deep-pkgc.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          [SKIP][355] ([Intel XE#2499]) -> [SKIP][356]
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@dpms-lpsp:
    - shard-bmg:          [SKIP][357] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) -> [SKIP][358] +3 other tests skip
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_pm_rpm@dpms-lpsp.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          [SKIP][359] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) -> [SKIP][360]
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-lnl:          [SKIP][361] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) -> [SKIP][362]
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-lnl:          [SKIP][363] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) -> [SKIP][364] +2 other tests skip
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@package-g7:
    - shard-lnl:          [SKIP][365] ([Intel XE#6813]) -> [SKIP][366]
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@kms_pm_rpm@package-g7.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@kms_pm_rpm@package-g7.html
    - shard-bmg:          [SKIP][367] ([Intel XE#6814] / [Intel XE#7428]) -> [SKIP][368]
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_pm_rpm@package-g7.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_pm_rpm@package-g7.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
    - shard-lnl:          [SKIP][369] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) -> [SKIP][370] +10 other tests skip
   [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
   [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
    - shard-lnl:          [SKIP][371] ([Intel XE#2893] / [Intel XE#7304]) -> [SKIP][372] +22 other tests skip
   [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
   [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
    - shard-bmg:          [SKIP][373] ([Intel XE#1489]) -> [SKIP][374] +43 other tests skip
   [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
   [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-lnl:          [SKIP][375] ([Intel XE#1128] / [Intel XE#7413]) -> [SKIP][376] +3 other tests skip
   [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
   [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          [SKIP][377] ([Intel XE#2387] / [Intel XE#7429]) -> [SKIP][378] +3 other tests skip
   [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@kms_psr2_su@page_flip-xrgb8888.html
   [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr2-sprite-render:
    - shard-lnl:          [SKIP][379] ([Intel XE#1406] / [Intel XE#7345]) -> [SKIP][380] +11 other tests skip
   [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@kms_psr@fbc-psr2-sprite-render.html
   [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-render.html

  * igt@kms_psr@pr-sprite-render:
    - shard-lnl:          [SKIP][381] ([Intel XE#1406]) -> [SKIP][382] +25 other tests skip
   [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_psr@pr-sprite-render.html
   [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_psr@pr-sprite-render.html

  * igt@kms_psr@psr2-no-drrs:
    - shard-bmg:          [SKIP][383] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][384] +71 other tests skip
   [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-5/igt@kms_psr@psr2-no-drrs.html
   [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_psr@psr2-no-drrs.html

  * igt@kms_psr@psr2-primary-render:
    - shard-bmg:          [SKIP][385] ([Intel XE#2234]) -> [SKIP][386]
   [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@kms_psr@psr2-primary-render.html
   [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_psr@psr2-primary-render.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-bmg:          [SKIP][387] ([Intel XE#7795]) -> [SKIP][388] +1 other test skip
   [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-lnl:          [SKIP][389] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][390] +12 other tests skip
   [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-90.html
   [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          [SKIP][391] ([Intel XE#2330] / [Intel XE#5813]) -> [SKIP][392] +2 other tests skip
   [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
   [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-lnl:          [SKIP][393] ([Intel XE#1127] / [Intel XE#5813]) -> [SKIP][394] +2 other tests skip
   [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
   [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-bmg:          [SKIP][395] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][396] +10 other tests skip
   [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90.html
   [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-bmg:          [SKIP][397] ([Intel XE#2413]) -> [SKIP][398] +2 other tests skip
   [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-center.html
   [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          [SKIP][399] ([Intel XE#1435]) -> [SKIP][400] +1 other test skip
   [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-8/igt@kms_setmode@basic-clone-single-crtc.html
   [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-lnl:          [SKIP][401] ([Intel XE#1435]) -> [SKIP][402] +4 other tests skip
   [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@kms_setmode@invalid-clone-single-crtc.html
   [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
    - shard-bmg:          [SKIP][403] ([Intel XE#6503]) -> [SKIP][404] +11 other tests skip
   [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-8/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
   [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-lnl:          [SKIP][405] ([Intel XE#362] / [Intel XE#5848]) -> [SKIP][406] +1 other test skip
   [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
    - shard-bmg:          [SKIP][407] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][408]
   [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-lnl:          [SKIP][409] ([Intel XE#330] / [Intel XE#5857]) -> [SKIP][410]
   [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@kms_tv_load_detect@load-detect.html
   [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@kms_tv_load_detect@load-detect.html
    - shard-bmg:          [SKIP][411] ([Intel XE#2450] / [Intel XE#5857]) -> [SKIP][412]
   [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@kms_tv_load_detect@load-detect.html
   [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          [SKIP][413] ([Intel XE#1499]) -> [SKIP][414] +8 other tests skip
   [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@kms_vrr@flip-suspend.html
   [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-6/igt@kms_vrr@flip-suspend.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          [SKIP][415] ([Intel XE#2168] / [Intel XE#7444]) -> [SKIP][416]
   [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@kms_vrr@lobf.html
   [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@kms_vrr@lobf.html

  * igt@kms_vrr@negative-basic:
    - shard-lnl:          [SKIP][417] ([Intel XE#1499]) -> [SKIP][418] +3 other tests skip
   [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@kms_vrr@negative-basic.html
   [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@kms_vrr@negative-basic.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-lnl:          [SKIP][419] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][420] +1 other test skip
   [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
   [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_ccs@vm-bind-fault-mode-decompress:
    - shard-lnl:          [SKIP][421] ([Intel XE#7644]) -> [SKIP][422] +1 other test skip
   [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@xe_ccs@vm-bind-fault-mode-decompress.html
   [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@xe_ccs@vm-bind-fault-mode-decompress.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-bmg:          [SKIP][423] ([Intel XE#6599]) -> [SKIP][424] +2 other tests skip
   [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@xe_compute@ccs-mode-basic.html
   [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html
    - shard-lnl:          [SKIP][425] ([Intel XE#1447] / [Intel XE#7471]) -> [SKIP][426]
   [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@xe_compute@ccs-mode-basic.html
   [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_compute@ccs-mode-compute-kernel:
    - shard-lnl:          [SKIP][427] ([Intel XE#1447] / [Intel XE#7469]) -> [SKIP][428]
   [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@xe_compute@ccs-mode-compute-kernel.html
   [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@xe_compute@ccs-mode-compute-kernel.html

  * igt@xe_compute@eu-busy-10s:
    - shard-lnl:          [SKIP][429] ([Intel XE#6592] / [Intel XE#6645] / [Intel XE#7391]) -> [SKIP][430]
   [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@xe_compute@eu-busy-10s.html
   [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@xe_compute@eu-busy-10s.html

  * igt@xe_compute_preempt@compute-preempt-many-vram-evict:
    - shard-lnl:          [SKIP][431] ([Intel XE#5191] / [Intel XE#7316] / [Intel XE#7346]) -> [SKIP][432] +1 other test skip
   [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html
   [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html

  * igt@xe_create@create-big-vram:
    - shard-lnl:          [SKIP][433] ([Intel XE#1062] / [Intel XE#7318] / [Intel XE#7457]) -> [SKIP][434]
   [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@xe_create@create-big-vram.html
   [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@xe_create@create-big-vram.html

  * igt@xe_create@multigpu-create-massive-size:
    - shard-lnl:          [SKIP][435] ([Intel XE#7319] / [Intel XE#7350] / [Intel XE#944]) -> [SKIP][436]
   [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@xe_create@multigpu-create-massive-size.html
   [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@xe_create@multigpu-create-massive-size.html
    - shard-bmg:          [SKIP][437] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350]) -> [SKIP][438]
   [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-7/igt@xe_create@multigpu-create-massive-size.html
   [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_eudebug@basic-vm-access-faultable:
    - shard-lnl:          [SKIP][439] ([Intel XE#7636]) -> [SKIP][440] +80 other tests skip
   [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@xe_eudebug@basic-vm-access-faultable.html
   [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@xe_eudebug@basic-vm-access-faultable.html

  * igt@xe_eudebug_online@set-breakpoint-faultable:
    - shard-bmg:          [SKIP][441] ([Intel XE#7636]) -> [SKIP][442] +75 other tests skip
   [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@xe_eudebug_online@set-breakpoint-faultable.html
   [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@xe_eudebug_online@set-breakpoint-faultable.html

  * igt@xe_eudebug_sriov@deny-sriov:
    - shard-lnl:          [SKIP][443] ([Intel XE#4518] / [Intel XE#7404]) -> [SKIP][444] +1 other test skip
   [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@xe_eudebug_sriov@deny-sriov.html
   [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@xe_eudebug_sriov@deny-sriov.html
    - shard-bmg:          [SKIP][445] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464]) -> [SKIP][446] +1 other test skip
   [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@xe_eudebug_sriov@deny-sriov.html
   [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-6/igt@xe_eudebug_sriov@deny-sriov.html

  * igt@xe_evict@evict-beng-large-external-cm:
    - shard-lnl:          [SKIP][447] ([Intel XE#6540] / [Intel XE#688]) -> [SKIP][448] +65 other tests skip
   [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@xe_evict@evict-beng-large-external-cm.html
   [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@xe_evict@evict-beng-large-external-cm.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][449] ([Intel XE#6321] / [Intel XE#8355]) -> [SKIP][450] +1 other test skip
   [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
   [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_evict@evict-threads-small-multi-queue:
    - shard-bmg:          [SKIP][451] ([Intel XE#8370]) -> [SKIP][452] +7 other tests skip
   [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@xe_evict@evict-threads-small-multi-queue.html
   [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@xe_evict@evict-threads-small-multi-queue.html

  * igt@xe_exec_balancer@many-parallel-userptr-invalidate-race:
    - shard-lnl:          [SKIP][453] ([Intel XE#7482]) -> [SKIP][454] +116 other tests skip
   [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@xe_exec_balancer@many-parallel-userptr-invalidate-race.html
   [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@xe_exec_balancer@many-parallel-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-bmg:          [SKIP][455] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][456] +49 other tests skip
   [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
   [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_basic@multigpu-no-exec-userptr:
    - shard-lnl:          [SKIP][457] ([Intel XE#1392]) -> [SKIP][458] +52 other tests skip
   [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr.html
   [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-userptr.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr:
    - shard-bmg:          [SKIP][459] ([Intel XE#8374]) -> [SKIP][460] +69 other tests skip
   [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-5/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html
   [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm:
    - shard-lnl:          [SKIP][461] ([Intel XE#8374]) -> [SKIP][462] +74 other tests skip
   [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html
   [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html

  * igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr:
    - shard-lnl:          [SKIP][463] ([Intel XE#8364]) -> [SKIP][464] +176 other tests skip
   [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr.html
   [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr.html

  * igt@xe_exec_multi_queue@two-queues-priority:
    - shard-bmg:          [SKIP][465] ([Intel XE#8364]) -> [SKIP][466] +166 other tests skip
   [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@xe_exec_multi_queue@two-queues-priority.html
   [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@xe_exec_multi_queue@two-queues-priority.html

  * igt@xe_exec_reset@cm-multi-queue-cat-error:
    - shard-bmg:          [SKIP][467] ([Intel XE#8369]) -> [SKIP][468] +11 other tests skip
   [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@xe_exec_reset@cm-multi-queue-cat-error.html
   [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-6/igt@xe_exec_reset@cm-multi-queue-cat-error.html

  * igt@xe_exec_reset@multi-queue-gt-reset:
    - shard-lnl:          [SKIP][469] ([Intel XE#8369]) -> [SKIP][470] +12 other tests skip
   [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@xe_exec_reset@multi-queue-gt-reset.html
   [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@xe_exec_reset@multi-queue-gt-reset.html

  * igt@xe_exec_system_allocator@many-stride-new-prefetch:
    - shard-bmg:          [INCOMPLETE][471] ([Intel XE#7098] / [Intel XE#8159]) -> [SKIP][472]
   [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
   [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-new-prefetch.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma:
    - shard-lnl:          [SKIP][473] ([Intel XE#6196]) -> [SKIP][474] +3 other tests skip
   [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma.html
   [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma.html

  * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind:
    - shard-lnl:          [SKIP][475] ([Intel XE#8378]) -> [SKIP][476] +55 other tests skip
   [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind.html
   [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
    - shard-bmg:          [SKIP][477] ([Intel XE#8378]) -> [SKIP][478] +52 other tests skip
   [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
   [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html

  * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
    - shard-bmg:          [SKIP][479] ([Intel XE#6281] / [Intel XE#7426]) -> [SKIP][480]
   [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
   [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html

  * igt@xe_gpgpu_fill@offset-4x4:
    - shard-lnl:          [SKIP][481] ([Intel XE#7954]) -> [SKIP][482]
   [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@xe_gpgpu_fill@offset-4x4.html
   [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@xe_gpgpu_fill@offset-4x4.html
    - shard-bmg:          [SKIP][483] ([Intel XE#7954]) -> [SKIP][484]
   [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@xe_gpgpu_fill@offset-4x4.html
   [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@xe_gpgpu_fill@offset-4x4.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-lnl:          [SKIP][485] ([Intel XE#2833]) -> [SKIP][486]
   [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@xe_live_ktest@xe_eudebug.html
   [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@xe_live_ktest@xe_eudebug.html
    - shard-bmg:          [SKIP][487] ([Intel XE#2833]) -> [SKIP][488]
   [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html
   [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_madvise@atomic-global:
    - shard-lnl:          [SKIP][489] ([Intel XE#7980]) -> [SKIP][490] +2 other tests skip
   [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@xe_madvise@atomic-global.html
   [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@xe_madvise@atomic-global.html

  * igt@xe_media_fill@media-fill:
    - shard-lnl:          [SKIP][491] ([Intel XE#560] / [Intel XE#7321] / [Intel XE#7453]) -> [SKIP][492]
   [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@xe_media_fill@media-fill.html
   [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@xe_media_fill@media-fill.html
    - shard-bmg:          [SKIP][493] ([Intel XE#2459] / [Intel XE#2596] / [Intel XE#7321] / [Intel XE#7453]) -> [SKIP][494]
   [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@xe_media_fill@media-fill.html
   [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@xe_media_fill@media-fill.html

  * igt@xe_mmap@pci-membarrier:
    - shard-lnl:          [SKIP][495] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408]) -> [SKIP][496] +3 other tests skip
   [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@xe_mmap@pci-membarrier.html
   [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@xe_mmap@pci-membarrier.html

  * igt@xe_mmap@small-bar:
    - shard-lnl:          [SKIP][497] ([Intel XE#512] / [Intel XE#7323] / [Intel XE#7384]) -> [SKIP][498]
   [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@xe_mmap@small-bar.html
   [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@xe_mmap@small-bar.html
    - shard-bmg:          [SKIP][499] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384]) -> [SKIP][500]
   [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@xe_mmap@small-bar.html
   [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-10/igt@xe_mmap@small-bar.html

  * igt@xe_mmap@vram:
    - shard-lnl:          [SKIP][501] ([Intel XE#1416]) -> [SKIP][502]
   [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@xe_mmap@vram.html
   [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@xe_mmap@vram.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][503], [PASS][504], [PASS][505], [PASS][506], [PASS][507], [PASS][508], [PASS][509], [PASS][510], [PASS][511], [PASS][512], [PASS][513], [PASS][514], [PASS][515], [PASS][516], [PASS][517], [PASS][518], [PASS][519], [PASS][520], [PASS][521], [PASS][522], [SKIP][523], [PASS][524], [PASS][525], [PASS][526], [PASS][527], [PASS][528]) ([Intel XE#378] / [Intel XE#7405]) -> ([PASS][529], [PASS][530], [PASS][531], [PASS][532], [PASS][533], [PASS][534], [PASS][535], [PASS][536], [SKIP][537], [PASS][538], [PASS][539], [PASS][540], [PASS][541], [PASS][542], [PASS][543], [PASS][544], [PASS][545], [PASS][546], [PASS][547], [PASS][548], [PASS][549], [PASS][550], [PASS][551], [PASS][552], [PASS][553], [PASS][554])
   [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@xe_module_load@load.html
   [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@xe_module_load@load.html
   [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@xe_module_load@load.html
   [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@xe_module_load@load.html
   [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@xe_module_load@load.html
   [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@xe_module_load@load.html
   [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@xe_module_load@load.html
   [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@xe_module_load@load.html
   [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@xe_module_load@load.html
   [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@xe_module_load@load.html
   [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@xe_module_load@load.html
   [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@xe_module_load@load.html
   [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@xe_module_load@load.html
   [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@xe_module_load@load.html
   [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@xe_module_load@load.html
   [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@xe_module_load@load.html
   [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@xe_module_load@load.html
   [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@xe_module_load@load.html
   [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@xe_module_load@load.html
   [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@xe_module_load@load.html
   [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@xe_module_load@load.html
   [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@xe_module_load@load.html
   [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@xe_module_load@load.html
   [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@xe_module_load@load.html
   [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@xe_module_load@load.html
   [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@xe_module_load@load.html
   [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@xe_module_load@load.html
   [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@xe_module_load@load.html
   [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@xe_module_load@load.html
   [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@xe_module_load@load.html
   [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@xe_module_load@load.html
   [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@xe_module_load@load.html
   [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@xe_module_load@load.html
   [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@xe_module_load@load.html
   [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@xe_module_load@load.html
   [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@xe_module_load@load.html
   [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@xe_module_load@load.html
   [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@xe_module_load@load.html
   [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@xe_module_load@load.html
   [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@xe_module_load@load.html
   [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@xe_module_load@load.html
   [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@xe_module_load@load.html
   [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@xe_module_load@load.html
   [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@xe_module_load@load.html
   [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@xe_module_load@load.html
   [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@xe_module_load@load.html
   [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@xe_module_load@load.html
   [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@xe_module_load@load.html
   [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-5/igt@xe_module_load@load.html
   [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-5/igt@xe_module_load@load.html
   [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-5/igt@xe_module_load@load.html
   [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@xe_module_load@load.html
    - shard-bmg:          ([PASS][555], [PASS][556], [PASS][557], [PASS][558], [PASS][559], [PASS][560], [PASS][561], [PASS][562], [PASS][563], [PASS][564], [PASS][565], [PASS][566], [PASS][567], [PASS][568], [PASS][569], [PASS][570], [PASS][571], [PASS][572], [PASS][573], [PASS][574], [PASS][575], [PASS][576], [PASS][577], [PASS][578], [PASS][579], [SKIP][580]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][581], [PASS][582], [PASS][583], [PASS][584], [SKIP][585], [PASS][586], [PASS][587], [PASS][588], [PASS][589], [PASS][590], [PASS][591], [PASS][592], [PASS][593], [PASS][594], [PASS][595], [PASS][596], [PASS][597], [PASS][598], [PASS][599], [PASS][600], [PASS][601], [PASS][602], [PASS][603], [PASS][604], [PASS][605], [PASS][606])
   [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-7/igt@xe_module_load@load.html
   [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-9/igt@xe_module_load@load.html
   [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-5/igt@xe_module_load@load.html
   [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-5/igt@xe_module_load@load.html
   [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@xe_module_load@load.html
   [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@xe_module_load@load.html
   [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-9/igt@xe_module_load@load.html
   [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@xe_module_load@load.html
   [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-9/igt@xe_module_load@load.html
   [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@xe_module_load@load.html
   [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@xe_module_load@load.html
   [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@xe_module_load@load.html
   [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@xe_module_load@load.html
   [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@xe_module_load@load.html
   [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-1/igt@xe_module_load@load.html
   [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-1/igt@xe_module_load@load.html
   [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-8/igt@xe_module_load@load.html
   [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-8/igt@xe_module_load@load.html
   [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@xe_module_load@load.html
   [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@xe_module_load@load.html
   [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@xe_module_load@load.html
   [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@xe_module_load@load.html
   [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-7/igt@xe_module_load@load.html
   [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@xe_module_load@load.html
   [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@xe_module_load@load.html
   [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@xe_module_load@load.html
   [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-5/igt@xe_module_load@load.html
   [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@xe_module_load@load.html
   [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@xe_module_load@load.html
   [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@xe_module_load@load.html
   [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@xe_module_load@load.html
   [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@xe_module_load@load.html
   [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@xe_module_load@load.html
   [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@xe_module_load@load.html
   [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-10/igt@xe_module_load@load.html
   [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-10/igt@xe_module_load@load.html
   [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@xe_module_load@load.html
   [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@xe_module_load@load.html
   [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@xe_module_load@load.html
   [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@xe_module_load@load.html
   [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@xe_module_load@load.html
   [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@xe_module_load@load.html
   [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@xe_module_load@load.html
   [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@xe_module_load@load.html
   [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@xe_module_load@load.html
   [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@xe_module_load@load.html
   [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@xe_module_load@load.html
   [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-6/igt@xe_module_load@load.html
   [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@xe_module_load@load.html
   [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@xe_module_load@load.html
   [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-3/igt@xe_module_load@load.html
   [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-5/igt@xe_module_load@load.html

  * igt@xe_multigpu_svm@mgpu-atomic-op-conflict:
    - shard-lnl:          [SKIP][607] ([Intel XE#6964]) -> [SKIP][608] +19 other tests skip
   [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html
   [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html

  * igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
    - shard-bmg:          [SKIP][609] ([Intel XE#6964]) -> [SKIP][610] +18 other tests skip
   [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
   [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html

  * igt@xe_noexec_ping_pong@basic:
    - shard-lnl:          [SKIP][611] ([Intel XE#6259] / [Intel XE#7324] / [Intel XE#7406]) -> [SKIP][612]
   [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@xe_noexec_ping_pong@basic.html
   [612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@xe_noexec_ping_pong@basic.html

  * igt@xe_oa@oa-tlb-invalidate:
    - shard-lnl:          [SKIP][613] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393]) -> [SKIP][614]
   [613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@xe_oa@oa-tlb-invalidate.html
   [614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-5/igt@xe_oa@oa-tlb-invalidate.html
    - shard-bmg:          [SKIP][615] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393]) -> [SKIP][616]
   [615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@xe_oa@oa-tlb-invalidate.html
   [616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@xe_oa@oa-tlb-invalidate.html

  * igt@xe_page_reclaim@basic-mixed:
    - shard-bmg:          [SKIP][617] ([Intel XE#7793]) -> [SKIP][618] +11 other tests skip
   [617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@xe_page_reclaim@basic-mixed.html
   [618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-6/igt@xe_page_reclaim@basic-mixed.html

  * igt@xe_page_reclaim@binds-null-vma:
    - shard-lnl:          [SKIP][619] ([Intel XE#7793]) -> [SKIP][620] +11 other tests skip
   [619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-6/igt@xe_page_reclaim@binds-null-vma.html
   [620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@xe_page_reclaim@binds-null-vma.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-lnl:          [SKIP][621] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590]) -> [SKIP][622]
   [621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@xe_pat@pat-index-xehpc.html
   [622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@xe_pat@pat-index-xehpc.html
    - shard-bmg:          [SKIP][623] ([Intel XE#1420] / [Intel XE#7590]) -> [SKIP][624]
   [623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-7/igt@xe_pat@pat-index-xehpc.html
   [624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-bmg:          [SKIP][625] ([Intel XE#2236] / [Intel XE#7590]) -> [SKIP][626]
   [625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-3/igt@xe_pat@pat-index-xelpg.html
   [626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@xe_pat@pat-index-xelpg.html
    - shard-lnl:          [SKIP][627] ([Intel XE#7590] / [Intel XE#979]) -> [SKIP][628]
   [627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@xe_pat@pat-index-xelpg.html
   [628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pat@pat-sw-hw-reset-compare:
    - shard-lnl:          [FAIL][629] ([Intel XE#7695]) -> [SKIP][630] +2 other tests skip
   [629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@xe_pat@pat-sw-hw-reset-compare.html
   [630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@xe_pat@pat-sw-hw-reset-compare.html
    - shard-bmg:          [FAIL][631] ([Intel XE#7695]) -> [SKIP][632] +2 other tests skip
   [631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@xe_pat@pat-sw-hw-reset-compare.html
   [632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-10/igt@xe_pat@pat-sw-hw-reset-compare.html

  * igt@xe_pat@xa-app-transient-media-off:
    - shard-lnl:          [SKIP][633] ([Intel XE#7590] / [Intel XE#7772]) -> [SKIP][634] +2 other tests skip
   [633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@xe_pat@xa-app-transient-media-off.html
   [634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-4/igt@xe_pat@xa-app-transient-media-off.html
    - shard-bmg:          [SKIP][635] ([Intel XE#7590]) -> [SKIP][636] +1 other test skip
   [635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-7/igt@xe_pat@xa-app-transient-media-off.html
   [636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@xe_pat@xa-app-transient-media-off.html

  * igt@xe_peer2peer@read:
    - shard-lnl:          [SKIP][637] ([Intel XE#1061] / [Intel XE#7326] / [Intel XE#7353]) -> [SKIP][638]
   [637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@xe_peer2peer@read.html
   [638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@xe_peer2peer@read.html
    - shard-bmg:          [SKIP][639] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) -> [SKIP][640]
   [639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@xe_peer2peer@read.html
   [640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@xe_peer2peer@read.html

  * igt@xe_pm@d3cold-basic:
    - shard-lnl:          [SKIP][641] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) -> [SKIP][642] +7 other tests skip
   [641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@xe_pm@d3cold-basic.html
   [642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@xe_pm@d3cold-basic.html

  * igt@xe_pm@d3cold-i2c:
    - shard-lnl:          [SKIP][643] ([Intel XE#5694] / [Intel XE#7370]) -> [SKIP][644]
   [643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-3/igt@xe_pm@d3cold-i2c.html
   [644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@xe_pm@d3cold-i2c.html
    - shard-bmg:          [SKIP][645] ([Intel XE#5694] / [Intel XE#7370]) -> [SKIP][646]
   [645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@xe_pm@d3cold-i2c.html
   [646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@xe_pm@d3cold-i2c.html

  * igt@xe_pm@d3cold-mocs:
    - shard-lnl:          [SKIP][647] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][648]
   [647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@xe_pm@d3cold-mocs.html
   [648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@xe_pm@d3cold-mocs.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-bmg:          [SKIP][649] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][650] +8 other tests skip
   [649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-9/igt@xe_pm@d3cold-multiple-execs.html
   [650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pm@d3hot-i2c:
    - shard-lnl:          [SKIP][651] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400]) -> [SKIP][652]
   [651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@xe_pm@d3hot-i2c.html
   [652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@xe_pm@d3hot-i2c.html
    - shard-bmg:          [SKIP][653] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400]) -> [SKIP][654]
   [653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-4/igt@xe_pm@d3hot-i2c.html
   [654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-8/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pm@d3hot-mmap-vram:
    - shard-lnl:          [SKIP][655] ([Intel XE#1948]) -> [SKIP][656]
   [655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@xe_pm@d3hot-mmap-vram.html
   [656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@xe_pm@d3hot-mmap-vram.html

  * igt@xe_pm@s3-mocs:
    - shard-lnl:          [SKIP][657] ([Intel XE#584] / [Intel XE#7369]) -> [SKIP][658] +9 other tests skip
   [657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@xe_pm@s3-mocs.html
   [658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@xe_pm@s3-mocs.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-lnl:          [SKIP][659] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7456]) -> [SKIP][660]
   [659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@xe_pm@vram-d3cold-threshold.html
   [660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@xe_pm@vram-d3cold-threshold.html
    - shard-bmg:          [SKIP][661] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517]) -> [SKIP][662]
   [661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@xe_pm@vram-d3cold-threshold.html
   [662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle:
    - shard-lnl:          [SKIP][663] ([Intel XE#4650] / [Intel XE#7347]) -> [SKIP][664] +2 other tests skip
   [663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
   [664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-5/igt@xe_pmu@fn-engine-activity-sched-if-idle.html

  * igt@xe_prefetch_fault@prefetch-fault:
    - shard-lnl:          [SKIP][665] ([Intel XE#7599]) -> [SKIP][666] +1 other test skip
   [665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@xe_prefetch_fault@prefetch-fault.html
   [666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@xe_prefetch_fault@prefetch-fault.html

  * igt@xe_prefetch_fault@prefetch-fault-svm:
    - shard-bmg:          [SKIP][667] ([Intel XE#7599]) -> [SKIP][668] +1 other test skip
   [667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-6/igt@xe_prefetch_fault@prefetch-fault-svm.html
   [668]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-9/igt@xe_prefetch_fault@prefetch-fault-svm.html

  * igt@xe_pxp@pxp-termination-key-update-post-suspend:
    - shard-bmg:          [SKIP][669] ([Intel XE#4733] / [Intel XE#7417]) -> [SKIP][670] +13 other tests skip
   [669]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-8/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
   [670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-suspend.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-bmg:          [SKIP][671] ([Intel XE#944]) -> [SKIP][672] +15 other tests skip
   [671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_query@multigpu-query-pxp-status:
    - shard-lnl:          [SKIP][673] ([Intel XE#944]) -> [SKIP][674] +16 other tests skip
   [673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@xe_query@multigpu-query-pxp-status.html
   [674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@xe_query@multigpu-query-pxp-status.html

  * igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled:
    - shard-lnl:          [SKIP][675] ([Intel XE#7174]) -> [SKIP][676] +7 other tests skip
   [675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled.html
   [676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-2/igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled.html

  * igt@xe_sriov_auto_provisioning@fair-allocation:
    - shard-lnl:          [SKIP][677] ([Intel XE#4130] / [Intel XE#7366]) -> [SKIP][678] +5 other tests skip
   [677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@xe_sriov_auto_provisioning@fair-allocation.html
   [678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@xe_sriov_auto_provisioning@fair-allocation.html

  * igt@xe_sriov_flr@flr-basic:
    - shard-lnl:          [SKIP][679] ([Intel XE#7569]) -> [SKIP][680]
   [679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-8/igt@xe_sriov_flr@flr-basic.html
   [680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-7/igt@xe_sriov_flr@flr-basic.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-lnl:          [SKIP][681] ([Intel XE#3342]) -> [SKIP][682] +1 other test skip
   [681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-5/igt@xe_sriov_flr@flr-vf1-clear.html
   [682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@xe_sriov_flr@flr-vf1-clear.html
    - shard-bmg:          [FAIL][683] ([Intel XE#6569]) -> [SKIP][684]
   [683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html
   [684]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-lnl:          [SKIP][685] ([Intel XE#4273]) -> [SKIP][686] +1 other test skip
   [685]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-1/igt@xe_sriov_flr@flr-vfs-parallel.html
   [686]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@xe_sriov_flr@flr-vfs-parallel.html

  * igt@xe_sriov_scheduling@equal-throughput-normal-priority:
    - shard-lnl:          [SKIP][687] ([Intel XE#8339]) -> [SKIP][688] +4 other tests skip
   [687]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@xe_sriov_scheduling@equal-throughput-normal-priority.html
   [688]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@xe_sriov_scheduling@equal-throughput-normal-priority.html

  * igt@xe_sriov_vfio@region-info:
    - shard-lnl:          [SKIP][689] ([Intel XE#7724]) -> [SKIP][690] +2 other tests skip
   [689]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@xe_sriov_vfio@region-info.html
   [690]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@xe_sriov_vfio@region-info.html
    - shard-bmg:          [FAIL][691] ([Intel XE#7992]) -> [SKIP][692] +1 other test skip
   [691]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-2/igt@xe_sriov_vfio@region-info.html
   [692]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-6/igt@xe_sriov_vfio@region-info.html

  * igt@xe_sriov_vram@vf-access-beyond:
    - shard-lnl:          [SKIP][693] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422]) -> [SKIP][694] +3 other tests skip
   [693]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@xe_sriov_vram@vf-access-beyond.html
   [694]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-3/igt@xe_sriov_vram@vf-access-beyond.html

  * igt@xe_survivability@i2c-functionality:
    - shard-lnl:          [SKIP][695] ([Intel XE#8415]) -> [SKIP][696] +2 other tests skip
   [695]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-4/igt@xe_survivability@i2c-functionality.html
   [696]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@xe_survivability@i2c-functionality.html

  * igt@xe_vm@out-of-memory:
    - shard-lnl:          [SKIP][697] ([Intel XE#5745] / [Intel XE#7892]) -> [SKIP][698]
   [697]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@xe_vm@out-of-memory.html
   [698]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@xe_vm@out-of-memory.html

  * igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer:
    - shard-lnl:          [SKIP][699] ([Intel XE#7892]) -> [SKIP][700] +4 other tests skip
   [699]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer.html
   [700]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-6/igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer.html

  * igt@xe_wedged@wedged-mode-toggle:
    - shard-bmg:          [ABORT][701] ([Intel XE#8007]) -> [SKIP][702]
   [701]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-9/igt@xe_wedged@wedged-mode-toggle.html
   [702]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-4/igt@xe_wedged@wedged-mode-toggle.html

  
#### Suppressed ####

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

  * {igt@xe_exec_system_allocator@madvise-preffered-loc-atomic-device}:
    - shard-lnl:          [PASS][703] -> [SKIP][704]
   [703]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-7/igt@xe_exec_system_allocator@madvise-preffered-loc-atomic-device.html
   [704]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-1/igt@xe_exec_system_allocator@madvise-preffered-loc-atomic-device.html
    - shard-bmg:          [PASS][705] -> [SKIP][706]
   [705]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-bmg-10/igt@xe_exec_system_allocator@madvise-preffered-loc-atomic-device.html
   [706]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-bmg-6/igt@xe_exec_system_allocator@madvise-preffered-loc-atomic-device.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_cursor_legacy@cursor-vs-flip-toggle:
    - shard-lnl:          [PASS][707] -> [SKIP][708] ([Intel XE#7935])
   [707]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8982/shard-lnl-2/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
   [708]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15438/shard-lnl-8/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html

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

  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
  [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
  [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
  [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
  [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
  [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
  [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
  [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
  [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
  [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [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#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
  [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
  [Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
  [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
  [Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870
  [Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
  [Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#6011]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6011
  [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
  [Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
  [Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
  [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
  [Intel XE#6259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6259
  [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#6592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6592
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6645]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6645
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813
  [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
  [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#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
  [Intel XE#7008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7008
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [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#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
  [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
  [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
  [Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173
  [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
  [Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294
  [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
  [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
  [Intel XE#7312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7312
  [Intel XE#7316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7316
  [Intel XE#7318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7318
  [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
  [Intel XE#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320
  [Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321
  [Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322
  [Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
  [Intel XE#7324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7324
  [Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
  [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
  [Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
  [Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
  [Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [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#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
  [Intel XE#7346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7346
  [Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347
  [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#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
  [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#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [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#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
  [Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
  [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
  [Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
  [Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
  [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
  [Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368
  [Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
  [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#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [Intel XE#7381]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7381
  [Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
  [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
  [Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
  [Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
  [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
  [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
  [Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
  [Intel XE#7390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7390
  [Intel XE#7391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7391
  [Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
  [Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
  [Intel XE#7396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7396
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
  [Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
  [Intel XE#7404]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7404
  [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
  [Intel XE#7406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7406
  [Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408
  [Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422
  [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
  [Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426
  [Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
  [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
  [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
  [Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
  [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
  [Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
  [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
  [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
  [Intel XE#7450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7450
  [Intel XE#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453
  [Intel XE#7456]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7456
  [Intel XE#7457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7457
  [Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464
  [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
  [Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
  [Intel XE#7469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7469
  [Intel XE#7471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7471
  [Intel XE#7477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7477
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
  [Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
  [Intel XE#7569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7569
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
  [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7644]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7644
  [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#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
  [Intel XE#7772]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7772
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
  [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
  [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
  [Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892
  [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
  [Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
  [Intel XE#7954]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7954
  [Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980
  [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#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
  [Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339
  [Intel XE#8348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8348
  [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
  [Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365
  [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
  [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
  [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
  [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
  [Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
  [Intel XE#8415]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8415
  [Intel XE#8416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8416
  [Intel XE#8430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8430
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979


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

  * IGT: IGT_8982 -> IGTPW_15438
  * Linux: xe-5292-e7cd62086ec5a70cefb8b8b00964096692bfab36 -> xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82

  IGTPW_15438: d3aa1e1874101fcf8fafc97fe59758d5ee66eb60 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8982: 48befce9e6b0c0d371c4812bfff34a61319f68f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5292-e7cd62086ec5a70cefb8b8b00964096692bfab36: e7cd62086ec5a70cefb8b8b00964096692bfab36
  xe-5294-b2817f6a1517bc9ecdef5229b84e8a44d983de82: b2817f6a1517bc9ecdef5229b84e8a44d983de82

== Logs ==

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

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

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

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

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-24  8:47 [PATCH i-g-t 00/25] tools: remove unnecessary shared library Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 01/25] tools: igt_stats: drop libigt.so, link against minimal sub-libraries Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 02/25] tools: intel_firmware_decode: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 03/25] lib: extend igt_tools_stub with additional stubs needed by tools Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 04/25] lib: introduce lib_igt_drm_stub for tools needing driver detection Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 05/25] lib: introduce lib_igt_halffloat static sub-library for tools Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 06/25] lib: introduce lib_i915_decode " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 07/25] lib: introduce lib_igt_reg_tools " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 08/25] tools: intel_gpu_frequency: drop libigt.so, link against minimal sub-libraries Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 09/25] lib/i915: intel_decode: replace igt.h with minimal headers Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 10/25] tools: intel_stepping: drop libigt.so, link against minimal sub-libraries Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 11/25] tools: intel_gtt: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 12/25] tools: intel_error_decode: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 13/25] tools: intel_vbt_decode: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 14/25] tools: intel_backlight: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 15/25] tools: intel_lid: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 16/25] tools: intel_gpu_time: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 17/25] tools: intel_audio_dump: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 18/25] tools: intel_forcewaked: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 19/25] tools: intel_guc_logger: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 20/25] tools: intel_infoframes: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 21/25] tools: intel_panel_fitter: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 22/25] tools: intel_watermark: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 23/25] tools: intel_display_poller: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 24/25] tools: intel_gvtg_test: " Sebastian Brzezinka
2026-06-24  8:47 ` [PATCH i-g-t 25/25] tools: lsgpu: " Sebastian Brzezinka
2026-06-24 10:35 ` ✓ i915.CI.BAT: success for tools: remove unnecessary shared library Patchwork
2026-06-24 10:39 ` ✓ Xe.CI.BAT: " Patchwork
2026-06-24 12:10 ` ✗ Xe.CI.FULL: failure " Patchwork

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