* [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug
@ 2026-05-18 15:48 Nitin Gote
2026-05-19 1:39 ` ✓ Xe.CI.BAT: success for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3) Patchwork
` (5 more replies)
0 siblings, 6 replies; 13+ messages in thread
From: Nitin Gote @ 2026-05-18 15:48 UTC (permalink / raw)
To: igt-dev, janusz.krzysztofik; +Cc: kamil.konieczny, matthew.auld, nitin.r.gote
The six fd-holding hot* subtests keep a DRM fd open across unbind/unplug
but leave the GPU idle, so the kernel hotplug path is never exercised
against an active workload.
Add six new dedicated *-with-load subtests that run a GPU spinner across
the unbind/unplug sequence so the device is removed while a workload is
actively using it.
The workload helpers use an explicit chipset dispatch block in
workload_start()/stop() so that other vendors can contribute
support by adding an else-if branch. New subtests are gated on
workload_available(), which currently covers DRIVER_XE and DRIVER_INTEL,
and returns false (SKIP) on any other driver.
igt_spin_free() is avoided in workload_stop() since the device may be
gone by then -- igt_spin_end() writes the stop condition via a userspace
mmap and lets the DRM fd close reclaim kernel-side resources.
Validated on BMG and DG2 with a KASAN-enabled kernel:
all six new subtests pass with no KASAN reports.
v3: Extend struct gpu_workload with a union of vendor-named members
to match the chipset dispatch in workload_start()/stop(). (Janusz)
v2: Pass the hotunplug priv struct to workload_start()/stop()
and dispatch via an explicit if/else-if chipset block to invite
other vendors to contribute. (Janusz)
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
---
Hi Janusz,
Extended the struct gpu_workload with a union of vendor-named members
to make a room for other vendors data.
Thanks,
Nitin
tests/core_hotunplug.c | 294 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 294 insertions(+)
diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
index 7c9dae1bf..2c54af628 100644
--- a/tests/core_hotunplug.c
+++ b/tests/core_hotunplug.c
@@ -80,6 +80,34 @@
* SUBTEST: unplug-rescan
* Description: Check if a device believed to be closed can be cleanly
* unplugged, then restored
+ *
+ * SUBTEST: hotunbind-rebind-with-load
+ * Description: Check if the driver can be cleanly unbound from an open device
+ * with a background GPU workload in flight, then released and
+ * rebound
+ *
+ * SUBTEST: hotunplug-rescan-with-load
+ * Description: Check if an open device with a background GPU workload in
+ * flight can be cleanly unplugged, then released and restored
+ *
+ * SUBTEST: hotrebind-with-load
+ * Description: Check if the driver can be cleanly rebound to a device with a
+ * still open hot unbound driver instance while a background GPU
+ * workload is in flight
+ *
+ * SUBTEST: hotreplug-with-load
+ * Description: Check if a hot unplugged and still open device can be cleanly
+ * restored while a background GPU workload is in flight
+ *
+ * SUBTEST: hotrebind-lateclose-with-load
+ * Description: Check if a hot unbound driver instance still open after hot
+ * rebind with a background GPU workload in flight can be cleanly
+ * released
+ *
+ * SUBTEST: hotreplug-lateclose-with-load
+ * Description: Check if an instance of a still open while hot replugged
+ * device with a background GPU workload in flight can be cleanly
+ * released
*/
IGT_TEST_DESCRIPTION("Examine behavior of a driver on device hot unplug");
@@ -565,6 +593,56 @@ static void set_filter_from_device(int fd)
igt_assert_eq(igt_device_filter_add(filter), 1);
}
+/* GPU workload helpers */
+
+struct gpu_workload {
+ union {
+ struct {
+ igt_spin_t *spin;
+ uint64_t ahnd;
+ } intel; /* Xe and i915 */
+ };
+};
+
+static bool workload_available(int chipset)
+{
+ return chipset == DRIVER_XE || chipset == DRIVER_INTEL;
+}
+
+static void workload_start(struct hotunplug *priv, int fd,
+ struct gpu_workload *w)
+{
+ if (priv->chipset == DRIVER_XE || priv->chipset == DRIVER_INTEL) {
+ local_debug("%s\n", "starting GPU spinner");
+ priv->failure = "GPU workload start failure!";
+ w->intel.ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
+ w->intel.spin = igt_spin_new(fd, .ahnd = w->intel.ahnd);
+ priv->failure = NULL;
+ }
+}
+
+static void workload_stop(struct hotunplug *priv, struct gpu_workload *w)
+{
+ if (priv->chipset == DRIVER_XE || priv->chipset == DRIVER_INTEL) {
+ if (!w->intel.spin)
+ return;
+
+ /*
+ * The device may be gone (unbind/unplug), so avoid
+ * igt_spin_free(): on Xe it would wait forever on a syncobj
+ * that never signals; on i915 it would touch the dead fd via
+ * gem_munmap()/gem_close(). Instead, end the spinner via a
+ * userspace mmap write and let the DRM fd close reclaim the
+ * kernel-side resources.
+ */
+ local_debug("%s\n", "stopping GPU spinner");
+ igt_spin_end(w->intel.spin);
+ put_ahnd(w->intel.ahnd);
+ w->intel.spin = NULL;
+ w->intel.ahnd = 0;
+ }
+}
+
/* Subtests */
static void unbind_rebind(struct hotunplug *priv)
@@ -679,6 +757,150 @@ static void hotreplug_lateclose(struct hotunplug *priv)
igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
}
+static void hotunbind_rebind_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot unbind");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ driver_unbind(priv, "hot ", 0);
+
+ workload_stop(priv, &w);
+
+ priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
+ igt_assert_eq(priv->fd.drm, -1);
+
+ driver_bind(priv, 0);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotunplug_rescan_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot unplug");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ device_unplug(priv, "hot ", 0);
+
+ workload_stop(priv, &w);
+
+ priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
+ igt_assert_eq(priv->fd.drm, -1);
+
+ bus_rescan(priv, 0);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotrebind_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ driver_unbind(priv, "hot ", 60);
+
+ driver_bind(priv, 0);
+
+ workload_stop(priv, &w);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotreplug_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ device_unplug(priv, "hot ", 60);
+
+ bus_rescan(priv, 0);
+
+ workload_stop(priv, &w);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotrebind_lateclose_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ driver_unbind(priv, "hot ", 60);
+
+ driver_bind(priv, 0);
+
+ workload_stop(priv, &w);
+
+ priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
+ igt_assert_eq(priv->fd.drm, -1);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotreplug_lateclose_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ device_unplug(priv, "hot ", 60);
+
+ bus_rescan(priv, 0);
+
+ workload_stop(priv, &w);
+
+ priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
+ igt_assert_eq(priv->fd.drm, -1);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
/* Main */
int igt_main()
@@ -817,6 +1039,78 @@ int igt_main()
recover(&priv);
}
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if the driver can be cleanly unbound from an open device with a background GPU workload in flight, then released and rebound");
+ igt_subtest("hotunbind-rebind-with-load")
+ hotunbind_rebind_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if an open device with a background GPU workload in flight can be cleanly unplugged, then released and restored");
+ igt_subtest("hotunplug-rescan-with-load")
+ hotunplug_rescan_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if the driver can be cleanly rebound to a device with a still open hot unbound driver instance while a background GPU workload is in flight");
+ igt_subtest("hotrebind-with-load")
+ hotrebind_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if a hot unplugged and still open device can be cleanly restored while a background GPU workload is in flight");
+ igt_subtest("hotreplug-with-load")
+ hotreplug_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if a hot unbound driver instance still open after hot rebind with a background GPU workload in flight can be cleanly released");
+ igt_subtest("hotrebind-lateclose-with-load")
+ hotrebind_lateclose_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if an instance of a still open while hot replugged device with a background GPU workload in flight can be cleanly released");
+ igt_subtest("hotreplug-lateclose-with-load")
+ hotreplug_lateclose_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
igt_fixture() {
post_healthcheck(&priv);
--
2.50.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* ✓ Xe.CI.BAT: success for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3)
2026-05-18 15:48 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
@ 2026-05-19 1:39 ` Patchwork
2026-05-19 1:48 ` ✓ i915.CI.BAT: " Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-05-19 1:39 UTC (permalink / raw)
To: Nitin Gote; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1117 bytes --]
== Series Details ==
Series: tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3)
URL : https://patchwork.freedesktop.org/series/166744/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8918_BAT -> XEIGTPW_15199_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8918 -> IGTPW_15199
* Linux: xe-5086-7161a1ce9e045da82f90b1b4c184ab84b7f54900 -> xe-5088-ac60a9dd73e01e3f22825241c2f0498968cb2356
IGTPW_15199: dafa11285833f8ef069ee001df251685804c67e9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8918: 8918
xe-5086-7161a1ce9e045da82f90b1b4c184ab84b7f54900: 7161a1ce9e045da82f90b1b4c184ab84b7f54900
xe-5088-ac60a9dd73e01e3f22825241c2f0498968cb2356: ac60a9dd73e01e3f22825241c2f0498968cb2356
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/index.html
[-- Attachment #2: Type: text/html, Size: 1676 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* ✓ i915.CI.BAT: success for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3)
2026-05-18 15:48 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
2026-05-19 1:39 ` ✓ Xe.CI.BAT: success for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3) Patchwork
@ 2026-05-19 1:48 ` Patchwork
2026-05-19 10:10 ` ✗ Xe.CI.FULL: failure " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-05-19 1:48 UTC (permalink / raw)
To: Nitin Gote; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6160 bytes --]
== Series Details ==
Series: tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3)
URL : https://patchwork.freedesktop.org/series/166744/
State : success
== Summary ==
CI Bug Log - changes from IGT_8918 -> IGTPW_15199
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/index.html
Participating hosts (41 -> 40)
------------------------------
Additional (1): bat-adls-6
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15199 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#15931])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-adls-6/igt@dmabuf@all-tests.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-adls-6: NOTRUN -> [SKIP][3] ([i915#15656])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][4] -> [DMESG-FAIL][5] ([i915#12061]) +1 other test dmesg-fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8918/bat-dg2-8/igt@i915_selftest@live.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-dg2-8/igt@i915_selftest@live.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][6] ([i915#7707]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][7] ([i915#4103]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#3840])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][9]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [PASS][10] -> [SKIP][11] ([i915#13030])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8918/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][12] ([i915#5354])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][13] ([i915#1072] / [i915#9732]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][14] ([i915#3555])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#3291]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][16] ([i915#12061]) -> [PASS][17] +1 other test pass
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8918/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-mtlp-9: [DMESG-FAIL][18] ([i915#12061]) -> [PASS][19] +1 other test pass
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8918/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8918 -> IGTPW_15199
* Linux: CI_DRM_18512 -> CI_DRM_18514
CI-20190529: 20190529
CI_DRM_18512: 7161a1ce9e045da82f90b1b4c184ab84b7f54900 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18514: ac60a9dd73e01e3f22825241c2f0498968cb2356 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15199: dafa11285833f8ef069ee001df251685804c67e9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8918: 8918
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/index.html
[-- Attachment #2: Type: text/html, Size: 7347 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* ✗ Xe.CI.FULL: failure for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3)
2026-05-18 15:48 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
2026-05-19 1:39 ` ✓ Xe.CI.BAT: success for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3) Patchwork
2026-05-19 1:48 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-05-19 10:10 ` Patchwork
2026-05-21 13:02 ` Gote, Nitin R
2026-05-19 21:47 ` ✗ i915.CI.Full: " Patchwork
` (2 subsequent siblings)
5 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2026-05-19 10:10 UTC (permalink / raw)
To: Nitin Gote; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 37340 bytes --]
== Series Details ==
Series: tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3)
URL : https://patchwork.freedesktop.org/series/166744/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8918_FULL -> XEIGTPW_15199_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15199_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15199_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_15199_FULL:
### IGT changes ###
#### Possible regressions ####
* {igt@core_hotunplug@hotrebind-with-load} (NEW):
- shard-bmg: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-6/igt@core_hotunplug@hotrebind-with-load.html
* {igt@core_hotunplug@hotreplug-lateclose-with-load} (NEW):
- shard-lnl: NOTRUN -> [ABORT][2] +2 other tests abort
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-3/igt@core_hotunplug@hotreplug-lateclose-with-load.html
* {igt@core_hotunplug@hotreplug-with-load} (NEW):
- shard-bmg: NOTRUN -> [ABORT][3] +2 other tests abort
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-10/igt@core_hotunplug@hotreplug-with-load.html
* igt@kms_async_flips@invalid-async-flip@pipe-a-edp-1:
- shard-lnl: [PASS][4] -> [ABORT][5] +2 other tests abort
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-5/igt@kms_async_flips@invalid-async-flip@pipe-a-edp-1.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-2/igt@kms_async_flips@invalid-async-flip@pipe-a-edp-1.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-7/igt@xe_pm@s3-vm-bind-userptr.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-5/igt@xe_pm@s3-vm-bind-userptr.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-render:
- shard-lnl: [SKIP][8] ([Intel XE#7061]) -> [ABORT][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-2/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-render.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-5/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-render.html
New tests
---------
New tests have been introduced between XEIGT_8918_FULL and XEIGTPW_15199_FULL:
### New IGT tests (6) ###
* igt@core_hotunplug@hotrebind-lateclose-with-load:
- Statuses : 1 pass(s)
- Exec time: [9.67] s
* igt@core_hotunplug@hotrebind-with-load:
- Statuses : 1 incomplete(s) 1 pass(s)
- Exec time: [0.0, 9.72] s
* igt@core_hotunplug@hotreplug-lateclose-with-load:
- Statuses : 2 abort(s)
- Exec time: [8.74, 14.85] s
* igt@core_hotunplug@hotreplug-with-load:
- Statuses : 2 abort(s)
- Exec time: [8.46, 9.63] s
* igt@core_hotunplug@hotunbind-rebind-with-load:
- Statuses : 2 abort(s)
- Exec time: [8.31, 9.53] s
* igt@core_hotunplug@hotunplug-rescan-with-load:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in XEIGTPW_15199_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2327])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-9/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-8/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-7/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#607] / [Intel XE#7361])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1477] / [Intel XE#7361])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#7679])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#367])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#7676])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-5/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2:
- shard-bmg: [PASS][20] -> [INCOMPLETE][21] ([Intel XE#7084])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#3432])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2252])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-2/igt@kms_chamelium_audio@dp-audio-edid.html
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#373]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-7/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2325] / [Intel XE#7358])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-3/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_content_protection@uevent:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#7642])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-5/igt@kms_content_protection@uevent.html
- shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#309] / [Intel XE#7343]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#4331] / [Intel XE#7227])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#4331] / [Intel XE#7227])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1421]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][33] -> [FAIL][34] ([Intel XE#301] / [Intel XE#3149])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#7178] / [Intel XE#7351])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4141]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#656] / [Intel XE#7905]) +6 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#6312]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2311]) +17 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7061] / [Intel XE#7356])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#7865]) +6 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7061]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-9/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#7061])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-4/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2313]) +15 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-9/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#7905]) +8 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-4/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][47] -> [SKIP][48] ([Intel XE#1503])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010:
- shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#7922]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-8/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-4/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
- shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#7915]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-7/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_plane_multiple@2x-tiling-x@pipe-d-hdmi-a-3-pipe-c-dp-2:
- shard-bmg: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#6652])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-x@pipe-d-hdmi-a-3-pipe-c-dp-2.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x@pipe-d-hdmi-a-3-pipe-c-dp-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-10/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#4608])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#4608] / [Intel XE#7304])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1489]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-3/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#2893] / [Intel XE#7304])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-basic:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1406])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-8/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-7/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_setmode@basic:
- shard-lnl: [PASS][65] -> [FAIL][66] ([Intel XE#6361]) +1 other test fail
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-5/igt@kms_setmode@basic.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-3/igt@kms_setmode@basic.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#6599])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-2/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#7636]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-8/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#7636])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-1/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-2/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html
* igt@xe_exec_balancer@many-cm-parallel-basic:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#7482]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-5/igt@xe_exec_balancer@many-cm-parallel-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-null:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1392])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-null.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#7136]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-imm:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#7136]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-7/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-imm.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#6874]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-5/igt@xe_exec_multi_queue@many-queues-preempt-mode-dyn-priority.html
* igt@xe_exec_multi_queue@many-queues-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#6874]) +7 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-5/igt@xe_exec_multi_queue@many-queues-priority-smem.html
* igt@xe_exec_reset@cm-multi-queue-cat-error:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#7866])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-1/igt@xe_exec_reset@cm-multi-queue-cat-error.html
* igt@xe_exec_system_allocator@fault-process-benchmark:
- shard-bmg: [PASS][79] -> [FAIL][80] ([Intel XE#7850])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-9/igt@xe_exec_system_allocator@fault-process-benchmark.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-9/igt@xe_exec_system_allocator@fault-process-benchmark.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][81] ([Intel XE#7098])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#7138]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#7138]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-7/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate.html
* igt@xe_gpgpu_fill@offset-4x4:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#7954])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-7/igt@xe_gpgpu_fill@offset-4x4.html
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#7954])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-2/igt@xe_gpgpu_fill@offset-4x4.html
* igt@xe_mmap@pci-membarrier-parallel:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-2/igt@xe_mmap@pci-membarrier-parallel.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#6964])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-5/igt@xe_multigpu_svm@mgpu-migration-basic.html
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#6964])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-4/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1948])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-1/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pxp@pxp-stale-bo-exec-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#4733] / [Intel XE#7417])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-8/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [PASS][91] -> [FAIL][92] ([Intel XE#6569])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@xe_sriov_flr@flr-twice.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-4/igt@xe_sriov_flr@flr-twice.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][93] ([Intel XE#7571]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][95] ([Intel XE#301]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3:
- shard-bmg: [DMESG-FAIL][97] ([Intel XE#5545] / [Intel XE#7774]) -> [PASS][98] +1 other test pass
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][99] ([Intel XE#6703]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-shrfb-plflip-blt.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-2/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [SKIP][101] ([Intel XE#7915]) -> [PASS][102] +3 other tests pass
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-7/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-2/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@xe_exec_reset@long-spin-reuse-many-preempt:
- shard-bmg: [FAIL][103] ([Intel XE#7850]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@xe_exec_reset@long-spin-reuse-many-preempt.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-4/igt@xe_exec_reset@long-spin-reuse-many-preempt.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random:
- shard-bmg: [FAIL][105] ([Intel XE#7992]) -> [PASS][106] +3 other tests pass
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-10/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: [DMESG-WARN][107] ([Intel XE#6627] / [Intel XE#7419]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-9/igt@xe_survivability@runtime-survivability.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-10/igt@xe_survivability@runtime-survivability.html
#### Warnings ####
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-lnl: [SKIP][109] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) -> [SKIP][110] ([Intel XE#309] / [Intel XE#7343])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [FAIL][111] ([Intel XE#301]) -> [FAIL][112] ([Intel XE#301] / [Intel XE#3149])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][113] ([Intel XE#6703]) -> [SKIP][114] ([Intel XE#4141])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-draw-render:
- shard-lnl: [ABORT][115] -> [SKIP][116] ([Intel XE#7905])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-draw-render.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][117] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][118] ([Intel XE#1729] / [Intel XE#7424])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[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#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[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#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[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#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[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#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[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#7676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7676
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774
[Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#7922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7922
[Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
[Intel XE#7954]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7954
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
Build changes
-------------
* IGT: IGT_8918 -> IGTPW_15199
* Linux: xe-5086-7161a1ce9e045da82f90b1b4c184ab84b7f54900 -> xe-5088-ac60a9dd73e01e3f22825241c2f0498968cb2356
IGTPW_15199: dafa11285833f8ef069ee001df251685804c67e9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8918: 8918
xe-5086-7161a1ce9e045da82f90b1b4c184ab84b7f54900: 7161a1ce9e045da82f90b1b4c184ab84b7f54900
xe-5088-ac60a9dd73e01e3f22825241c2f0498968cb2356: ac60a9dd73e01e3f22825241c2f0498968cb2356
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/index.html
[-- Attachment #2: Type: text/html, Size: 42264 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* RE: ✗ Xe.CI.FULL: failure for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3)
2026-05-19 10:10 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-05-21 13:02 ` Gote, Nitin R
0 siblings, 0 replies; 13+ messages in thread
From: Gote, Nitin R @ 2026-05-21 13:02 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 4195 bytes --]
Hi,
Observed a few failures in the new runs. These are from the newly introduced core_hotunplug subtests.
I will investigate and follow up with details. CC’ing the CI bug filing team for tracking.
Thanks,
Nitin
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Tuesday, May 19, 2026 3:40 PM
To: Gote, Nitin R <nitin.r.gote@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Xe.CI.FULL: failure for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3)
Patch Details
Series:
tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3)
URL:
https://patchwork.freedesktop.org/series/166744/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/index.html
CI Bug Log - changes from XEIGT_8918_FULL -> XEIGTPW_15199_FULL
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_15199_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15199_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto: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_15199_FULL:
IGT changes
Possible regressions
* {igt@core_hotunplug@hotrebind-with-load} (NEW):
* shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-6/igt@core_hotunplug@hotrebind-with-load.html>
* {igt@core_hotunplug@hotreplug-lateclose-with-load} (NEW):
* shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-3/igt@core_hotunplug@hotreplug-lateclose-with-load.html> +2 other tests abort
* {igt@core_hotunplug@hotreplug-with-load} (NEW):
* shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-10/igt@core_hotunplug@hotreplug-with-load.html> +2 other tests abort
* igt@kms_async_flips@invalid-async-flip@pipe-a-edp-1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-5/igt@kms_async_flips@invalid-async-flip@pipe-a-edp-1.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-2/igt@kms_async_flips@invalid-async-flip@pipe-a-edp-1.html> +2 other tests abort
* igt@xe_pm@s3-vm-bind-userptr:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-7/igt@xe_pm@s3-vm-bind-userptr.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-bmg-5/igt@xe_pm@s3-vm-bind-userptr.html> +1 other test incomplete
Warnings
* igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-render:
* shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-2/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-render.html> (Intel XE#7061<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15199/shard-lnl-5/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-render.html>
New tests
New tests have been introduced between XEIGT_8918_FULL and XEIGTPW_15199_FULL:
New IGT tests (6)
* igt@core_hotunplug@hotrebind-lateclose-with-load:
* Statuses : 1 pass(s)
* Exec time: [9.67] s
* igt@core_hotunplug@hotrebind-with-load:
* Statuses : 1 incomplete(s) 1 pass(s)
* Exec time: [0.0, 9.72] s
* igt@core_hotunplug@hotreplug-lateclose-with-load:
* Statuses : 2 abort(s)
* Exec time: [8.74, 14.85] s
* igt@core_hotunplug@hotreplug-with-load:
* Statuses : 2 abort(s)
* Exec time: [8.46, 9.63] s
* igt@core_hotunplug@hotunbind-rebind-with-load:
* Statuses : 2 abort(s)
* Exec time: [8.31, 9.53] s
* igt@core_hotunplug@hotunplug-rescan-with-load:
* Statuses :
* Exec time: [None] s
Known issues
[cut]
[-- Attachment #2: Type: text/html, Size: 28829 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.Full: failure for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3)
2026-05-18 15:48 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
` (2 preceding siblings ...)
2026-05-19 10:10 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-05-19 21:47 ` Patchwork
2026-05-20 13:38 ` [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Janusz Krzysztofik
2026-05-21 12:46 ` Kamil Konieczny
5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-05-19 21:47 UTC (permalink / raw)
To: Nitin Gote; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 147177 bytes --]
== Series Details ==
Series: tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3)
URL : https://patchwork.freedesktop.org/series/166744/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18514_full -> IGTPW_15199_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15199_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15199_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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15199_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live:
- shard-glk: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk1/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk2/igt@i915_selftest@live.html
Known issues
------------
Here are the changes found in IGTPW_15199_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#15931])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@dmabuf@all-tests.html
- shard-tglu-1: NOTRUN -> [SKIP][4] ([i915#15931])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@dmabuf@all-tests.html
* igt@fbdev@pan:
- shard-snb: NOTRUN -> [FAIL][5] ([i915#15792])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-snb6/igt@fbdev@pan.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#7697])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#7697])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-3/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-19/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-3/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][12] ([i915#13356])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: NOTRUN -> [INCOMPLETE][13] ([i915#13356]) +1 other test incomplete
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@legacy-engines-persistence:
- shard-snb: NOTRUN -> [SKIP][14] ([i915#1099]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-snb4/igt@gem_ctx_persistence@legacy-engines-persistence.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#5882]) +7 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#280])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-3/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@in-flight-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][17] ([i915#13390])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk11/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#4812]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-3/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#4771])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#4525]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-8/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#4525])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-3/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_big@single:
- shard-mtlp: [PASS][22] -> [FAIL][23] ([i915#15871])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-6/igt@gem_exec_big@single.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-5/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#6334]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#6334]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#4812])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-16/igt@gem_exec_fence@submit.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4812])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-3/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-18/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@gem_exec_flush@basic-uc-set-default.html
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-15/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +10 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +6 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4860]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#4860])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4860])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4613] / [i915#7582])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-glk: NOTRUN -> [SKIP][40] ([i915#4613]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk3/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#4613]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@gem_lmem_swapping@random-engines.html
- shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#4613]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify:
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-4/igt@gem_lmem_swapping@verify.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3282]) +5 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#8289])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-3/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#284])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@gem_media_vme.html
* igt@gem_mmap@pf-nonblock:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4083])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-14/igt@gem_mmap@pf-nonblock.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4077]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-7/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][49] -> [TIMEOUT][50] ([i915#16021]) +1 other test timeout
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-3/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-5/igt@gem_mmap_wc@close.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#3282]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-13/igt@gem_partial_pwrite_pread@write-display.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3282]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-1/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4270])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-13/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#13717])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4270]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#5190] / [i915#8428]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-3/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4079]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#8411]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@noreloc-s3:
- shard-glk11: NOTRUN -> [INCOMPLETE][62] ([i915#13809])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk11/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +10 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-5/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic@basic:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#15657])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#3297]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#3297] / [i915#3323])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-5/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3297]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#3297]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3297]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-17/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3297]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen7_exec_parse@bitmasks:
- shard-glk10: NOTRUN -> [SKIP][71] +178 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk10/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#2527])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-13/igt@gen9_exec_parse@bb-chained.html
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#2856])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-oversize:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#2527] / [i915#2856]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-7/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#2856]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-3/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#2527]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html
- shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_drm_fdinfo@most-busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#14073]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#14118])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#14544] / [i915#15479]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-rkl: NOTRUN -> [ABORT][81] ([i915#15342]) +1 other test abort
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-glk: NOTRUN -> [ABORT][82] ([i915#15342]) +1 other test abort
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk6/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#8399])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-8/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#14544] / [i915#16080])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#16080])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: [PASS][86] -> [INCOMPLETE][87] ([i915#13356])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk1/igt@i915_pm_rpm@system-suspend.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk1/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: [PASS][88] -> [INCOMPLETE][89] ([i915#13356] / [i915#15172])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk2/igt@i915_pm_rpm@system-suspend-execbuf.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk4/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@waitboost:
- shard-mtlp: NOTRUN -> [FAIL][90] ([i915#15365])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-2/igt@i915_pm_rps@waitboost.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#6245])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-17/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: NOTRUN -> [DMESG-FAIL][92] ([i915#12061]) +1 other test dmesg-fail
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-glk: NOTRUN -> [INCOMPLETE][93] ([i915#4817])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk8/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [PASS][94] -> [INCOMPLETE][95] ([i915#4817])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@i915_suspend@debugfs-reader.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: [PASS][96] -> [INCOMPLETE][97] ([i915#4817])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk2/igt@i915_suspend@fence-restore-tiled2untiled.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk9/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#7707])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#4212])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-5/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#9531])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#1769] / [i915#3555])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#5286]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][103] -> [FAIL][104] ([i915#15733] / [i915#5138])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-glk11: NOTRUN -> [SKIP][105] +104 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk11/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#5286]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#5286]) +6 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#14544] / [i915#5286])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#4538] / [i915#5286]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-addfb:
- shard-dg1: [PASS][110] -> [DMESG-WARN][111] ([i915#4391] / [i915#4423])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-13/igt@kms_big_fb@linear-addfb.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-13/igt@kms_big_fb@linear-addfb.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#3828])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3828])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][114] +5 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#3638])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-17/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#3638]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-8/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5190]) +7 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-14/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#14544]) +7 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#6095]) +197 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#12313]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#6095]) +72 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6095]) +19 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#12313])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-19/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#12313])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#12313])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#12313])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#6095]) +39 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#10307] / [i915#10434] / [i915#6095])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#12805])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#14098] / [i915#6095]) +50 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][133] ([i915#15582])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: NOTRUN -> [ABORT][134] ([i915#15132]) +1 other test abort
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#6095]) +14 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#12313]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +106 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#6095]) +79 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#14544] / [i915#6095]) +4 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-glk: NOTRUN -> [SKIP][140] +430 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk4/igt@kms_cdclk@mode-transition.html
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#3742])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-3/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#16017])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#3742])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#13783]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][145] +10 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#14544] / [i915#7828])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +5 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-19/igt@kms_chamelium_hpd@dp-hpd-fast.html
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +10 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +7 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-3/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#12655] / [i915#3555])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@kms_color@deep-color.html
- shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#9979])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#14544] / [i915#15865])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#15865]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#15330])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#15330] / [i915#3116])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#15330])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#15865])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#15865]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_content_protection@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#15865])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-19/igt@kms_content_protection@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#15865])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-6/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#15865]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8814])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][167] ([i915#13566]) +1 other test fail
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#13049]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#13049])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#14544] / [i915#3555])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#3555]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#13049])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#8814]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#3555]) +6 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][175] ([i915#13566]) +1 other test fail
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][176] ([i915#12358] / [i915#14152] / [i915#7882])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk2/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][177] ([i915#12358] / [i915#14152])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk2/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#4103]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#13046] / [i915#5354]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-dg1: NOTRUN -> [SKIP][180] +25 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-16/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#9809]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#9723])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#14544] / [i915#3555] / [i915#3804])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#1769] / [i915#3555] / [i915#3804])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#3804])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#14544] / [i915#3804])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#13707])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#8812])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#8812])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-15/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-10/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#3840])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#16084])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#16081])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr2:
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#658])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-5/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#14544] / [i915#9934]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#9934])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#8381])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][199] ([i915#12745] / [i915#4839])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk10/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk10: NOTRUN -> [INCOMPLETE][200] ([i915#12745])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk10/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#9934]) +6 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9934]) +6 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#3637] / [i915#9934]) +8 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-9/igt@kms_flip@2x-nonexisting-fb.html
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3637] / [i915#9934]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-1/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#9934]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-13/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#3637] / [i915#9934]) +7 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@dpms-off-confusion:
- shard-dg1: [PASS][207] -> [DMESG-WARN][208] ([i915#4423])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-16/igt@kms_flip@dpms-off-confusion.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-19/igt@kms_flip@dpms-off-confusion.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2:
- shard-glk10: NOTRUN -> [FAIL][209] ([i915#13027]) +1 other test fail
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk10/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#15643]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#15643])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#15643]) +3 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#15643]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#15643])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#14544] / [i915#15643])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#15643]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#15643] / [i915#5190]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: [PASS][218] -> [SKIP][219] ([i915#15672])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#15990] / [i915#8708]) +8 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#15990] / [i915#8708]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#15990] / [i915#8708]) +20 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#1825]) +7 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-tglu-1: NOTRUN -> [SKIP][224] +72 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#15989]) +14 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#15989]) +4 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-12/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][227] +103 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-7/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#15989]) +16 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#15104] / [i915#15990]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#15104] / [i915#15990])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#10433] / [i915#15102])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#15102]) +22 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#15102] / [i915#3023]) +18 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#15990]) +8 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#15990]) +4 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#15102]) +8 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#15102]) +21 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][239] +81 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#15989]) +7 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#5439])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#15990]) +23 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-3/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#15989]) +22 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-10/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#15989]) +11 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt:
- shard-glk: [PASS][245] -> [SKIP][246] +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk5/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-move:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#15991]) +13 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-7/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary:
- shard-rkl: [PASS][248] -> [SKIP][249] ([i915#15989]) +9 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15102]) +26 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#14544] / [i915#1825])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#15991] / [i915#5354]) +17 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#15991] / [i915#1825]) +7 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#14544] / [i915#15102]) +2 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#15102]) +46 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#15991]) +37 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#16012] / [i915#3555] / [i915#8228]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-8/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#16012] / [i915#3555] / [i915#8228])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010:
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#16012]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#16012]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#16012]) +7 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-14/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#16011]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#16012]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-6/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#16011] / [i915#3555] / [i915#8228]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@kms_hdr@static-toggle.html
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#16011] / [i915#3555] / [i915#8228])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-15/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#16011] / [i915#3555] / [i915#8228]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-3/igt@kms_hdr@static-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#16011] / [i915#3555] / [i915#8228])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-6/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#16011]) +5 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#16011] / [i915#3555] / [i915#8228]) +2 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_hdr@static-toggle@pipe-a-edp-1-xrgb16161616f:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#16011]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-6/igt@kms_hdr@static-toggle@pipe-a-edp-1-xrgb16161616f.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#16011]) +5 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#16011]) +7 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-15/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#16011]) +3 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-3/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#13688] / [i915#14544])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#13688])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#15459]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#15459])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#15458]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#15458])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#15458])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#15458])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#15458])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-15/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#15815])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#6301])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][285] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#15709]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#15608]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#15709]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#15709]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#15608]) +3 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-5/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#15709]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#14544] / [i915#15709])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#15709])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#15709]) +3 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#15608]) +3 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#15608]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-15/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#15608]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][298] ([i915#12178])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][299] ([i915#7862]) +1 other test fail
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][300] ([i915#10647] / [i915#12169])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][301] ([i915#10647]) +1 other test fail
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#8821])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@kms_plane_lowres@tiling-yf.html
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#3555]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-18/igt@kms_plane_lowres@tiling-yf.html
- shard-tglu: NOTRUN -> [SKIP][304] ([i915#3555]) +4 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-2/igt@kms_plane_lowres@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#3555] / [i915#8821])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-5/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#13958]) +2 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-2/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#13958])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-4/igt@kms_plane_multiple@2x-tiling-x.html
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#13958]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-x.html
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#13958])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-17/igt@kms_plane_multiple@2x-tiling-x.html
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#13958])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-8/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#13958])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#15329]) +3 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#15329]) +4 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-10/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#15329] / [i915#6953])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#15329]) +8 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#12343] / [i915#5354])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-3/igt@kms_pm_backlight@bad-brightness.html
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#12343] / [i915#5354])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#12343] / [i915#9812])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-5/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#12343] / [i915#5354]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-13/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][320] ([i915#15948])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#15948])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#15739])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#8430])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-4/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#15073])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][325] ([i915#15073])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][326] ([i915#15073])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: [PASS][327] -> [SKIP][328] ([i915#15073]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][329] -> [SKIP][330] ([i915#15073])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#15073])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#15403])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#4077]) +5 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-15/igt@kms_pm_rpm@pm-caching.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: [PASS][334] -> [INCOMPLETE][335] ([i915#10553])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk1/igt@kms_pm_rpm@system-suspend-modeset.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk9/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][336] ([i915#6524] / [i915#6805])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-5/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][337] ([i915#11520]) +8 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][338] ([i915#11520]) +8 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk3/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#11520]) +5 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#11520]) +4 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-glk10: NOTRUN -> [SKIP][341] ([i915#11520]) +2 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][342] ([i915#11520]) +2 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-snb5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][343] ([i915#11520]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-17/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-glk11: NOTRUN -> [SKIP][344] ([i915#11520]) +2 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#11520]) +8 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#9683])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#9683])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-tglu-1: NOTRUN -> [SKIP][348] ([i915#9683])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#9688]) +6 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-6/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#1072] / [i915#9732]) +19 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#1072] / [i915#9732]) +5 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-18/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@pr-sprite-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][352] ([i915#9732]) +20 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-10/igt@kms_psr@pr-sprite-mmap-cpu.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#9732]) +12 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#1072] / [i915#9732]) +17 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-5/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-primary-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_psr@psr-primary-mmap-cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#15949])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][357] ([i915#15492])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk1/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#5190])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#5289])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][360] ([i915#5289]) +1 other test skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][361] ([i915#12755] / [i915#15867]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu-1: NOTRUN -> [ABORT][362] ([i915#13179]) +1 other test abort
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][363] ([i915#3555]) +6 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-5/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_vrr@flip-suspend:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#15243] / [i915#3555])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-6/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][365] ([i915#9906])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-2/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#3555] / [i915#9906])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-7/igt@kms_vrr@negative-basic.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#14544] / [i915#2436])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-accuracy-98:
- shard-snb: NOTRUN -> [SKIP][368] +182 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-snb4/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@busy-accuracy-98@rcs0:
- shard-tglu: NOTRUN -> [FAIL][369] ([i915#4349]) +2 other tests fail
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-7/igt@perf_pmu@busy-accuracy-98@rcs0.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][370] -> [FAIL][371] ([i915#4349])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-8/igt@perf_pmu@busy-double-start@bcs0.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][372] ([i915#4349]) +4 other tests fail
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][373] ([i915#15778])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk6/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#8516])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-3/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][375] ([i915#3708] / [i915#4077])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-6/igt@prime_vgem@basic-fence-mmap.html
- shard-dg2: NOTRUN -> [SKIP][376] ([i915#3708] / [i915#4077])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-7/igt@prime_vgem@basic-fence-mmap.html
- shard-dg1: NOTRUN -> [SKIP][377] ([i915#3708] / [i915#4077])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-17/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][378] ([i915#3291] / [i915#3708])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][379] ([i915#3708])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-8/igt@prime_vgem@fence-read-hang.html
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#3708])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@prime_vgem@fence-read-hang.html
- shard-dg1: NOTRUN -> [SKIP][381] ([i915#3708])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-15/igt@prime_vgem@fence-read-hang.html
- shard-mtlp: NOTRUN -> [SKIP][382] ([i915#3708])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-2/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf@vf-1:
- shard-tglu-1: NOTRUN -> [SKIP][383] ([i915#16066]) +9 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][384] ([i915#9917])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#14544] / [i915#9917])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg1: NOTRUN -> [SKIP][386] ([i915#9917])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-mtlp: NOTRUN -> [SKIP][387] ([i915#16066]) +9 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-7/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [SKIP][388] ([i915#16066]) +10 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-10/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_eio@kms:
- shard-rkl: [DMESG-WARN][389] ([i915#13363]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@gem_eio@kms.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@gem_eio@kms.html
- shard-tglu: [DMESG-WARN][391] ([i915#13363]) -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-9/igt@gem_eio@kms.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-3/igt@gem_eio@kms.html
* igt@gem_exec_big@single:
- shard-tglu: [FAIL][393] ([i915#15816]) -> [PASS][394]
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-6/igt@gem_exec_big@single.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-2/igt@gem_exec_big@single.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][395] ([i915#13356]) -> [PASS][396] +2 other tests pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html
* igt@i915_pm_rpm@system-suspend:
- shard-rkl: [INCOMPLETE][397] ([i915#13356]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@i915_pm_rpm@system-suspend.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@i915_pm_rpm@system-suspend.html
* igt@i915_selftest@live:
- shard-tglu: [DMESG-FAIL][399] -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-6/igt@i915_selftest@live.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-5/igt@i915_selftest@live.html
- shard-mtlp: [DMESG-FAIL][401] ([i915#15560]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-6/igt@i915_selftest@live.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gem_contexts:
- shard-tglu: [DMESG-FAIL][403] ([i915#16077]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-6/igt@i915_selftest@live@gem_contexts.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-5/igt@i915_selftest@live@gem_contexts.html
- shard-mtlp: [DMESG-FAIL][405] ([i915#16077]) -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-6/igt@i915_selftest@live@gem_contexts.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-1/igt@i915_selftest@live@gem_contexts.html
* igt@kms_addfb_basic@too-wide:
- shard-dg1: [DMESG-WARN][407] ([i915#4423]) -> [PASS][408] +2 other tests pass
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-13/igt@kms_addfb_basic@too-wide.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-14/igt@kms_addfb_basic@too-wide.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][409] ([i915#14694] / [i915#15582]) -> [PASS][410]
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: [FAIL][411] ([i915#13566]) -> [PASS][412] +1 other test pass
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [INCOMPLETE][413] ([i915#9878]) -> [PASS][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg1: [FAIL][415] ([i915#13027]) -> [PASS][416] +1 other test pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-15/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_force_connector_basic@force-edid:
- shard-mtlp: [SKIP][417] ([i915#15672]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-6/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-move:
- shard-glk: [SKIP][419] -> [PASS][420] +2 other tests pass
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk4/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-move.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-linear:
- shard-rkl: [SKIP][421] ([i915#15989]) -> [PASS][422] +5 other tests pass
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][423] ([i915#15073]) -> [PASS][424] +1 other test pass
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-rkl: [SKIP][425] ([i915#15073]) -> [PASS][426] +1 other test pass
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [SKIP][427] ([i915#15073]) -> [PASS][428]
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-19/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@perf@gen12-group-concurrent-oa-buffer-read:
- shard-mtlp: [FAIL][429] -> [PASS][430]
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-1/igt@perf@gen12-group-concurrent-oa-buffer-read.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-5/igt@perf@gen12-group-concurrent-oa-buffer-read.html
* igt@perf_pmu@busy-idle:
- shard-mtlp: [FAIL][431] ([i915#4349]) -> [PASS][432] +4 other tests pass
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-mtlp-3/igt@perf_pmu@busy-idle.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-mtlp-5/igt@perf_pmu@busy-idle.html
#### Warnings ####
* igt@api_intel_bb@crc32:
- shard-rkl: [SKIP][433] ([i915#14544] / [i915#6230]) -> [SKIP][434] ([i915#6230])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@api_intel_bb@crc32.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@api_intel_bb@crc32.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: [SKIP][435] ([i915#7697]) -> [SKIP][436] ([i915#14544] / [i915#7697])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@gem_basic@multigpu-create-close.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][437] ([i915#14544] / [i915#9323]) -> [SKIP][438] ([i915#9323])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][439] ([i915#14544] / [i915#6335]) -> [SKIP][440] ([i915#6335])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: [SKIP][441] ([i915#280]) -> [SKIP][442] ([i915#14544] / [i915#280])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@gem_ctx_sseu@invalid-sseu.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_reloc@basic-range:
- shard-rkl: [SKIP][443] ([i915#14544] / [i915#3281]) -> [SKIP][444] ([i915#3281]) +2 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@gem_exec_reloc@basic-range.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: [SKIP][445] ([i915#3281]) -> [SKIP][446] ([i915#14544] / [i915#3281]) +1 other test skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-3/igt@gem_exec_reloc@basic-wc-read-noreloc.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: [SKIP][447] ([i915#4613]) -> [SKIP][448] ([i915#14544] / [i915#4613])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-4/igt@gem_lmem_swapping@massive-random.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: [SKIP][449] ([i915#14544] / [i915#4613]) -> [SKIP][450] ([i915#4613]) +1 other test skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-8/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-rkl: [SKIP][451] ([i915#3282]) -> [SKIP][452] ([i915#14544] / [i915#3282])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-4/igt@gem_partial_pwrite_pread@write-snoop.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: [SKIP][453] ([i915#8411]) -> [SKIP][454] ([i915#14544] / [i915#8411])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: [SKIP][455] ([i915#14544] / [i915#3297]) -> [SKIP][456] ([i915#3297])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@batch-without-end:
- shard-rkl: [SKIP][457] ([i915#14544] / [i915#2527]) -> [SKIP][458] ([i915#2527]) +1 other test skip
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@gen9_exec_parse@batch-without-end.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: [SKIP][459] ([i915#2527]) -> [SKIP][460] ([i915#14544] / [i915#2527]) +1 other test skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html
* igt@i915_power@sanity:
- shard-rkl: [SKIP][461] ([i915#14544] / [i915#7984]) -> [SKIP][462] ([i915#7984])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@i915_power@sanity.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@i915_power@sanity.html
* igt@i915_query@query-topology-unsupported:
- shard-rkl: [SKIP][463] ([i915#14544] / [i915#16079]) -> [SKIP][464] ([i915#16079])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@i915_query@query-topology-unsupported.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@i915_query@query-topology-unsupported.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-rkl: [SKIP][465] ([i915#14544] / [i915#5286]) -> [SKIP][466] ([i915#5286])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-3/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][467] ([i915#3638]) -> [SKIP][468] ([i915#14544] / [i915#3638]) +1 other test skip
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][469] ([i915#3828]) -> [SKIP][470] ([i915#14544] / [i915#3828])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: [SKIP][471] ([i915#4423] / [i915#4538]) -> [SKIP][472] ([i915#4538])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][473] ([i915#12313] / [i915#14544]) -> [SKIP][474] ([i915#12313])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][475] ([i915#6095]) -> [SKIP][476] ([i915#14544] / [i915#6095]) +3 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-2.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][477] ([i915#14098] / [i915#6095]) -> [SKIP][478] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-c-hdmi-a-2.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: [INCOMPLETE][479] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][480] ([i915#15582])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][481] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][482] ([i915#14098] / [i915#6095]) +2 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][483] ([i915#14544] / [i915#6095]) -> [SKIP][484] ([i915#6095]) +1 other test skip
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-rkl: [SKIP][485] ([i915#11151] / [i915#7828]) -> [SKIP][486] ([i915#11151] / [i915#14544] / [i915#7828])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: [SKIP][487] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][488] ([i915#11151] / [i915#7828])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: [SKIP][489] ([i915#14544] / [i915#15330]) -> [SKIP][490] ([i915#15330]) +1 other test skip
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-rkl: [SKIP][491] ([i915#15865]) -> [SKIP][492] ([i915#14544] / [i915#15865])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-5/igt@kms_content_protection@uevent-hdcp14.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: [SKIP][493] ([i915#13049]) -> [SKIP][494] ([i915#13049] / [i915#14544]) +1 other test skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][495] ([i915#14544] / [i915#3555]) -> [SKIP][496] ([i915#3555])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-rkl: [SKIP][497] ([i915#3555]) -> [SKIP][498] ([i915#14544] / [i915#3555]) +1 other test skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_cursor_crc@cursor-random-32x10.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg1: [SKIP][499] ([i915#13049]) -> [SKIP][500] ([i915#13049] / [i915#4423])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][501] ([i915#14544]) -> [SKIP][502] +21 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: [SKIP][503] ([i915#14544] / [i915#9067]) -> [SKIP][504] ([i915#9067])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-rkl: [SKIP][505] ([i915#13749] / [i915#14544]) -> [SKIP][506] ([i915#13749])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][507] ([i915#14544] / [i915#3840]) -> [SKIP][508] ([i915#3840])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-8/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][509] ([i915#3555] / [i915#3840]) -> [SKIP][510] ([i915#14544] / [i915#3555] / [i915#3840])
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][511] ([i915#14544] / [i915#3955]) -> [SKIP][512] ([i915#3955])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-rkl: [SKIP][513] ([i915#14544] / [i915#9934]) -> [SKIP][514] ([i915#9934])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-rkl: [SKIP][515] ([i915#9934]) -> [SKIP][516] ([i915#14544] / [i915#9934]) +1 other test skip
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: [INCOMPLETE][517] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][518] ([i915#12745] / [i915#4839])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-rkl: [SKIP][519] ([i915#14544] / [i915#15643]) -> [SKIP][520] ([i915#15643]) +1 other test skip
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][521] ([i915#1825]) -> [SKIP][522] ([i915#14544] / [i915#1825])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-rkl: [SKIP][523] ([i915#15102] / [i915#3023]) -> [SKIP][524] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg1: [SKIP][525] ([i915#15102]) -> [SKIP][526] ([i915#15102] / [i915#4423])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][527] ([i915#15102]) -> [SKIP][528] ([i915#10433] / [i915#15102])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][529] ([i915#14544] / [i915#1825]) -> [SKIP][530] ([i915#1825]) +1 other test skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: [SKIP][531] ([i915#15102]) -> [SKIP][532] ([i915#14544] / [i915#15102]) +10 other tests skip
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear:
- shard-rkl: [SKIP][533] ([i915#14544] / [i915#15102]) -> [SKIP][534] ([i915#15102]) +4 other tests skip
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-dg1: [SKIP][535] -> [SKIP][536] ([i915#4423])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-14/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-pwrite.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-19/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][537] ([i915#10433] / [i915#15102]) -> [SKIP][538] ([i915#15102]) +1 other test skip
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg1: [SKIP][539] ([i915#15102] / [i915#4423]) -> [SKIP][540] ([i915#15102])
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: [SKIP][541] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][542] ([i915#15102] / [i915#3023]) +3 other tests skip
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt:
- shard-rkl: [SKIP][543] -> [SKIP][544] ([i915#14544]) +26 other tests skip
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: [SKIP][545] ([i915#16011] / [i915#3555] / [i915#8228]) -> [INCOMPLETE][546] ([i915#15436])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: [SKIP][547] ([i915#16011]) -> [INCOMPLETE][548] ([i915#15436])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][549] ([i915#15709]) -> [SKIP][550] ([i915#14544] / [i915#15709])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][551] ([i915#14544] / [i915#15709]) -> [SKIP][552] ([i915#15709])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: [SKIP][553] ([i915#13958]) -> [SKIP][554] ([i915#13958] / [i915#14544])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: [SKIP][555] ([i915#14259] / [i915#14544]) -> [SKIP][556] ([i915#14259])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@kms_plane_multiple@tiling-4.html
* igt@kms_pm_backlight@fade:
- shard-rkl: [SKIP][557] ([i915#12343] / [i915#5354]) -> [SKIP][558] ([i915#12343] / [i915#14544] / [i915#5354])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-5/igt@kms_pm_backlight@fade.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: [SKIP][559] ([i915#14544] / [i915#15948]) -> [SKIP][560] ([i915#15948])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][561] ([i915#3828]) -> [SKIP][562] ([i915#9340])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: [SKIP][563] ([i915#15403]) -> [SKIP][564] ([i915#14544] / [i915#15403])
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-4/igt@kms_pm_rpm@package-g7.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: [SKIP][565] ([i915#6524]) -> [SKIP][566] ([i915#14544] / [i915#6524])
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg1: [SKIP][567] ([i915#4423] / [i915#6524]) -> [SKIP][568] ([i915#6524])
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-dg1-13/igt@kms_prime@d3hot.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-dg1-15/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][569] ([i915#11520]) -> [SKIP][570] ([i915#11520] / [i915#14544]) +2 other tests skip
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][571] ([i915#11520] / [i915#14544]) -> [SKIP][572] ([i915#11520])
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-pr-cursor-mmap-gtt:
- shard-rkl: [SKIP][573] ([i915#1072] / [i915#9732]) -> [SKIP][574] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-2/igt@kms_psr@fbc-pr-cursor-mmap-gtt.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-rkl: [SKIP][575] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][576] ([i915#1072] / [i915#9732]) +6 other tests skip
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-gtt.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-5/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: [SKIP][577] ([i915#5289]) -> [SKIP][578] ([i915#14544] / [i915#5289])
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: [SKIP][579] ([i915#9906]) -> [SKIP][580] ([i915#14544] / [i915#9906])
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-virtual.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf_pmu@module-unload:
- shard-tglu: [INCOMPLETE][581] ([i915#13520]) -> [ABORT][582] ([i915#15778])
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18514/shard-tglu-7/igt@perf_pmu@module-unload.html
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/shard-tglu-6/igt@perf_pmu@module-unload.html
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011
[i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012
[i915#16017]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16017
[i915#16021]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16021
[i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
[i915#16077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16077
[i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079
[i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8918 -> IGTPW_15199
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18514: ac60a9dd73e01e3f22825241c2f0498968cb2356 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15199: dafa11285833f8ef069ee001df251685804c67e9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8918: 8918
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15199/index.html
[-- Attachment #2: Type: text/html, Size: 197638 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* Re: [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug
2026-05-18 15:48 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
` (3 preceding siblings ...)
2026-05-19 21:47 ` ✗ i915.CI.Full: " Patchwork
@ 2026-05-20 13:38 ` Janusz Krzysztofik
2026-05-21 12:46 ` Kamil Konieczny
5 siblings, 0 replies; 13+ messages in thread
From: Janusz Krzysztofik @ 2026-05-20 13:38 UTC (permalink / raw)
To: Nitin Gote, igt-dev; +Cc: kamil.konieczny, matthew.auld
Hi Nitin,
On Mon, 2026-05-18 at 21:18 +0530, Nitin Gote wrote:
> The six fd-holding hot* subtests keep a DRM fd open across unbind/unplug
> but leave the GPU idle, so the kernel hotplug path is never exercised
> against an active workload.
>
> Add six new dedicated *-with-load subtests that run a GPU spinner across
> the unbind/unplug sequence so the device is removed while a workload is
> actively using it.
>
> The workload helpers use an explicit chipset dispatch block in
> workload_start()/stop() so that other vendors can contribute
> support by adding an else-if branch. New subtests are gated on
> workload_available(), which currently covers DRIVER_XE and DRIVER_INTEL,
> and returns false (SKIP) on any other driver.
>
> igt_spin_free() is avoided in workload_stop() since the device may be
> gone by then -- igt_spin_end() writes the stop condition via a userspace
> mmap and lets the DRM fd close reclaim kernel-side resources.
>
> Validated on BMG and DG2 with a KASAN-enabled kernel:
> all six new subtests pass with no KASAN reports.
>
> v3: Extend struct gpu_workload with a union of vendor-named members
> to match the chipset dispatch in workload_start()/stop(). (Janusz)
>
> v2: Pass the hotunplug priv struct to workload_start()/stop()
> and dispatch via an explicit if/else-if chipset block to invite
> other vendors to contribute. (Janusz)
>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
Now it LGTM.
Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> ---
> Hi Janusz,
>
> Extended the struct gpu_workload with a union of vendor-named members
> to make a room for other vendors data.
>
> Thanks,
> Nitin
>
> tests/core_hotunplug.c | 294 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 294 insertions(+)
>
> diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
> index 7c9dae1bf..2c54af628 100644
> --- a/tests/core_hotunplug.c
> +++ b/tests/core_hotunplug.c
> @@ -80,6 +80,34 @@
> * SUBTEST: unplug-rescan
> * Description: Check if a device believed to be closed can be cleanly
> * unplugged, then restored
> + *
> + * SUBTEST: hotunbind-rebind-with-load
> + * Description: Check if the driver can be cleanly unbound from an open device
> + * with a background GPU workload in flight, then released and
> + * rebound
> + *
> + * SUBTEST: hotunplug-rescan-with-load
> + * Description: Check if an open device with a background GPU workload in
> + * flight can be cleanly unplugged, then released and restored
> + *
> + * SUBTEST: hotrebind-with-load
> + * Description: Check if the driver can be cleanly rebound to a device with a
> + * still open hot unbound driver instance while a background GPU
> + * workload is in flight
> + *
> + * SUBTEST: hotreplug-with-load
> + * Description: Check if a hot unplugged and still open device can be cleanly
> + * restored while a background GPU workload is in flight
> + *
> + * SUBTEST: hotrebind-lateclose-with-load
> + * Description: Check if a hot unbound driver instance still open after hot
> + * rebind with a background GPU workload in flight can be cleanly
> + * released
> + *
> + * SUBTEST: hotreplug-lateclose-with-load
> + * Description: Check if an instance of a still open while hot replugged
> + * device with a background GPU workload in flight can be cleanly
> + * released
> */
>
> IGT_TEST_DESCRIPTION("Examine behavior of a driver on device hot unplug");
> @@ -565,6 +593,56 @@ static void set_filter_from_device(int fd)
> igt_assert_eq(igt_device_filter_add(filter), 1);
> }
>
> +/* GPU workload helpers */
> +
> +struct gpu_workload {
> + union {
> + struct {
> + igt_spin_t *spin;
> + uint64_t ahnd;
> + } intel; /* Xe and i915 */
> + };
> +};
> +
> +static bool workload_available(int chipset)
> +{
> + return chipset == DRIVER_XE || chipset == DRIVER_INTEL;
> +}
> +
> +static void workload_start(struct hotunplug *priv, int fd,
> + struct gpu_workload *w)
> +{
> + if (priv->chipset == DRIVER_XE || priv->chipset == DRIVER_INTEL) {
> + local_debug("%s\n", "starting GPU spinner");
> + priv->failure = "GPU workload start failure!";
> + w->intel.ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
> + w->intel.spin = igt_spin_new(fd, .ahnd = w->intel.ahnd);
> + priv->failure = NULL;
> + }
> +}
> +
> +static void workload_stop(struct hotunplug *priv, struct gpu_workload *w)
> +{
> + if (priv->chipset == DRIVER_XE || priv->chipset == DRIVER_INTEL) {
> + if (!w->intel.spin)
> + return;
> +
> + /*
> + * The device may be gone (unbind/unplug), so avoid
> + * igt_spin_free(): on Xe it would wait forever on a syncobj
> + * that never signals; on i915 it would touch the dead fd via
> + * gem_munmap()/gem_close(). Instead, end the spinner via a
> + * userspace mmap write and let the DRM fd close reclaim the
> + * kernel-side resources.
> + */
> + local_debug("%s\n", "stopping GPU spinner");
> + igt_spin_end(w->intel.spin);
> + put_ahnd(w->intel.ahnd);
> + w->intel.spin = NULL;
> + w->intel.ahnd = 0;
> + }
> +}
> +
> /* Subtests */
>
> static void unbind_rebind(struct hotunplug *priv)
> @@ -679,6 +757,150 @@ static void hotreplug_lateclose(struct hotunplug *priv)
> igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> }
>
> +static void hotunbind_rebind_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot unbind");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + driver_unbind(priv, "hot ", 0);
> +
> + workload_stop(priv, &w);
> +
> + priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
> + igt_assert_eq(priv->fd.drm, -1);
> +
> + driver_bind(priv, 0);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotunplug_rescan_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot unplug");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + device_unplug(priv, "hot ", 0);
> +
> + workload_stop(priv, &w);
> +
> + priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
> + igt_assert_eq(priv->fd.drm, -1);
> +
> + bus_rescan(priv, 0);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotrebind_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + driver_unbind(priv, "hot ", 60);
> +
> + driver_bind(priv, 0);
> +
> + workload_stop(priv, &w);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotreplug_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + device_unplug(priv, "hot ", 60);
> +
> + bus_rescan(priv, 0);
> +
> + workload_stop(priv, &w);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotrebind_lateclose_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + driver_unbind(priv, "hot ", 60);
> +
> + driver_bind(priv, 0);
> +
> + workload_stop(priv, &w);
> +
> + priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
> + igt_assert_eq(priv->fd.drm, -1);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotreplug_lateclose_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + device_unplug(priv, "hot ", 60);
> +
> + bus_rescan(priv, 0);
> +
> + workload_stop(priv, &w);
> +
> + priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
> + igt_assert_eq(priv->fd.drm, -1);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> /* Main */
>
> int igt_main()
> @@ -817,6 +1039,78 @@ int igt_main()
> recover(&priv);
> }
>
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if the driver can be cleanly unbound from an open device with a background GPU workload in flight, then released and rebound");
> + igt_subtest("hotunbind-rebind-with-load")
> + hotunbind_rebind_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if an open device with a background GPU workload in flight can be cleanly unplugged, then released and restored");
> + igt_subtest("hotunplug-rescan-with-load")
> + hotunplug_rescan_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if the driver can be cleanly rebound to a device with a still open hot unbound driver instance while a background GPU workload is in flight");
> + igt_subtest("hotrebind-with-load")
> + hotrebind_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if a hot unplugged and still open device can be cleanly restored while a background GPU workload is in flight");
> + igt_subtest("hotreplug-with-load")
> + hotreplug_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if a hot unbound driver instance still open after hot rebind with a background GPU workload in flight can be cleanly released");
> + igt_subtest("hotrebind-lateclose-with-load")
> + hotrebind_lateclose_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if an instance of a still open while hot replugged device with a background GPU workload in flight can be cleanly released");
> + igt_subtest("hotreplug-lateclose-with-load")
> + hotreplug_lateclose_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> igt_fixture() {
> post_healthcheck(&priv);
>
^ permalink raw reply [flat|nested] 13+ messages in thread* Re: [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug
2026-05-18 15:48 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
` (4 preceding siblings ...)
2026-05-20 13:38 ` [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Janusz Krzysztofik
@ 2026-05-21 12:46 ` Kamil Konieczny
5 siblings, 0 replies; 13+ messages in thread
From: Kamil Konieczny @ 2026-05-21 12:46 UTC (permalink / raw)
To: Nitin Gote; +Cc: igt-dev, janusz.krzysztofik, matthew.auld
Hi Nitin,
On 2026-05-18 at 21:18:09 +0530, Nitin Gote wrote:
> The six fd-holding hot* subtests keep a DRM fd open across unbind/unplug
> but leave the GPU idle, so the kernel hotplug path is never exercised
> against an active workload.
>
> Add six new dedicated *-with-load subtests that run a GPU spinner across
> the unbind/unplug sequence so the device is removed while a workload is
> actively using it.
>
> The workload helpers use an explicit chipset dispatch block in
> workload_start()/stop() so that other vendors can contribute
> support by adding an else-if branch. New subtests are gated on
> workload_available(), which currently covers DRIVER_XE and DRIVER_INTEL,
> and returns false (SKIP) on any other driver.
>
> igt_spin_free() is avoided in workload_stop() since the device may be
> gone by then -- igt_spin_end() writes the stop condition via a userspace
> mmap and lets the DRM fd close reclaim kernel-side resources.
>
> Validated on BMG and DG2 with a KASAN-enabled kernel:
> all six new subtests pass with no KASAN reports.
Please reply to Xe.FULL CI failure with cc to CI-bug filling team.
There are few fails from these new ones. Also please cut reply
after 'Known failures' to keep mail short.
Regards,
Kamil
>
> v3: Extend struct gpu_workload with a union of vendor-named members
> to match the chipset dispatch in workload_start()/stop(). (Janusz)
>
> v2: Pass the hotunplug priv struct to workload_start()/stop()
> and dispatch via an explicit if/else-if chipset block to invite
> other vendors to contribute. (Janusz)
>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
> ---
> Hi Janusz,
>
> Extended the struct gpu_workload with a union of vendor-named members
> to make a room for other vendors data.
>
> Thanks,
> Nitin
>
> tests/core_hotunplug.c | 294 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 294 insertions(+)
>
> diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
> index 7c9dae1bf..2c54af628 100644
> --- a/tests/core_hotunplug.c
> +++ b/tests/core_hotunplug.c
> @@ -80,6 +80,34 @@
> * SUBTEST: unplug-rescan
> * Description: Check if a device believed to be closed can be cleanly
> * unplugged, then restored
> + *
> + * SUBTEST: hotunbind-rebind-with-load
> + * Description: Check if the driver can be cleanly unbound from an open device
> + * with a background GPU workload in flight, then released and
> + * rebound
> + *
> + * SUBTEST: hotunplug-rescan-with-load
> + * Description: Check if an open device with a background GPU workload in
> + * flight can be cleanly unplugged, then released and restored
> + *
> + * SUBTEST: hotrebind-with-load
> + * Description: Check if the driver can be cleanly rebound to a device with a
> + * still open hot unbound driver instance while a background GPU
> + * workload is in flight
> + *
> + * SUBTEST: hotreplug-with-load
> + * Description: Check if a hot unplugged and still open device can be cleanly
> + * restored while a background GPU workload is in flight
> + *
> + * SUBTEST: hotrebind-lateclose-with-load
> + * Description: Check if a hot unbound driver instance still open after hot
> + * rebind with a background GPU workload in flight can be cleanly
> + * released
> + *
> + * SUBTEST: hotreplug-lateclose-with-load
> + * Description: Check if an instance of a still open while hot replugged
> + * device with a background GPU workload in flight can be cleanly
> + * released
> */
>
> IGT_TEST_DESCRIPTION("Examine behavior of a driver on device hot unplug");
[cut]
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug
@ 2026-05-18 12:01 Nitin Gote
2026-05-18 12:53 ` Janusz Krzysztofik
0 siblings, 1 reply; 13+ messages in thread
From: Nitin Gote @ 2026-05-18 12:01 UTC (permalink / raw)
To: igt-dev, janusz.krzysztofik, kamil.konieczny; +Cc: matthew.auld, nitin.r.gote
The six fd-holding hot* subtests keep a DRM fd open across unbind/unplug
but leave the GPU idle, so the kernel hotplug path is never exercised
against an active VM, exec queue and BOs.
Add six new dedicated *-with-load subtests that run a GPU spinner across
the unbind/unplug sequence so the device is removed while a workload is
actively using it.
The workload helpers use an explicit chipset dispatch block in
workload_start()/stop() so that other vendors can contribute
support by adding an else-if branch. New subtests are gated on
workload_available(), which currently covers DRIVER_XE and DRIVER_INTEL,
and returns false (SKIP) on any other driver.
igt_spin_free() is avoided in workload_stop() since the device may be
gone by then — igt_spin_end() writes the stop condition via a userspace
mmap and lets the DRM fd close reclaim kernel-side resources.
Validated on BMG and DG2 with a KASAN-enabled kernel:
all six new subtests pass with no KASAN reports.
v2: Pass the hotunplug priv struct to workload_start()/stop()
and dispatch via an explicit if/else-if chipset block to invite
other vendors to contribute. (Janusz)
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Assisted-by: Copilot:claude-opus-4.7
Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
---
tests/core_hotunplug.c | 290 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 290 insertions(+)
diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
index 7c9dae1bf..38dcbb97d 100644
--- a/tests/core_hotunplug.c
+++ b/tests/core_hotunplug.c
@@ -80,6 +80,34 @@
* SUBTEST: unplug-rescan
* Description: Check if a device believed to be closed can be cleanly
* unplugged, then restored
+ *
+ * SUBTEST: hotunbind-rebind-with-load
+ * Description: Check if the driver can be cleanly unbound from an open device
+ * with a background GPU workload in flight, then released and
+ * rebound
+ *
+ * SUBTEST: hotunplug-rescan-with-load
+ * Description: Check if an open device with a background GPU workload in
+ * flight can be cleanly unplugged, then released and restored
+ *
+ * SUBTEST: hotrebind-with-load
+ * Description: Check if the driver can be cleanly rebound to a device with a
+ * still open hot unbound driver instance while a background GPU
+ * workload is in flight
+ *
+ * SUBTEST: hotreplug-with-load
+ * Description: Check if a hot unplugged and still open device can be cleanly
+ * restored while a background GPU workload is in flight
+ *
+ * SUBTEST: hotrebind-lateclose-with-load
+ * Description: Check if a hot unbound driver instance still open after hot
+ * rebind with a background GPU workload in flight can be cleanly
+ * released
+ *
+ * SUBTEST: hotreplug-lateclose-with-load
+ * Description: Check if an instance of a still open while hot replugged
+ * device with a background GPU workload in flight can be cleanly
+ * released
*/
IGT_TEST_DESCRIPTION("Examine behavior of a driver on device hot unplug");
@@ -565,6 +593,52 @@ static void set_filter_from_device(int fd)
igt_assert_eq(igt_device_filter_add(filter), 1);
}
+/* GPU workload helpers */
+
+struct gpu_workload {
+ igt_spin_t *spin;
+ uint64_t ahnd;
+};
+
+static bool workload_available(int chipset)
+{
+ return chipset == DRIVER_XE || chipset == DRIVER_INTEL;
+}
+
+static void workload_start(struct hotunplug *priv, int fd,
+ struct gpu_workload *w)
+{
+ if (priv->chipset == DRIVER_XE || priv->chipset == DRIVER_INTEL) {
+ local_debug("%s\n", "starting GPU spinner");
+ priv->failure = "GPU workload start failure!";
+ w->ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
+ w->spin = igt_spin_new(fd, .ahnd = w->ahnd);
+ priv->failure = NULL;
+ }
+}
+
+static void workload_stop(struct hotunplug *priv, struct gpu_workload *w)
+{
+ if (priv->chipset == DRIVER_XE || priv->chipset == DRIVER_INTEL) {
+ if (!w->spin)
+ return;
+
+ /*
+ * The device may be gone (unbind/unplug), so avoid
+ * igt_spin_free(): on Xe it would wait forever on a syncobj
+ * that never signals; on i915 it would touch the dead fd via
+ * gem_munmap()/gem_close(). Instead, end the spinner via a
+ * userspace mmap write and let the DRM fd close reclaim the
+ * kernel-side resources.
+ */
+ local_debug("%s\n", "stopping GPU spinner");
+ igt_spin_end(w->spin);
+ put_ahnd(w->ahnd);
+ w->spin = NULL;
+ w->ahnd = 0;
+ }
+}
+
/* Subtests */
static void unbind_rebind(struct hotunplug *priv)
@@ -679,6 +753,150 @@ static void hotreplug_lateclose(struct hotunplug *priv)
igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
}
+static void hotunbind_rebind_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot unbind");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ driver_unbind(priv, "hot ", 0);
+
+ workload_stop(priv, &w);
+
+ priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
+ igt_assert_eq(priv->fd.drm, -1);
+
+ driver_bind(priv, 0);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotunplug_rescan_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot unplug");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ device_unplug(priv, "hot ", 0);
+
+ workload_stop(priv, &w);
+
+ priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
+ igt_assert_eq(priv->fd.drm, -1);
+
+ bus_rescan(priv, 0);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotrebind_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ driver_unbind(priv, "hot ", 60);
+
+ driver_bind(priv, 0);
+
+ workload_stop(priv, &w);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotreplug_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ device_unplug(priv, "hot ", 60);
+
+ bus_rescan(priv, 0);
+
+ workload_stop(priv, &w);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotrebind_lateclose_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ driver_unbind(priv, "hot ", 60);
+
+ driver_bind(priv, 0);
+
+ workload_stop(priv, &w);
+
+ priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
+ igt_assert_eq(priv->fd.drm, -1);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotreplug_lateclose_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ device_unplug(priv, "hot ", 60);
+
+ bus_rescan(priv, 0);
+
+ workload_stop(priv, &w);
+
+ priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
+ igt_assert_eq(priv->fd.drm, -1);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
/* Main */
int igt_main()
@@ -817,6 +1035,78 @@ int igt_main()
recover(&priv);
}
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if the driver can be cleanly unbound from an open device with a background GPU workload in flight, then released and rebound");
+ igt_subtest("hotunbind-rebind-with-load")
+ hotunbind_rebind_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if an open device with a background GPU workload in flight can be cleanly unplugged, then released and restored");
+ igt_subtest("hotunplug-rescan-with-load")
+ hotunplug_rescan_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if the driver can be cleanly rebound to a device with a still open hot unbound driver instance while a background GPU workload is in flight");
+ igt_subtest("hotrebind-with-load")
+ hotrebind_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if a hot unplugged and still open device can be cleanly restored while a background GPU workload is in flight");
+ igt_subtest("hotreplug-with-load")
+ hotreplug_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if a hot unbound driver instance still open after hot rebind with a background GPU workload in flight can be cleanly released");
+ igt_subtest("hotrebind-lateclose-with-load")
+ hotrebind_lateclose_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if an instance of a still open while hot replugged device with a background GPU workload in flight can be cleanly released");
+ igt_subtest("hotreplug-lateclose-with-load")
+ hotreplug_lateclose_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
igt_fixture() {
post_healthcheck(&priv);
--
2.50.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* Re: [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug
2026-05-18 12:01 Nitin Gote
@ 2026-05-18 12:53 ` Janusz Krzysztofik
0 siblings, 0 replies; 13+ messages in thread
From: Janusz Krzysztofik @ 2026-05-18 12:53 UTC (permalink / raw)
To: Nitin Gote, igt-dev, kamil.konieczny; +Cc: matthew.auld
Hi Nitin,
On Mon, 2026-05-18 at 17:31 +0530, Nitin Gote wrote:
> The six fd-holding hot* subtests keep a DRM fd open across unbind/unplug
> but leave the GPU idle, so the kernel hotplug path is never exercised
> against an active VM, exec queue and BOs.
>
> Add six new dedicated *-with-load subtests that run a GPU spinner across
> the unbind/unplug sequence so the device is removed while a workload is
> actively using it.
>
> The workload helpers use an explicit chipset dispatch block in
> workload_start()/stop() so that other vendors can contribute
> support by adding an else-if branch. New subtests are gated on
> workload_available(), which currently covers DRIVER_XE and DRIVER_INTEL,
> and returns false (SKIP) on any other driver.
>
> igt_spin_free() is avoided in workload_stop() since the device may be
> gone by then — igt_spin_end() writes the stop condition via a userspace
> mmap and lets the DRM fd close reclaim kernel-side resources.
>
> Validated on BMG and DG2 with a KASAN-enabled kernel:
> all six new subtests pass with no KASAN reports.
>
> v2: Pass the hotunplug priv struct to workload_start()/stop()
> and dispatch via an explicit if/else-if chipset block to invite
> other vendors to contribute. (Janusz)
>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Assisted-by: Copilot:claude-opus-4.7
> Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
> ---
> tests/core_hotunplug.c | 290 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 290 insertions(+)
>
> diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
> index 7c9dae1bf..38dcbb97d 100644
> --- a/tests/core_hotunplug.c
> +++ b/tests/core_hotunplug.c
> @@ -80,6 +80,34 @@
> * SUBTEST: unplug-rescan
> * Description: Check if a device believed to be closed can be cleanly
> * unplugged, then restored
> + *
> + * SUBTEST: hotunbind-rebind-with-load
> + * Description: Check if the driver can be cleanly unbound from an open device
> + * with a background GPU workload in flight, then released and
> + * rebound
> + *
> + * SUBTEST: hotunplug-rescan-with-load
> + * Description: Check if an open device with a background GPU workload in
> + * flight can be cleanly unplugged, then released and restored
> + *
> + * SUBTEST: hotrebind-with-load
> + * Description: Check if the driver can be cleanly rebound to a device with a
> + * still open hot unbound driver instance while a background GPU
> + * workload is in flight
> + *
> + * SUBTEST: hotreplug-with-load
> + * Description: Check if a hot unplugged and still open device can be cleanly
> + * restored while a background GPU workload is in flight
> + *
> + * SUBTEST: hotrebind-lateclose-with-load
> + * Description: Check if a hot unbound driver instance still open after hot
> + * rebind with a background GPU workload in flight can be cleanly
> + * released
> + *
> + * SUBTEST: hotreplug-lateclose-with-load
> + * Description: Check if an instance of a still open while hot replugged
> + * device with a background GPU workload in flight can be cleanly
> + * released
> */
>
> IGT_TEST_DESCRIPTION("Examine behavior of a driver on device hot unplug");
> @@ -565,6 +593,52 @@ static void set_filter_from_device(int fd)
> igt_assert_eq(igt_device_filter_add(filter), 1);
> }
>
> +/* GPU workload helpers */
> +
> +struct gpu_workload {
> + igt_spin_t *spin;
> + uint64_t ahnd;
> +};
Sorry for not touching this before when asking you to make room for other
vendors in functions, but now as we have that in place, I think it would
be good to have the same also for data. A union maybe, with its members
named after vendors?
Thanks,
Janusz
> +
> +static bool workload_available(int chipset)
> +{
> + return chipset == DRIVER_XE || chipset == DRIVER_INTEL;
> +}
> +
> +static void workload_start(struct hotunplug *priv, int fd,
> + struct gpu_workload *w)
> +{
> + if (priv->chipset == DRIVER_XE || priv->chipset == DRIVER_INTEL) {
> + local_debug("%s\n", "starting GPU spinner");
> + priv->failure = "GPU workload start failure!";
> + w->ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
> + w->spin = igt_spin_new(fd, .ahnd = w->ahnd);
> + priv->failure = NULL;
> + }
> +}
> +
> +static void workload_stop(struct hotunplug *priv, struct gpu_workload *w)
> +{
> + if (priv->chipset == DRIVER_XE || priv->chipset == DRIVER_INTEL) {
> + if (!w->spin)
> + return;
> +
> + /*
> + * The device may be gone (unbind/unplug), so avoid
> + * igt_spin_free(): on Xe it would wait forever on a syncobj
> + * that never signals; on i915 it would touch the dead fd via
> + * gem_munmap()/gem_close(). Instead, end the spinner via a
> + * userspace mmap write and let the DRM fd close reclaim the
> + * kernel-side resources.
> + */
> + local_debug("%s\n", "stopping GPU spinner");
> + igt_spin_end(w->spin);
> + put_ahnd(w->ahnd);
> + w->spin = NULL;
> + w->ahnd = 0;
> + }
> +}
> +
> /* Subtests */
>
> static void unbind_rebind(struct hotunplug *priv)
> @@ -679,6 +753,150 @@ static void hotreplug_lateclose(struct hotunplug *priv)
> igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> }
>
> +static void hotunbind_rebind_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot unbind");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + driver_unbind(priv, "hot ", 0);
> +
> + workload_stop(priv, &w);
> +
> + priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
> + igt_assert_eq(priv->fd.drm, -1);
> +
> + driver_bind(priv, 0);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotunplug_rescan_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot unplug");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + device_unplug(priv, "hot ", 0);
> +
> + workload_stop(priv, &w);
> +
> + priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
> + igt_assert_eq(priv->fd.drm, -1);
> +
> + bus_rescan(priv, 0);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotrebind_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + driver_unbind(priv, "hot ", 60);
> +
> + driver_bind(priv, 0);
> +
> + workload_stop(priv, &w);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotreplug_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + device_unplug(priv, "hot ", 60);
> +
> + bus_rescan(priv, 0);
> +
> + workload_stop(priv, &w);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotrebind_lateclose_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + driver_unbind(priv, "hot ", 60);
> +
> + driver_bind(priv, 0);
> +
> + workload_stop(priv, &w);
> +
> + priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
> + igt_assert_eq(priv->fd.drm, -1);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotreplug_lateclose_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + device_unplug(priv, "hot ", 60);
> +
> + bus_rescan(priv, 0);
> +
> + workload_stop(priv, &w);
> +
> + priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
> + igt_assert_eq(priv->fd.drm, -1);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> /* Main */
>
> int igt_main()
> @@ -817,6 +1035,78 @@ int igt_main()
> recover(&priv);
> }
>
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if the driver can be cleanly unbound from an open device with a background GPU workload in flight, then released and rebound");
> + igt_subtest("hotunbind-rebind-with-load")
> + hotunbind_rebind_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if an open device with a background GPU workload in flight can be cleanly unplugged, then released and restored");
> + igt_subtest("hotunplug-rescan-with-load")
> + hotunplug_rescan_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if the driver can be cleanly rebound to a device with a still open hot unbound driver instance while a background GPU workload is in flight");
> + igt_subtest("hotrebind-with-load")
> + hotrebind_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if a hot unplugged and still open device can be cleanly restored while a background GPU workload is in flight");
> + igt_subtest("hotreplug-with-load")
> + hotreplug_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if a hot unbound driver instance still open after hot rebind with a background GPU workload in flight can be cleanly released");
> + igt_subtest("hotrebind-lateclose-with-load")
> + hotrebind_lateclose_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if an instance of a still open while hot replugged device with a background GPU workload in flight can be cleanly released");
> + igt_subtest("hotreplug-lateclose-with-load")
> + hotreplug_lateclose_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> igt_fixture() {
> post_healthcheck(&priv);
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug
@ 2026-05-18 8:27 Nitin Gote
2026-05-18 8:48 ` Janusz Krzysztofik
0 siblings, 1 reply; 13+ messages in thread
From: Nitin Gote @ 2026-05-18 8:27 UTC (permalink / raw)
To: igt-dev, janusz.krzysztofik, kamil.konieczny; +Cc: matthew.auld, nitin.r.gote
The six fd-holding hot* subtests keep a DRM fd open across unbind/unplug
but leave the GPU idle, so the kernel hotplug path is never exercised
against an active VM, exec queue and BOs.
Add six new dedicated *-with-load subtests that run a GPU spinner across
the unbind/unplug sequence so the device is removed while a workload is
actively using it.
The workload helpers are driver-agnostic: igt_spin_new() dispatches
transparently for both Xe and i915. New subtests are gated on
workload_available(), which covers DRIVER_XE and DRIVER_INTEL, and
returns false (SKIP) on any other driver.
igt_spin_free() is avoided in workload_stop() since the device may be
gone by then — igt_spin_end() writes the stop condition via a userspace
mmap and lets the DRM fd close reclaim kernel-side resources.
Validated on BMG and DG2 with a KASAN-enabled kernel:
all six new subtests pass with no KASAN reports.
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Assisted-by: Copilot:claude-opus-4.7
Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
---
Hi Janusz/Kamil,
I have introduced new subtests as per review comments in
https://patchwork.freedesktop.org/series/166056/
instead of modifying existing ones to avoid changing their scope.
Also used driver-agnostic helper names throughout.
Thanks,
Nitin
tests/core_hotunplug.c | 285 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 285 insertions(+)
diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
index 7c9dae1bf..85a96294e 100644
--- a/tests/core_hotunplug.c
+++ b/tests/core_hotunplug.c
@@ -80,6 +80,34 @@
* SUBTEST: unplug-rescan
* Description: Check if a device believed to be closed can be cleanly
* unplugged, then restored
+ *
+ * SUBTEST: hotunbind-rebind-with-load
+ * Description: Check if the driver can be cleanly unbound from an open device
+ * with a background GPU workload in flight, then released and
+ * rebound
+ *
+ * SUBTEST: hotunplug-rescan-with-load
+ * Description: Check if an open device with a background GPU workload in
+ * flight can be cleanly unplugged, then released and restored
+ *
+ * SUBTEST: hotrebind-with-load
+ * Description: Check if the driver can be cleanly rebound to a device with a
+ * still open hot unbound driver instance while a background GPU
+ * workload is in flight
+ *
+ * SUBTEST: hotreplug-with-load
+ * Description: Check if a hot unplugged and still open device can be cleanly
+ * restored while a background GPU workload is in flight
+ *
+ * SUBTEST: hotrebind-lateclose-with-load
+ * Description: Check if a hot unbound driver instance still open after hot
+ * rebind with a background GPU workload in flight can be cleanly
+ * released
+ *
+ * SUBTEST: hotreplug-lateclose-with-load
+ * Description: Check if an instance of a still open while hot replugged
+ * device with a background GPU workload in flight can be cleanly
+ * released
*/
IGT_TEST_DESCRIPTION("Examine behavior of a driver on device hot unplug");
@@ -565,6 +593,47 @@ static void set_filter_from_device(int fd)
igt_assert_eq(igt_device_filter_add(filter), 1);
}
+/* GPU workload helpers */
+
+struct gpu_workload {
+ igt_spin_t *spin;
+ uint64_t ahnd;
+};
+
+static bool workload_available(int chipset)
+{
+ return chipset == DRIVER_XE || chipset == DRIVER_INTEL;
+}
+
+static void workload_start(struct hotunplug *priv, int fd,
+ struct gpu_workload *w)
+{
+ local_debug("%s\n", "starting GPU spinner");
+ priv->failure = "GPU workload start failure!";
+ w->ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
+ w->spin = igt_spin_new(fd, .ahnd = w->ahnd);
+ priv->failure = NULL;
+}
+
+static void workload_stop(struct gpu_workload *w)
+{
+ if (!w->spin)
+ return;
+
+ /*
+ * The device may be gone (unbind/unplug), so avoid igt_spin_free():
+ * on Xe it would wait forever on a syncobj that never signals; on i915
+ * it would touch the dead fd via gem_munmap()/gem_close(). Instead, end
+ * the spinner via a userspace mmap write and let the DRM fd close
+ * reclaim the kernel-side resources.
+ */
+ local_debug("%s\n", "stopping GPU spinner");
+ igt_spin_end(w->spin);
+ put_ahnd(w->ahnd);
+ w->spin = NULL;
+ w->ahnd = 0;
+}
+
/* Subtests */
static void unbind_rebind(struct hotunplug *priv)
@@ -679,6 +748,150 @@ static void hotreplug_lateclose(struct hotunplug *priv)
igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
}
+static void hotunbind_rebind_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot unbind");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ driver_unbind(priv, "hot ", 0);
+
+ workload_stop(&w);
+
+ priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
+ igt_assert_eq(priv->fd.drm, -1);
+
+ driver_bind(priv, 0);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotunplug_rescan_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot unplug");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ device_unplug(priv, "hot ", 0);
+
+ workload_stop(&w);
+
+ priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
+ igt_assert_eq(priv->fd.drm, -1);
+
+ bus_rescan(priv, 0);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotrebind_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ driver_unbind(priv, "hot ", 60);
+
+ driver_bind(priv, 0);
+
+ workload_stop(&w);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotreplug_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ device_unplug(priv, "hot ", 60);
+
+ bus_rescan(priv, 0);
+
+ workload_stop(&w);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotrebind_lateclose_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ driver_unbind(priv, "hot ", 60);
+
+ driver_bind(priv, 0);
+
+ workload_stop(&w);
+
+ priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
+ igt_assert_eq(priv->fd.drm, -1);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
+static void hotreplug_lateclose_with_load(struct hotunplug *priv)
+{
+ struct gpu_workload w = { 0 };
+
+ pre_check(priv);
+
+ igt_require_f(workload_available(priv->chipset),
+ "No GPU workload support for this driver\n");
+
+ priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
+
+ workload_start(priv, priv->fd.drm, &w);
+
+ device_unplug(priv, "hot ", 60);
+
+ bus_rescan(priv, 0);
+
+ workload_stop(&w);
+
+ priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
+ igt_assert_eq(priv->fd.drm, -1);
+
+ igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
+}
+
/* Main */
int igt_main()
@@ -817,6 +1030,78 @@ int igt_main()
recover(&priv);
}
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if the driver can be cleanly unbound from an open device with a background GPU workload in flight, then released and rebound");
+ igt_subtest("hotunbind-rebind-with-load")
+ hotunbind_rebind_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if an open device with a background GPU workload in flight can be cleanly unplugged, then released and restored");
+ igt_subtest("hotunplug-rescan-with-load")
+ hotunplug_rescan_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if the driver can be cleanly rebound to a device with a still open hot unbound driver instance while a background GPU workload is in flight");
+ igt_subtest("hotrebind-with-load")
+ hotrebind_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if a hot unplugged and still open device can be cleanly restored while a background GPU workload is in flight");
+ igt_subtest("hotreplug-with-load")
+ hotreplug_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if a hot unbound driver instance still open after hot rebind with a background GPU workload in flight can be cleanly released");
+ igt_subtest("hotrebind-lateclose-with-load")
+ hotrebind_lateclose_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
+ igt_fixture()
+ post_healthcheck(&priv);
+
+ igt_subtest_group() {
+ igt_describe("Check if an instance of a still open while hot replugged device with a background GPU workload in flight can be cleanly released");
+ igt_subtest("hotreplug-lateclose-with-load")
+ hotreplug_lateclose_with_load(&priv);
+
+ igt_fixture()
+ recover(&priv);
+ }
+
igt_fixture() {
post_healthcheck(&priv);
--
2.50.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* Re: [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug
2026-05-18 8:27 Nitin Gote
@ 2026-05-18 8:48 ` Janusz Krzysztofik
2026-05-18 9:59 ` Gote, Nitin R
0 siblings, 1 reply; 13+ messages in thread
From: Janusz Krzysztofik @ 2026-05-18 8:48 UTC (permalink / raw)
To: Nitin Gote, igt-dev, kamil.konieczny; +Cc: matthew.auld
Hi Nitin,
On Mon, 2026-05-18 at 13:57 +0530, Nitin Gote wrote:
> The six fd-holding hot* subtests keep a DRM fd open across unbind/unplug
> but leave the GPU idle, so the kernel hotplug path is never exercised
> against an active VM, exec queue and BOs.
>
> Add six new dedicated *-with-load subtests that run a GPU spinner across
> the unbind/unplug sequence so the device is removed while a workload is
> actively using it.
>
> The workload helpers are driver-agnostic: igt_spin_new() dispatches
> transparently for both Xe and i915. New subtests are gated on
> workload_available(), which covers DRIVER_XE and DRIVER_INTEL, and
> returns false (SKIP) on any other driver.
While that's a good idea to skip early, I'd still pass the chipset argument
to workload_start/end() and process it with a case or if block that calls
vendor specific workload functions. That way we invite other vendors to
contribute to this test instead of creating their own implementations.
Thanks,
Janusz
>
> igt_spin_free() is avoided in workload_stop() since the device may be
> gone by then — igt_spin_end() writes the stop condition via a userspace
> mmap and lets the DRM fd close reclaim kernel-side resources.
>
> Validated on BMG and DG2 with a KASAN-enabled kernel:
> all six new subtests pass with no KASAN reports.
>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Assisted-by: Copilot:claude-opus-4.7
> Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
> ---
> Hi Janusz/Kamil,
> I have introduced new subtests as per review comments in
> https://patchwork.freedesktop.org/series/166056/
> instead of modifying existing ones to avoid changing their scope.
> Also used driver-agnostic helper names throughout.
>
> Thanks,
> Nitin
>
>
> tests/core_hotunplug.c | 285 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 285 insertions(+)
>
> diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
> index 7c9dae1bf..85a96294e 100644
> --- a/tests/core_hotunplug.c
> +++ b/tests/core_hotunplug.c
> @@ -80,6 +80,34 @@
> * SUBTEST: unplug-rescan
> * Description: Check if a device believed to be closed can be cleanly
> * unplugged, then restored
> + *
> + * SUBTEST: hotunbind-rebind-with-load
> + * Description: Check if the driver can be cleanly unbound from an open device
> + * with a background GPU workload in flight, then released and
> + * rebound
> + *
> + * SUBTEST: hotunplug-rescan-with-load
> + * Description: Check if an open device with a background GPU workload in
> + * flight can be cleanly unplugged, then released and restored
> + *
> + * SUBTEST: hotrebind-with-load
> + * Description: Check if the driver can be cleanly rebound to a device with a
> + * still open hot unbound driver instance while a background GPU
> + * workload is in flight
> + *
> + * SUBTEST: hotreplug-with-load
> + * Description: Check if a hot unplugged and still open device can be cleanly
> + * restored while a background GPU workload is in flight
> + *
> + * SUBTEST: hotrebind-lateclose-with-load
> + * Description: Check if a hot unbound driver instance still open after hot
> + * rebind with a background GPU workload in flight can be cleanly
> + * released
> + *
> + * SUBTEST: hotreplug-lateclose-with-load
> + * Description: Check if an instance of a still open while hot replugged
> + * device with a background GPU workload in flight can be cleanly
> + * released
> */
>
> IGT_TEST_DESCRIPTION("Examine behavior of a driver on device hot unplug");
> @@ -565,6 +593,47 @@ static void set_filter_from_device(int fd)
> igt_assert_eq(igt_device_filter_add(filter), 1);
> }
>
> +/* GPU workload helpers */
> +
> +struct gpu_workload {
> + igt_spin_t *spin;
> + uint64_t ahnd;
> +};
> +
> +static bool workload_available(int chipset)
> +{
> + return chipset == DRIVER_XE || chipset == DRIVER_INTEL;
> +}
> +
> +static void workload_start(struct hotunplug *priv, int fd,
> + struct gpu_workload *w)
> +{
> + local_debug("%s\n", "starting GPU spinner");
> + priv->failure = "GPU workload start failure!";
> + w->ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
> + w->spin = igt_spin_new(fd, .ahnd = w->ahnd);
> + priv->failure = NULL;
> +}
> +
> +static void workload_stop(struct gpu_workload *w)
> +{
> + if (!w->spin)
> + return;
> +
> + /*
> + * The device may be gone (unbind/unplug), so avoid igt_spin_free():
> + * on Xe it would wait forever on a syncobj that never signals; on i915
> + * it would touch the dead fd via gem_munmap()/gem_close(). Instead, end
> + * the spinner via a userspace mmap write and let the DRM fd close
> + * reclaim the kernel-side resources.
> + */
> + local_debug("%s\n", "stopping GPU spinner");
> + igt_spin_end(w->spin);
> + put_ahnd(w->ahnd);
> + w->spin = NULL;
> + w->ahnd = 0;
> +}
> +
> /* Subtests */
>
> static void unbind_rebind(struct hotunplug *priv)
> @@ -679,6 +748,150 @@ static void hotreplug_lateclose(struct hotunplug *priv)
> igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> }
>
> +static void hotunbind_rebind_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot unbind");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + driver_unbind(priv, "hot ", 0);
> +
> + workload_stop(&w);
> +
> + priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
> + igt_assert_eq(priv->fd.drm, -1);
> +
> + driver_bind(priv, 0);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotunplug_rescan_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot unplug");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + device_unplug(priv, "hot ", 0);
> +
> + workload_stop(&w);
> +
> + priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
> + igt_assert_eq(priv->fd.drm, -1);
> +
> + bus_rescan(priv, 0);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotrebind_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + driver_unbind(priv, "hot ", 60);
> +
> + driver_bind(priv, 0);
> +
> + workload_stop(&w);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotreplug_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + device_unplug(priv, "hot ", 60);
> +
> + bus_rescan(priv, 0);
> +
> + workload_stop(&w);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotrebind_lateclose_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + driver_unbind(priv, "hot ", 60);
> +
> + driver_bind(priv, 0);
> +
> + workload_stop(&w);
> +
> + priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
> + igt_assert_eq(priv->fd.drm, -1);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> +static void hotreplug_lateclose_with_load(struct hotunplug *priv)
> +{
> + struct gpu_workload w = { 0 };
> +
> + pre_check(priv);
> +
> + igt_require_f(workload_available(priv->chipset),
> + "No GPU workload support for this driver\n");
> +
> + priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
> +
> + workload_start(priv, priv->fd.drm, &w);
> +
> + device_unplug(priv, "hot ", 60);
> +
> + bus_rescan(priv, 0);
> +
> + workload_stop(&w);
> +
> + priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
> + igt_assert_eq(priv->fd.drm, -1);
> +
> + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure);
> +}
> +
> /* Main */
>
> int igt_main()
> @@ -817,6 +1030,78 @@ int igt_main()
> recover(&priv);
> }
>
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if the driver can be cleanly unbound from an open device with a background GPU workload in flight, then released and rebound");
> + igt_subtest("hotunbind-rebind-with-load")
> + hotunbind_rebind_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if an open device with a background GPU workload in flight can be cleanly unplugged, then released and restored");
> + igt_subtest("hotunplug-rescan-with-load")
> + hotunplug_rescan_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if the driver can be cleanly rebound to a device with a still open hot unbound driver instance while a background GPU workload is in flight");
> + igt_subtest("hotrebind-with-load")
> + hotrebind_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if a hot unplugged and still open device can be cleanly restored while a background GPU workload is in flight");
> + igt_subtest("hotreplug-with-load")
> + hotreplug_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if a hot unbound driver instance still open after hot rebind with a background GPU workload in flight can be cleanly released");
> + igt_subtest("hotrebind-lateclose-with-load")
> + hotrebind_lateclose_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> + igt_fixture()
> + post_healthcheck(&priv);
> +
> + igt_subtest_group() {
> + igt_describe("Check if an instance of a still open while hot replugged device with a background GPU workload in flight can be cleanly released");
> + igt_subtest("hotreplug-lateclose-with-load")
> + hotreplug_lateclose_with_load(&priv);
> +
> + igt_fixture()
> + recover(&priv);
> + }
> +
> igt_fixture() {
> post_healthcheck(&priv);
>
^ permalink raw reply [flat|nested] 13+ messages in thread* RE: [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug
2026-05-18 8:48 ` Janusz Krzysztofik
@ 2026-05-18 9:59 ` Gote, Nitin R
0 siblings, 0 replies; 13+ messages in thread
From: Gote, Nitin R @ 2026-05-18 9:59 UTC (permalink / raw)
To: Janusz Krzysztofik, igt-dev@lists.freedesktop.org,
kamil.konieczny@linux.intel.com
Cc: Auld, Matthew
Hi Janusz,
> -----Original Message-----
> From: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Sent: Monday, May 18, 2026 2:18 PM
> To: Gote, Nitin R <nitin.r.gote@intel.com>; igt-dev@lists.freedesktop.org;
> kamil.konieczny@linux.intel.com
> Cc: Auld, Matthew <matthew.auld@intel.com>
> Subject: Re: [PATCH] tests/core_hotunplug: add *-with-load subtests exercising
> GPU workload during hotplug
>
> Hi Nitin,
>
> On Mon, 2026-05-18 at 13:57 +0530, Nitin Gote wrote:
> > The six fd-holding hot* subtests keep a DRM fd open across
> > unbind/unplug but leave the GPU idle, so the kernel hotplug path is
> > never exercised against an active VM, exec queue and BOs.
> >
> > Add six new dedicated *-with-load subtests that run a GPU spinner
> > across the unbind/unplug sequence so the device is removed while a
> > workload is actively using it.
> >
> > The workload helpers are driver-agnostic: igt_spin_new() dispatches
> > transparently for both Xe and i915. New subtests are gated on
> > workload_available(), which covers DRIVER_XE and DRIVER_INTEL, and
> > returns false (SKIP) on any other driver.
>
> While that's a good idea to skip early, I'd still pass the chipset argument to
> workload_start/end() and process it with a case or if block that calls vendor
> specific workload functions. That way we invite other vendors to contribute to
> this test instead of creating their own implementations.
>
Good point. Thanks, will fix in new version.
- Nitin
> Thanks,
> Janusz
>
> >
> > igt_spin_free() is avoided in workload_stop() since the device may be
> > gone by then — igt_spin_end() writes the stop condition via a
> > userspace mmap and lets the DRM fd close reclaim kernel-side resources.
> >
> > Validated on BMG and DG2 with a KASAN-enabled kernel:
> > all six new subtests pass with no KASAN reports.
> >
> > Cc: Matthew Auld <matthew.auld@intel.com>
> > Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > Assisted-by: Copilot:claude-opus-4.7
> > Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
> > ---
> > Hi Janusz/Kamil,
> > I have introduced new subtests as per review comments in
> > https://patchwork.freedesktop.org/series/166056/
> > instead of modifying existing ones to avoid changing their scope.
> > Also used driver-agnostic helper names throughout.
> >
> > Thanks,
> > Nitin
> >
> >
> > tests/core_hotunplug.c | 285
> > +++++++++++++++++++++++++++++++++++++++++
> > 1 file changed, 285 insertions(+)
> >
> > diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c index
> > 7c9dae1bf..85a96294e 100644
> > --- a/tests/core_hotunplug.c
> > +++ b/tests/core_hotunplug.c
> > @@ -80,6 +80,34 @@
> > * SUBTEST: unplug-rescan
> > * Description: Check if a device believed to be closed can be cleanly
> > * unplugged, then restored
> > + *
> > + * SUBTEST: hotunbind-rebind-with-load
> > + * Description: Check if the driver can be cleanly unbound from an open device
> > + * with a background GPU workload in flight, then released and
> > + * rebound
> > + *
> > + * SUBTEST: hotunplug-rescan-with-load
> > + * Description: Check if an open device with a background GPU workload in
> > + * flight can be cleanly unplugged, then released and restored
> > + *
> > + * SUBTEST: hotrebind-with-load
> > + * Description: Check if the driver can be cleanly rebound to a device with a
> > + * still open hot unbound driver instance while a background GPU
> > + * workload is in flight
> > + *
> > + * SUBTEST: hotreplug-with-load
> > + * Description: Check if a hot unplugged and still open device can be cleanly
> > + * restored while a background GPU workload is in flight
> > + *
> > + * SUBTEST: hotrebind-lateclose-with-load
> > + * Description: Check if a hot unbound driver instance still open after hot
> > + * rebind with a background GPU workload in flight can be cleanly
> > + * released
> > + *
> > + * SUBTEST: hotreplug-lateclose-with-load
> > + * Description: Check if an instance of a still open while hot replugged
> > + * device with a background GPU workload in flight can be cleanly
> > + * released
> > */
> >
> > IGT_TEST_DESCRIPTION("Examine behavior of a driver on device hot
> > unplug"); @@ -565,6 +593,47 @@ static void set_filter_from_device(int fd)
> > igt_assert_eq(igt_device_filter_add(filter), 1); }
> >
> > +/* GPU workload helpers */
> > +
> > +struct gpu_workload {
> > + igt_spin_t *spin;
> > + uint64_t ahnd;
> > +};
> > +
> > +static bool workload_available(int chipset) {
> > + return chipset == DRIVER_XE || chipset == DRIVER_INTEL; }
> > +
> > +static void workload_start(struct hotunplug *priv, int fd,
> > + struct gpu_workload *w)
> > +{
> > + local_debug("%s\n", "starting GPU spinner");
> > + priv->failure = "GPU workload start failure!";
> > + w->ahnd = intel_allocator_open(fd, 0, INTEL_ALLOCATOR_RELOC);
> > + w->spin = igt_spin_new(fd, .ahnd = w->ahnd);
> > + priv->failure = NULL;
> > +}
> > +
> > +static void workload_stop(struct gpu_workload *w) {
> > + if (!w->spin)
> > + return;
> > +
> > + /*
> > + * The device may be gone (unbind/unplug), so avoid igt_spin_free():
> > + * on Xe it would wait forever on a syncobj that never signals; on i915
> > + * it would touch the dead fd via gem_munmap()/gem_close(). Instead,
> end
> > + * the spinner via a userspace mmap write and let the DRM fd close
> > + * reclaim the kernel-side resources.
> > + */
> > + local_debug("%s\n", "stopping GPU spinner");
> > + igt_spin_end(w->spin);
> > + put_ahnd(w->ahnd);
> > + w->spin = NULL;
> > + w->ahnd = 0;
> > +}
> > +
> > /* Subtests */
> >
> > static void unbind_rebind(struct hotunplug *priv) @@ -679,6 +748,150
> > @@ static void hotreplug_lateclose(struct hotunplug *priv)
> > igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure); }
> >
> > +static void hotunbind_rebind_with_load(struct hotunplug *priv) {
> > + struct gpu_workload w = { 0 };
> > +
> > + pre_check(priv);
> > +
> > + igt_require_f(workload_available(priv->chipset),
> > + "No GPU workload support for this driver\n");
> > +
> > + priv->fd.drm = local_drm_open_driver(false, "", " for hot unbind");
> > +
> > + workload_start(priv, priv->fd.drm, &w);
> > +
> > + driver_unbind(priv, "hot ", 0);
> > +
> > + workload_stop(&w);
> > +
> > + priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
> > + igt_assert_eq(priv->fd.drm, -1);
> > +
> > + driver_bind(priv, 0);
> > +
> > + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure); }
> > +
> > +static void hotunplug_rescan_with_load(struct hotunplug *priv) {
> > + struct gpu_workload w = { 0 };
> > +
> > + pre_check(priv);
> > +
> > + igt_require_f(workload_available(priv->chipset),
> > + "No GPU workload support for this driver\n");
> > +
> > + priv->fd.drm = local_drm_open_driver(false, "", " for hot unplug");
> > +
> > + workload_start(priv, priv->fd.drm, &w);
> > +
> > + device_unplug(priv, "hot ", 0);
> > +
> > + workload_stop(&w);
> > +
> > + priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
> > + igt_assert_eq(priv->fd.drm, -1);
> > +
> > + bus_rescan(priv, 0);
> > +
> > + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure); }
> > +
> > +static void hotrebind_with_load(struct hotunplug *priv) {
> > + struct gpu_workload w = { 0 };
> > +
> > + pre_check(priv);
> > +
> > + igt_require_f(workload_available(priv->chipset),
> > + "No GPU workload support for this driver\n");
> > +
> > + priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
> > +
> > + workload_start(priv, priv->fd.drm, &w);
> > +
> > + driver_unbind(priv, "hot ", 60);
> > +
> > + driver_bind(priv, 0);
> > +
> > + workload_stop(&w);
> > +
> > + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure); }
> > +
> > +static void hotreplug_with_load(struct hotunplug *priv) {
> > + struct gpu_workload w = { 0 };
> > +
> > + pre_check(priv);
> > +
> > + igt_require_f(workload_available(priv->chipset),
> > + "No GPU workload support for this driver\n");
> > +
> > + priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
> > +
> > + workload_start(priv, priv->fd.drm, &w);
> > +
> > + device_unplug(priv, "hot ", 60);
> > +
> > + bus_rescan(priv, 0);
> > +
> > + workload_stop(&w);
> > +
> > + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure); }
> > +
> > +static void hotrebind_lateclose_with_load(struct hotunplug *priv) {
> > + struct gpu_workload w = { 0 };
> > +
> > + pre_check(priv);
> > +
> > + igt_require_f(workload_available(priv->chipset),
> > + "No GPU workload support for this driver\n");
> > +
> > + priv->fd.drm = local_drm_open_driver(false, "", " for hot rebind");
> > +
> > + workload_start(priv, priv->fd.drm, &w);
> > +
> > + driver_unbind(priv, "hot ", 60);
> > +
> > + driver_bind(priv, 0);
> > +
> > + workload_stop(&w);
> > +
> > + priv->fd.drm = close_device(priv->fd.drm, "late ", "unbound ");
> > + igt_assert_eq(priv->fd.drm, -1);
> > +
> > + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure); }
> > +
> > +static void hotreplug_lateclose_with_load(struct hotunplug *priv) {
> > + struct gpu_workload w = { 0 };
> > +
> > + pre_check(priv);
> > +
> > + igt_require_f(workload_available(priv->chipset),
> > + "No GPU workload support for this driver\n");
> > +
> > + priv->fd.drm = local_drm_open_driver(false, "", " for hot replug");
> > +
> > + workload_start(priv, priv->fd.drm, &w);
> > +
> > + device_unplug(priv, "hot ", 60);
> > +
> > + bus_rescan(priv, 0);
> > +
> > + workload_stop(&w);
> > +
> > + priv->fd.drm = close_device(priv->fd.drm, "late ", "removed ");
> > + igt_assert_eq(priv->fd.drm, -1);
> > +
> > + igt_assert_f(healthcheck(priv, false), "%s\n", priv->failure); }
> > +
> > /* Main */
> >
> > int igt_main()
> > @@ -817,6 +1030,78 @@ int igt_main()
> > recover(&priv);
> > }
> >
> > + igt_fixture()
> > + post_healthcheck(&priv);
> > +
> > + igt_subtest_group() {
> > + igt_describe("Check if the driver can be cleanly unbound from an
> open device with a background GPU workload in flight, then released and
> rebound");
> > + igt_subtest("hotunbind-rebind-with-load")
> > + hotunbind_rebind_with_load(&priv);
> > +
> > + igt_fixture()
> > + recover(&priv);
> > + }
> > +
> > + igt_fixture()
> > + post_healthcheck(&priv);
> > +
> > + igt_subtest_group() {
> > + igt_describe("Check if an open device with a background GPU
> workload in flight can be cleanly unplugged, then released and restored");
> > + igt_subtest("hotunplug-rescan-with-load")
> > + hotunplug_rescan_with_load(&priv);
> > +
> > + igt_fixture()
> > + recover(&priv);
> > + }
> > +
> > + igt_fixture()
> > + post_healthcheck(&priv);
> > +
> > + igt_subtest_group() {
> > + igt_describe("Check if the driver can be cleanly rebound to a
> device with a still open hot unbound driver instance while a background GPU
> workload is in flight");
> > + igt_subtest("hotrebind-with-load")
> > + hotrebind_with_load(&priv);
> > +
> > + igt_fixture()
> > + recover(&priv);
> > + }
> > +
> > + igt_fixture()
> > + post_healthcheck(&priv);
> > +
> > + igt_subtest_group() {
> > + igt_describe("Check if a hot unplugged and still open device can
> be cleanly restored while a background GPU workload is in flight");
> > + igt_subtest("hotreplug-with-load")
> > + hotreplug_with_load(&priv);
> > +
> > + igt_fixture()
> > + recover(&priv);
> > + }
> > +
> > + igt_fixture()
> > + post_healthcheck(&priv);
> > +
> > + igt_subtest_group() {
> > + igt_describe("Check if a hot unbound driver instance still open
> after hot rebind with a background GPU workload in flight can be cleanly
> released");
> > + igt_subtest("hotrebind-lateclose-with-load")
> > + hotrebind_lateclose_with_load(&priv);
> > +
> > + igt_fixture()
> > + recover(&priv);
> > + }
> > +
> > + igt_fixture()
> > + post_healthcheck(&priv);
> > +
> > + igt_subtest_group() {
> > + igt_describe("Check if an instance of a still open while hot
> replugged device with a background GPU workload in flight can be cleanly
> released");
> > + igt_subtest("hotreplug-lateclose-with-load")
> > + hotreplug_lateclose_with_load(&priv);
> > +
> > + igt_fixture()
> > + recover(&priv);
> > + }
> > +
> > igt_fixture() {
> > post_healthcheck(&priv);
> >
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2026-05-21 13:03 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-18 15:48 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
2026-05-19 1:39 ` ✓ Xe.CI.BAT: success for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev3) Patchwork
2026-05-19 1:48 ` ✓ i915.CI.BAT: " Patchwork
2026-05-19 10:10 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-05-21 13:02 ` Gote, Nitin R
2026-05-19 21:47 ` ✗ i915.CI.Full: " Patchwork
2026-05-20 13:38 ` [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Janusz Krzysztofik
2026-05-21 12:46 ` Kamil Konieczny
-- strict thread matches above, loose matches on Subject: below --
2026-05-18 12:01 Nitin Gote
2026-05-18 12:53 ` Janusz Krzysztofik
2026-05-18 8:27 Nitin Gote
2026-05-18 8:48 ` Janusz Krzysztofik
2026-05-18 9:59 ` Gote, Nitin R
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox