* [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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ messages in thread
* [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug
@ 2026-05-18 15:48 Nitin Gote
2026-05-20 13:38 ` Janusz Krzysztofik
2026-05-21 12:46 ` Kamil Konieczny
0 siblings, 2 replies; 14+ 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] 14+ 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
@ 2026-05-20 13:38 ` Janusz Krzysztofik
2026-05-21 12:46 ` Kamil Konieczny
1 sibling, 0 replies; 14+ 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] 14+ 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
2026-05-20 13:38 ` Janusz Krzysztofik
@ 2026-05-21 12:46 ` Kamil Konieczny
1 sibling, 0 replies; 14+ 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] 14+ messages in thread
* [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug
@ 2026-08-21 6:58 Nitin Gote
2026-08-21 7:40 ` ✓ Xe.CI.BAT: success for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6) Patchwork
` (4 more replies)
0 siblings, 5 replies; 14+ messages in thread
From: Nitin Gote @ 2026-08-21 6:58 UTC (permalink / raw)
To: igt-dev; +Cc: Nitin Gote, Matthew Auld, Janusz Krzysztofik, Kamil Konieczny
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.
v4: Rebase to latest igt.
Also the failure seen with the new core_hotunplug "with-load"
IGT subtests is fixed by kmd patch:
https://patchwork.freedesktop.org/series/171989/
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>
Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
---
tests/core_hotunplug.c | 294 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 294 insertions(+)
diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
index 33de65369..b11a4231b 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");
@@ -550,6 +578,56 @@ static void post_healthcheck(struct hotunplug *priv)
cleanup(priv);
}
+/* 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)
@@ -664,6 +742,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()
@@ -802,6 +1024,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] 14+ messages in thread
* ✓ Xe.CI.BAT: success for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6)
2026-08-21 6:58 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
@ 2026-08-21 7:40 ` Patchwork
2026-08-21 8:13 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-08-21 7:40 UTC (permalink / raw)
To: Nitin Gote; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 822 bytes --]
== Series Details ==
Series: tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6)
URL : https://patchwork.freedesktop.org/series/166744/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9067_BAT -> XEIGTPW_15717_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_9067 -> IGTPW_15717
IGTPW_15717: 15717
IGT_9067: 9067
xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012: 75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/index.html
[-- Attachment #2: Type: text/html, Size: 1367 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ i915.CI.BAT: success for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6)
2026-08-21 6:58 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
2026-08-21 7:40 ` ✓ Xe.CI.BAT: success for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6) Patchwork
@ 2026-08-21 8:13 ` Patchwork
2026-08-21 8:43 ` ✓ Xe.CI.FULL: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-08-21 8:13 UTC (permalink / raw)
To: Nitin Gote; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1468 bytes --]
== Series Details ==
Series: tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6)
URL : https://patchwork.freedesktop.org/series/166744/
State : success
== Summary ==
CI Bug Log - changes from IGT_9067 -> IGTPW_15717
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/index.html
Participating hosts (40 -> 38)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15717 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [PASS][1] -> [FAIL][2] ([i915#16664])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[i915#16664]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16664
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9067 -> IGTPW_15717
CI-20190529: 20190529
CI_DRM_19027: 75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15717: 15717
IGT_9067: 9067
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/index.html
[-- Attachment #2: Type: text/html, Size: 2054 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Xe.CI.FULL: success for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6)
2026-08-21 6:58 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
2026-08-21 7:40 ` ✓ Xe.CI.BAT: success for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6) Patchwork
2026-08-21 8:13 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-08-21 8:43 ` Patchwork
2026-08-21 9:43 ` [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Janusz Krzysztofik
2026-08-21 11:03 ` ✗ i915.CI.Full: failure for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6) Patchwork
4 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-08-21 8:43 UTC (permalink / raw)
To: Nitin Gote; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 28609 bytes --]
== Series Details ==
Series: tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6)
URL : https://patchwork.freedesktop.org/series/166744/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9067_FULL -> XEIGTPW_15717_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between XEIGT_9067_FULL and XEIGTPW_15717_FULL:
### New IGT tests (6) ###
* igt@core_hotunplug@hotrebind-lateclose-with-load:
- Statuses : 2 pass(s)
- Exec time: [8.38, 8.92] s
* igt@core_hotunplug@hotrebind-with-load:
- Statuses : 2 pass(s)
- Exec time: [8.38, 9.12] s
* igt@core_hotunplug@hotreplug-lateclose-with-load:
- Statuses : 2 pass(s)
- Exec time: [8.70, 9.15] s
* igt@core_hotunplug@hotreplug-with-load:
- Statuses : 2 pass(s)
- Exec time: [8.79, 9.38] s
* igt@core_hotunplug@hotunbind-rebind-with-load:
- Statuses : 2 pass(s)
- Exec time: [8.60, 8.74] s
* igt@core_hotunplug@hotunplug-rescan-with-load:
- Statuses : 2 pass(s)
- Exec time: [8.97, 9.48] s
Known issues
------------
Here are the changes found in XEIGTPW_15717_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [PASS][1] -> [FAIL][2] ([Intel XE#3718] / [Intel XE#6078])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9067/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2:
- shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#6078])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9067/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +4 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#607] / [Intel XE#7361])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#610] / [Intel XE#7387])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +9 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#7679])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +13 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-1/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2652]) +26 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#3432])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#7358]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-7/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2252]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#6974])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#7642])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-2/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][18] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-10/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2320]) +6 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2321] / [Intel XE#7355])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][21] -> [FAIL][22] ([Intel XE#7571])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9067/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2286] / [Intel XE#6035]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#1508])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-with-output-formats-bigjoiner:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#8265]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#4422] / [Intel XE#7442])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2374] / [Intel XE#6127])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-4/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [PASS][28] -> [FAIL][29] ([Intel XE#3098]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9067/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#301])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9067/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7178] / [Intel XE#7349]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2311]) +54 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4141]) +14 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2313]) +56 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-9/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7061]) +5 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-1/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7308])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#6901])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2486])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7283]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#8303]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-9/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2393])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-5/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-3/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#8399])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9067/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2499])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#1489]) +7 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2387] / [Intel XE#7429]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-8/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#3904] / [Intel XE#7342])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-6/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2413])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_sharpness_filter@invalid-plane-with-filter:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6503])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-8/igt@kms_sharpness_filter@invalid-plane-with-filter.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1499])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-3/igt@kms_vrr@flip-basic.html
* igt@sriov_basic@pf-unbind-with-vfs-enabled-numvfs-all:
- shard-bmg: NOTRUN -> [ABORT][57] ([Intel XE#8868])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-9/igt@sriov_basic@pf-unbind-with-vfs-enabled-numvfs-all.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [INCOMPLETE][58] ([Intel XE#6321] / [Intel XE#8355])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#8370]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2322] / [Intel XE#7372]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#8374]) +12 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#8364]) +26 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_reset@cm-multi-queue-close-execqueues:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#8369]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-7/igt@xe_exec_reset@cm-multi-queue-close-execqueues.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#8378]) +10 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-basic:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#6964]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-1/igt@xe_multigpu_svm@mgpu-concurrent-access-basic.html
* igt@xe_page_reclaim@pat-index-xd:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#7793]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-6/igt@xe_page_reclaim@pat-index-xd.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1420] / [Intel XE#7590])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-8/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-2/igt@xe_pm@d3cold-mocs.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#944]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [PASS][71] -> [FAIL][72] ([Intel XE#6569])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9067/shard-bmg-2/igt@xe_sriov_flr@flr-each-isolation.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-9/igt@xe_sriov_flr@flr-each-isolation.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][73] ([Intel XE#8583]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9067/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-2/igt@intel_hwmon@hwmon-write.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][75] ([Intel XE#8399]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9067/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
* igt@xe_module_load@reload:
- shard-bmg: [ABORT][77] ([Intel XE#8007]) -> [PASS][78] +1 other test pass
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9067/shard-bmg-10/igt@xe_module_load@reload.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-bmg-2/igt@xe_module_load@reload.html
* igt@xe_pmu@engine-activity-accuracy-50:
- shard-lnl: [FAIL][79] ([Intel XE#8555]) -> [PASS][80] +1 other test pass
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9067/shard-lnl-7/igt@xe_pmu@engine-activity-accuracy-50.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-50.html
#### Warnings ####
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-lnl: [SKIP][81] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][82] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9067/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[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#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[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#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#8555]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8555
[Intel XE#8583]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8583
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#8868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8868
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_9067 -> IGTPW_15717
IGTPW_15717: 15717
IGT_9067: 9067
xe-5628-75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012: 75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15717/index.html
[-- Attachment #2: Type: text/html, Size: 31152 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug
2026-08-21 6:58 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
` (2 preceding siblings ...)
2026-08-21 8:43 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-08-21 9:43 ` Janusz Krzysztofik
2026-08-21 11:03 ` ✗ i915.CI.Full: failure for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6) Patchwork
4 siblings, 0 replies; 14+ messages in thread
From: Janusz Krzysztofik @ 2026-08-21 9:43 UTC (permalink / raw)
To: Nitin Gote, igt-dev; +Cc: Matthew Auld, Kamil Konieczny
Hi Nitin,
Good job, however, I think we still need some improvements.
On Fri, 2026-08-21 at 12:28 +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.
>
> v4: Rebase to latest igt.
> Also the failure seen with the new core_hotunplug "with-load"
> IGT subtests is fixed by kmd patch:
> https://patchwork.freedesktop.org/series/171989/
>
> 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>
> Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
> ---
> tests/core_hotunplug.c | 294 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 294 insertions(+)
>
> diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
> index 33de65369..b11a4231b 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");
> @@ -550,6 +578,56 @@ static void post_healthcheck(struct hotunplug *priv)
> cleanup(priv);
> }
>
> +/* 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;
NIT: I think a switch (chipset) { case DRIVER_XE: ... } construct, here
and consequently below in workload_start/stop, could be more effective and
more easily extendable with potential future additions from other vendors,
but that can be refactored later, on a first such addition.
> +}
> +
> +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;
Since igt_fail() can be called from inside igt_spin_new(), workload_start()
can fail leaving an open ahnd but no spin. We need to handle that case.
> +
> + /*
> + * 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)
> @@ -664,6 +742,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);
Since igt_fail() can be called from driver_unbind(), as well as from other
functions called between workload_start() and workload_stop() in other
subtests below, we need to address those cases to be on the safe side.
We could e.g.:
- embed struct gpu_workload inside struct hotunplug,
- extend cleanup() (or recover()) function with another workload_stop().
Thanks,
Janusz
> +
> + 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()
> @@ -802,6 +1024,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] 14+ messages in thread
* ✗ i915.CI.Full: failure for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6)
2026-08-21 6:58 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
` (3 preceding siblings ...)
2026-08-21 9:43 ` [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Janusz Krzysztofik
@ 2026-08-21 11:03 ` Patchwork
4 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2026-08-21 11:03 UTC (permalink / raw)
To: Nitin Gote; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 156437 bytes --]
== Series Details ==
Series: tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6)
URL : https://patchwork.freedesktop.org/series/166744/
State : failure
== Summary ==
CI Bug Log - changes from IGT_9067_full -> IGTPW_15717_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15717_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15717_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_15717/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_15717_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback:
- shard-tglu: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-8/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-7/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
* igt@kms_plane@pixel-format-linear-modifier@pipe-a-plane-7:
- shard-tglu: [PASS][3] -> [ABORT][4] +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-tglu-10/igt@kms_plane@pixel-format-linear-modifier@pipe-a-plane-7.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-4/igt@kms_plane@pixel-format-linear-modifier@pipe-a-plane-7.html
#### Warnings ####
* igt@gem_eio@kms:
- shard-dg1: [ABORT][5] ([i915#16837]) -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-17/igt@gem_eio@kms.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-13/igt@gem_eio@kms.html
Known issues
------------
Here are the changes found in IGTPW_15717_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-7/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#14544] / [i915#6230])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#6230])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-5/igt@api_intel_bb@crc32.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-3/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-7/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#9323]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#13356] / [i915#16348]) +1 other test incomplete
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-7/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#9323]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-14/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#7697])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#7697])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@gem_close_race@multigpu-basic-threads.html
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-2/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#6335])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#8562])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@engines-mixed:
- shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-snb5/igt@gem_ctx_persistence@engines-mixed.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-4/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][26] ([i915#8898]) +1 other test fail
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-snb1/igt@gem_eio@unwedge-stress.html
* igt@gem_eio@unwedge-stress@blt:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#15314])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-6/igt@gem_eio@unwedge-stress@blt.html
* igt@gem_exec_balancer@hog:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#4812])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-1/igt@gem_exec_balancer@hog.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#4812])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-13/igt@gem_exec_balancer@hog.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-4/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#4525])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#4525]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-7/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_big@single:
- shard-mtlp: [PASS][34] -> [FAIL][35] ([i915#15871])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-mtlp-3/igt@gem_exec_big@single.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-4/igt@gem_exec_big@single.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-3/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#3281]) +6 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#14544] / [i915#3281]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4537])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-2/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4860]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-none.html
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-glk: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk9/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-3/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#12193])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4565])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#284])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-1/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#284])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-7/igt@gem_media_vme.html
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#284])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-13/igt@gem_media_vme.html
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#284])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-6/igt@gem_media_vme.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#284])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-4/igt@gem_media_vme.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4077]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) +7 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-6/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-15/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@read-write:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4083]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-8/igt@gem_mmap_wc@read-write.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-5/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_partial_pwrite_pread@write:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#14544] / [i915#3282]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@gem_partial_pwrite_pread@write.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3282])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][67] ([i915#2658])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][68] ([i915#2658])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-8/igt@gem_pxp@display-protected-crc.html
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-16/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#13717] / [i915#14544])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#5190] / [i915#8428]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-8/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#8411])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3297]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate.html
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-5/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#3297])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-5/igt@gem_userptr_blits@readonly-unsync.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][82] +146 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-snb5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-3/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-4/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#14544] / [i915#2527])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-out:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-6/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@busy-hang@vcs0:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#14073]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-17/igt@i915_drm_fdinfo@busy-hang@vcs0.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#14118])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-1/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#15479]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-rkl: NOTRUN -> [ABORT][92] ([i915#15342]) +1 other test abort
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@reload-no-display:
- shard-dg1: [PASS][93] -> [DMESG-WARN][94] ([i915#13029] / [i915#14545])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-13/igt@i915_module_load@reload-no-display.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-18/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#8399])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-7/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#8399])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#16080] / [i915#16166])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#16080] / [i915#16166])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu-1: NOTRUN -> [WARN][99] ([i915#13790] / [i915#2681]) +1 other test warn
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][100] ([i915#13356])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk5/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#11681] / [i915#6621])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#11681])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-6/igt@i915_pm_rps@thresholds.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#16109])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-5/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_suspend@debugfs-reader:
- shard-glk11: NOTRUN -> [INCOMPLETE][104] ([i915#16182] / [i915#4817])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk11/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][105] ([i915#16182] / [i915#4817]) +1 other test incomplete
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk8/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#12454] / [i915#12712])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][107] ([i915#12761])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][108] ([i915#12761] / [i915#14995])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic@plane-invalid-params:
- shard-dg1: [PASS][109] -> [DMESG-WARN][110] ([i915#4423])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-13/igt@kms_atomic@plane-invalid-params.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-13/igt@kms_atomic@plane-invalid-params.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][112] ([i915#1769])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +7 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#5286]) +8 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-6/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#5286]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#3638]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-12/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#3828])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-9/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#3828])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-0:
- shard-mtlp: [PASS][122] -> [FAIL][123] ([i915#15733] / [i915#5138])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-mtlp-6/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-7/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][124] +7 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#3638]) +6 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][126] +13 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5190]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-17/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6187])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#12313]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#12313]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#12313])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#12313])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#6095]) +72 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][135] +588 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][137] +39 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk11/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6095]) +54 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +87 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#12805])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][141] ([i915#15582]) +1 other test incomplete
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#6095]) +34 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
- shard-glk: NOTRUN -> [INCOMPLETE][143] ([i915#14694] / [i915#15582]) +1 other test incomplete
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#14098] / [i915#14544] / [i915#6095]) +11 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#14544] / [i915#6095]) +14 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#6095]) +99 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#14098] / [i915#6095]) +52 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [SKIP][148] +106 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk10/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#6095]) +199 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#3742])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +9 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-2/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_audio@hdmi-audio-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#11151])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#11151])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-6/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html
* igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#16464] / [i915#16471]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-7/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#16471]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-3/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#16471])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#16471]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-16/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#16471]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-6/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#14544] / [i915#16471])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html
- shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#16471])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-4/igt@kms_chamelium_edid@dp-mode-timings.html
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +6 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#14544] / [i915#7828])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +4 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#15865]) +5 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@kms_content_protection@atomic-dpms.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#15865]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-17/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#15865]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-1/igt@kms_content_protection@content-type-change.html
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#15865]) +4 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#15330]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#15330] / [i915#3116])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#15330] / [i915#3299])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-15/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#15330]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#15330])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#15330])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#15330] / [i915#3116] / [i915#3299])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#15865]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#15865]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-1/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: NOTRUN -> [FAIL][181] ([i915#13566]) +3 other tests fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-tglu: [PASS][182] -> [FAIL][183] ([i915#13566]) +5 other tests fail
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3555]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#3555]) +3 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#3555]) +6 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8814]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#13049])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#13049]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#13049] / [i915#14544])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#13049])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [PASS][192] -> [FAIL][193] ([i915#13566]) +1 other test fail
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555]) +2 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][195] ([i915#12358] / [i915#14152] / [i915#7882])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk10/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [INCOMPLETE][196] ([i915#12358] / [i915#14152])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#4103]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#13046] / [i915#5354]) +3 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][199] +102 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#9809]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#9067])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#4103])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#4103])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#4103])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#16119] / [i915#4213])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#9723])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#9723])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#13691])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-8/igt@kms_display_modes@extended-mode-basic.html
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#13691])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_display_modes@extended-mode-basic.html
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#13691])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-15/igt@kms_display_modes@extended-mode-basic.html
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#13691])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-3/igt@kms_display_modes@extended-mode-basic.html
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#13691])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_aux_dev@basic:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#1257])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-7/igt@kms_dp_aux_dev@basic.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#13749])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-10/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#13748])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#13748]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-9/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc-formats-bigjoiner:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#16361])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#16361]) +4 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-10/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-formats-ultrajoiner:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#16361]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-5/igt@kms_dsc@dsc-with-formats-ultrajoiner.html
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#16361]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_dsc@dsc-with-formats-ultrajoiner.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#16361]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@kms_dsc@dsc-with-formats-ultrajoiner.html
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#16361])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-1/igt@kms_dsc@dsc-with-formats-ultrajoiner.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#16680])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#14544] / [i915#16084])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#16081])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#16081])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-10/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#16599])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#16599])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@vrr:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#16600])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@kms_feature_discovery@vrr.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#3637] / [i915#9934]) +5 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-7/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#9934])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#9934]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-8/igt@kms_flip@2x-flip-vs-modeset.html
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3637] / [i915#9934]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-3/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#14544] / [i915#9934])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#9934]) +3 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-14/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#9934]) +7 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@dpms-vs-vblank-race:
- shard-tglu: [PASS][237] -> [ABORT][238] ([i915#16838])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-tglu-9/igt@kms_flip@dpms-vs-vblank-race.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-2/igt@kms_flip@dpms-vs-vblank-race.html
* igt@kms_flip@dpms-vs-vblank-race@c-hdmi-a1:
- shard-tglu: [PASS][239] -> [ABORT][240] ([i915#16837])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-tglu-9/igt@kms_flip@dpms-vs-vblank-race@c-hdmi-a1.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-2/igt@kms_flip@dpms-vs-vblank-race@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [PASS][241] -> [INCOMPLETE][242] ([i915#16276] / [i915#6113])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2: [PASS][243] -> [INCOMPLETE][244] ([i915#12745] / [i915#4839] / [i915#6113])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3:
- shard-dg2: [PASS][245] -> [INCOMPLETE][246] ([i915#6113])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a2:
- shard-rkl: NOTRUN -> [INCOMPLETE][247] ([i915#16276] / [i915#6113])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#14544] / [i915#15643])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-dg1: [PASS][249] -> [FAIL][250] ([i915#12469]) +1 other test fail
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#15643]) +7 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#15643]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#15643]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#15643]) +4 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#15643]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#15643] / [i915#5190])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#15643]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#15672])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#14544] / [i915#1825]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#15990] / [i915#8708]) +9 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][262] ([i915#10056] / [i915#16593])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk1/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-pgflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#15989]) +26 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#15989]) +10 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-4/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-pgflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#15991]) +20 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt:
- shard-tglu: NOTRUN -> [SKIP][266] +153 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#15990]) +14 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#15990]) +10 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-glk: [PASS][269] -> [SKIP][270] +3 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-pwrite.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk9/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-indfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#15989]) +30 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-2/igt@kms_frontbuffer_tracking@fbchdr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#15989]) +24 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#5439]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#5439]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-13/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#5439]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-y:
- shard-rkl: [PASS][276] -> [SKIP][277] ([i915#15989]) +4 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#14544] / [i915#15102]) +9 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#1825]) +8 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#15102]) +20 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#15102]) +23 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#15102]) +50 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#14544]) +14 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#15989]) +10 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-indfb-scaledprimary:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#15989]) +8 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-14/igt@kms_frontbuffer_tracking@hdr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#15104] / [i915#15990]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#15104] / [i915#15990]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#15104] / [i915#15990]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#15990] / [i915#8708]) +6 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#15991] / [i915#5354]) +12 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#15991] / [i915#1825]) +14 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#15102]) +20 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#15990] / [i915#8708]) +8 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#15102]) +67 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#15990]) +17 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-13/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#15991]) +15 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-4/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][297] +47 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-16/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-rte:
- shard-tglu-1: NOTRUN -> [SKIP][298] +47 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_frontbuffer_tracking@psrhdr-2p-rte.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#16644] / [i915#3555] / [i915#8228])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8228]) +2 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-3/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#15460])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@kms_joiner@basic-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][302] ([i915#15460])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-3/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#13688])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-3/igt@kms_joiner@basic-max-non-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#13688])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-4/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#13688])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-8/igt@kms_joiner@basic-max-non-joiner.html
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#13688])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#13688])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-15/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#15459])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#15459]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#15459]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-18/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#15459])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][312] ([i915#15459])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_mst@mst-suspend-read-crc:
- shard-mtlp: NOTRUN -> [SKIP][313] ([i915#16451])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-6/igt@kms_mst@mst-suspend-read-crc.html
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#16451])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-5/igt@kms_mst@mst-suspend-read-crc.html
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#16451])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@kms_mst@mst-suspend-read-crc.html
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#16451])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-16/igt@kms_mst@mst-suspend-read-crc.html
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#16451])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-7/igt@kms_mst@mst-suspend-read-crc.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#6301])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-9/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#6301])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu: NOTRUN -> [SKIP][320] ([i915#14712])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-10/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-glk: NOTRUN -> [DMESG-FAIL][321] ([i915#118] / [i915#16396])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-glk: NOTRUN -> [DMESG-WARN][322] ([i915#118])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#15709]) +3 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#15709]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-14/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#15709]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/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-dg2: NOTRUN -> [SKIP][326] ([i915#15709]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#16386]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#15709]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][329] ([i915#15709]) +6 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-10/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk10: NOTRUN -> [FAIL][330] ([i915#10647] / [i915#12169])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][331] ([i915#10647]) +1 other test fail
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][332] ([i915#10647] / [i915#12177])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk9/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][333] ([i915#10647]) +1 other test fail
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk9/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#8821])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-6/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#13958])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-7/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][336] ([i915#14259])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-3/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][337] ([i915#15329]) +4 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][338] ([i915#15329] / [i915#6953])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][339] ([i915#15329]) +7 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][340] ([i915#15329] / [i915#3555] / [i915#6953])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][341] ([i915#12343] / [i915#9812])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][342] ([i915#12343] / [i915#14544])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#12343])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#12343] / [i915#5354])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-7/igt@kms_pm_backlight@fade.html
- shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#12343] / [i915#9812])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_pm_backlight@fade.html
- shard-dg1: NOTRUN -> [SKIP][346] ([i915#12343] / [i915#5354])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-12/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#15948])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#15948])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][349] ([i915#15128])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-mtlp: NOTRUN -> [SKIP][350] ([i915#8430])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg1: NOTRUN -> [DMESG-WARN][351] ([i915#4423])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-12/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@cursor:
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#4077]) +8 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-18/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][353] -> [SKIP][354] ([i915#15073])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: [PASS][355] -> [SKIP][356] ([i915#15073]) +2 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#15073])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#15073]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#15073])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu: NOTRUN -> [SKIP][360] ([i915#15403])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-6/igt@kms_pm_rpm@package-g7.html
- shard-mtlp: NOTRUN -> [SKIP][361] ([i915#15403])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-8/igt@kms_pm_rpm@package-g7.html
- shard-dg2: NOTRUN -> [SKIP][362] ([i915#15403])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-3/igt@kms_pm_rpm@package-g7.html
- shard-rkl: NOTRUN -> [SKIP][363] ([i915#15403])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#6524] / [i915#6805])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-4/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-glk10: NOTRUN -> [SKIP][365] ([i915#11520])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#11520]) +3 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#11520] / [i915#14544]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
- shard-snb: NOTRUN -> [SKIP][368] ([i915#11520]) +2 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-snb1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][369] ([i915#11520]) +4 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][370] ([i915#9808])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][371] ([i915#11520]) +14 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk9/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][372] ([i915#11520]) +10 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-9/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
- shard-mtlp: NOTRUN -> [SKIP][373] ([i915#12316]) +4 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-6/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][374] ([i915#11520]) +5 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#11520]) +2 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-glk11: NOTRUN -> [SKIP][376] ([i915#11520])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk11/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg1: NOTRUN -> [SKIP][377] ([i915#1072] / [i915#9732]) +15 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-17/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-tglu-1: NOTRUN -> [SKIP][378] ([i915#9732]) +10 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-mtlp: NOTRUN -> [SKIP][379] ([i915#9688]) +12 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-4/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][380] ([i915#9732]) +37 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-2/igt@kms_psr@pr-dpms.html
* igt@kms_psr@pr-primary-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][381] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_psr@pr-primary-mmap-gtt.html
* igt@kms_psr@psr-sprite-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][382] ([i915#4077] / [i915#9688]) +3 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-1/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html
* igt@kms_psr@psr-sprite-render:
- shard-dg2: NOTRUN -> [SKIP][383] ([i915#1072] / [i915#9732]) +13 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-3/igt@kms_psr@psr-sprite-render.html
* igt@kms_psr@psr2-cursor-blt:
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#1072] / [i915#9732]) +22 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][385] ([i915#12755] / [i915#15867])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-4/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][386] ([i915#4884])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-15/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][387] ([i915#15500] / [i915#16184])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][388] ([i915#12755] / [i915#15867] / [i915#5190])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][389] ([i915#5289]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg1: NOTRUN -> [SKIP][390] ([i915#5289])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][391] ([i915#5289]) +1 other test skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][392] ([i915#5289])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg2: NOTRUN -> [SKIP][393] ([i915#5190])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk: NOTRUN -> [ABORT][394] ([i915#13179]) +1 other test abort
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk8/igt@kms_selftest@drm_framebuffer.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][395] ([i915#8623])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][396] ([i915#12276]) +1 other test incomplete
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk11/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][397] ([i915#9906]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: NOTRUN -> [SKIP][398] ([i915#15243] / [i915#3555])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][399] ([i915#9906]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-4/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][400] ([i915#9906])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-dg1: NOTRUN -> [SKIP][401] ([i915#9906])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-mtlp: NOTRUN -> [SKIP][402] ([i915#8808] / [i915#9906])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-5/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf_pmu@busy-accuracy-50@vecs0:
- shard-rkl: [PASS][403] -> [FAIL][404] ([i915#4349]) +1 other test fail
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-4/igt@perf_pmu@busy-accuracy-50@vecs0.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@perf_pmu@busy-accuracy-50@vecs0.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [PASS][405] -> [FAIL][406] ([i915#4349])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-mtlp-5/igt@perf_pmu@busy-double-start@rcs0.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][407] ([i915#15778])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk5/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][408] ([i915#13356] / [i915#16236])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk6/igt@perf_pmu@rc6-suspend.html
* igt@prime_udl@share-import:
- shard-dg2: NOTRUN -> [SKIP][409] ([i915#16420])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-6/igt@prime_udl@share-import.html
- shard-tglu-1: NOTRUN -> [SKIP][410] ([i915#16420])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-1/igt@prime_udl@share-import.html
* igt@prime_udl@share-import-addfb:
- shard-tglu: NOTRUN -> [SKIP][411] ([i915#16420])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-10/igt@prime_udl@share-import-addfb.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][412] ([i915#3708]) +2 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-14/igt@prime_vgem@basic-fence-flip.html
- shard-dg2: NOTRUN -> [SKIP][413] ([i915#3708])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-6/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][414] ([i915#3708])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-1/igt@prime_vgem@basic-read.html
- shard-dg2: NOTRUN -> [SKIP][415] ([i915#3291] / [i915#3708])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-5/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][416] ([i915#3291] / [i915#3708])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][417] ([i915#14544] / [i915#3708])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
#### Possible fixes ####
* igt@gem_exec_params@larger-than-life-batch:
- shard-mtlp: [FAIL][418] ([i915#15871]) -> [PASS][419]
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-mtlp-3/igt@gem_exec_params@larger-than-life-batch.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-3/igt@gem_exec_params@larger-than-life-batch.html
* igt@gem_exec_schedule@semaphore-resolve:
- shard-mtlp: [ABORT][420] ([i915#13562]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-mtlp-5/igt@gem_exec_schedule@semaphore-resolve.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-2/igt@gem_exec_schedule@semaphore-resolve.html
* igt@gem_mmap_offset@clear-via-pagefault@lmem0:
- shard-dg2: [FAIL][422] ([i915#16778]) -> [PASS][423] +2 other tests pass
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg2-6/igt@gem_mmap_offset@clear-via-pagefault@lmem0.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-7/igt@gem_mmap_offset@clear-via-pagefault@lmem0.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: [ABORT][424] ([i915#15131]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [ABORT][426] ([i915#5566]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-glk6/igt@gen9_exec_parse@allowed-all.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk3/igt@gen9_exec_parse@allowed-all.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [DMESG-WARN][428] ([i915#14545]) -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg2-1/igt@i915_module_load@resize-bar.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-8/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [FAIL][430] ([i915#12964]) -> [PASS][431] +1 other test pass
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-5/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_selftest@live@gem_contexts:
- shard-mtlp: [DMESG-FAIL][432] -> [PASS][433] +1 other test pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-mtlp-3/igt@i915_selftest@live@gem_contexts.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-3/igt@i915_selftest@live@gem_contexts.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [INCOMPLETE][434] ([i915#4817]) -> [PASS][435]
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@i915_suspend@debugfs-reader.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1:
- shard-tglu: [ABORT][436] ([i915#16837] / [i915#16844]) -> [PASS][437] +1 other test pass
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][438] ([i915#15733] / [i915#5138]) -> [PASS][439] +1 other test pass
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [FAIL][440] ([i915#13566]) -> [PASS][441] +1 other test pass
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_edge_walk@256x256-left-edge:
- shard-dg1: [ABORT][442] -> [PASS][443]
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-14/igt@kms_cursor_edge_walk@256x256-left-edge.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-12/igt@kms_cursor_edge_walk@256x256-left-edge.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-rkl: [ABORT][444] ([i915#16866]) -> [PASS][445]
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-8/igt@kms_flip@flip-vs-fences-interruptible.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-tglu: [ABORT][446] ([i915#16838]) -> [PASS][447]
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-tglu-9/igt@kms_flip@modeset-vs-vblank-race.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-10/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip@modeset-vs-vblank-race@b-hdmi-a1:
- shard-tglu: [ABORT][448] -> [PASS][449]
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-tglu-9/igt@kms_flip@modeset-vs-vblank-race@b-hdmi-a1.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-10/igt@kms_flip@modeset-vs-vblank-race@b-hdmi-a1.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move:
- shard-glk: [SKIP][450] -> [PASS][451] +2 other tests pass
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-glk5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][452] ([i915#15989]) -> [PASS][453] +10 other tests pass
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][454] ([i915#15073]) -> [PASS][455] +1 other test pass
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][456] ([i915#15073]) -> [PASS][457]
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-dg1: [SKIP][458] ([i915#15073]) -> [PASS][459]
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [INCOMPLETE][460] ([i915#14419]) -> [PASS][461]
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_properties@crtc-properties-legacy:
- shard-dg1: [DMESG-WARN][462] ([i915#4423]) -> [PASS][463] +3 other tests pass
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-12/igt@kms_properties@crtc-properties-legacy.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@kms_properties@crtc-properties-legacy.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [INCOMPLETE][464] ([i915#12276]) -> [PASS][465]
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][466] ([i915#4349]) -> [PASS][467] +4 other tests pass
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: [SKIP][468] ([i915#7697]) -> [SKIP][469] ([i915#14544] / [i915#7697])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: [SKIP][470] ([i915#280]) -> [SKIP][471] ([i915#14544] / [i915#280])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@kms:
- shard-tglu: [ABORT][472] ([i915#16837]) -> [ABORT][473] ([i915#13363] / [i915#16837])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-tglu-8/igt@gem_eio@kms.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-tglu-7/igt@gem_eio@kms.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: [SKIP][474] ([i915#14544] / [i915#4525]) -> [SKIP][475] ([i915#4525])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: [SKIP][476] ([i915#6334]) -> [SKIP][477] ([i915#14544] / [i915#6334]) +1 other test skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-rkl: [SKIP][478] ([i915#14544] / [i915#3281]) -> [SKIP][479] ([i915#3281]) +5 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-noreloc.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-7/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-rkl: [SKIP][480] ([i915#3281]) -> [SKIP][481] ([i915#14544] / [i915#3281]) +1 other test skip
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-7/igt@gem_exec_reloc@basic-wc-cpu.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][482] ([i915#4613] / [i915#7582]) -> [SKIP][483] ([i915#14544] / [i915#4613] / [i915#7582])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#4613]) -> [SKIP][485] ([i915#4613]) +2 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][486] ([i915#3282]) -> [SKIP][487] ([i915#14544] / [i915#3282]) +2 other tests skip
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@gem_partial_pwrite_pread@reads.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: [SKIP][488] ([i915#14544] / [i915#3282]) -> [SKIP][489] ([i915#3282]) +2 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@gem_readwrite@beyond-eob.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@gem_readwrite@beyond-eob.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: [SKIP][490] ([i915#14544] / [i915#3297]) -> [SKIP][491] ([i915#3297])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@gem_userptr_blits@readonly-unsync.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: [SKIP][492] ([i915#2527]) -> [SKIP][493] ([i915#14544] / [i915#2527]) +1 other test skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: [SKIP][494] ([i915#14544] / [i915#2527]) -> [SKIP][495] ([i915#2527]) +1 other test skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_module_load@fault-injection:
- shard-dg1: [ABORT][496] ([i915#11814] / [i915#15481]) -> [ABORT][497] ([i915#11814]) +1 other test abort
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-19/igt@i915_module_load@fault-injection.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-18/igt@i915_module_load@fault-injection.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: [SKIP][498] ([i915#16080] / [i915#16166]) -> [SKIP][499] ([i915#14544] / [i915#16080] / [i915#16166])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-8/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: [SKIP][500] ([i915#5723]) -> [SKIP][501] ([i915#14544] / [i915#5723])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: [SKIP][502] ([i915#7707]) -> [SKIP][503] ([i915#14544] / [i915#7707])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@intel_hwmon@hwmon-read.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#5286]) -> [SKIP][505] ([i915#5286]) +1 other test skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-rkl: [SKIP][506] ([i915#5286]) -> [SKIP][507] ([i915#14544] / [i915#5286]) +1 other test skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][508] ([i915#3638]) -> [SKIP][509] ([i915#14544] / [i915#3638]) +1 other test skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][510] ([i915#14544] / [i915#3638]) -> [SKIP][511] ([i915#3638])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][512] ([i915#12313]) -> [SKIP][513] ([i915#12313] / [i915#14544])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][514] ([i915#14544] / [i915#6095]) -> [SKIP][515] ([i915#6095]) +5 other tests skip
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][516] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][517] ([i915#14098] / [i915#6095]) +8 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][518] ([i915#6095]) -> [SKIP][519] ([i915#14544] / [i915#6095]) +1 other test skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-3/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-hdmi-a-2.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: [SKIP][520] ([i915#14098] / [i915#6095]) -> [SKIP][521] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][522] ([i915#12313] / [i915#14544]) -> [SKIP][523] ([i915#12313])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: [SKIP][524] ([i915#3742]) -> [SKIP][525] ([i915#14544] / [i915#3742])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@kms_cdclk@mode-transition.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_audio@dp-audio-after-suspend:
- shard-rkl: [SKIP][526] ([i915#11151] / [i915#14544]) -> [SKIP][527] ([i915#11151])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_chamelium_audio@dp-audio-after-suspend.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-7/igt@kms_chamelium_audio@dp-audio-after-suspend.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4:
- shard-rkl: [SKIP][528] ([i915#16471]) -> [SKIP][529] ([i915#14544] / [i915#16471])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-4/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-rkl: [SKIP][530] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][531] ([i915#11151] / [i915#7828]) +2 other tests skip
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: [SKIP][532] ([i915#11151] / [i915#7828]) -> [SKIP][533] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: [SKIP][534] ([i915#15865]) -> [SKIP][535] ([i915#14544] / [i915#15865])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-3/igt@kms_content_protection@legacy-hdcp14.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][536] ([i915#3555]) -> [SKIP][537] ([i915#14544] / [i915#3555])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: [SKIP][538] ([i915#13049] / [i915#14544]) -> [SKIP][539] ([i915#13049])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: [SKIP][540] ([i915#13049]) -> [SKIP][541] ([i915#13049] / [i915#14544])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg1: [SKIP][542] ([i915#13049]) -> [SKIP][543] ([i915#13049] / [i915#4423])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-19/igt@kms_cursor_crc@cursor-sliding-512x170.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: [SKIP][544] ([i915#14544] / [i915#4103]) -> [SKIP][545] ([i915#4103])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: [SKIP][546] ([i915#13749] / [i915#14544]) -> [SKIP][547] ([i915#13749])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: [SKIP][548] ([i915#13707]) -> [SKIP][549] ([i915#13707] / [i915#14544])
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic-ultrajoiner:
- shard-rkl: [SKIP][550] ([i915#14544] / [i915#16361]) -> [SKIP][551] ([i915#16361])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_dsc@dsc-basic-ultrajoiner.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@kms_dsc@dsc-basic-ultrajoiner.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: [SKIP][552] ([i915#16361]) -> [SKIP][553] ([i915#14544] / [i915#16361])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][554] ([i915#16680]) -> [SKIP][555] ([i915#14544] / [i915#16680])
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-rkl: [SKIP][556] ([i915#14544] / [i915#9934]) -> [SKIP][557] ([i915#9934]) +1 other test skip
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-rkl: [SKIP][558] ([i915#9934]) -> [SKIP][559] ([i915#14544] / [i915#9934]) +1 other test skip
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: [INCOMPLETE][560] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][561] ([i915#12745] / [i915#4839])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][562] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][563] ([i915#12745])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-glk3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: [SKIP][564] ([i915#14544] / [i915#15643]) -> [SKIP][565] ([i915#15643]) +1 other test skip
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: [SKIP][566] ([i915#15643]) -> [SKIP][567] ([i915#14544] / [i915#15643]) +1 other test skip
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][568] ([i915#1825]) -> [SKIP][569] ([i915#14544] / [i915#1825])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg1: [SKIP][570] ([i915#15990] / [i915#4423]) -> [SKIP][571] ([i915#15990]) +1 other test skip
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-12/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][572] ([i915#14544] / [i915#15102]) -> [SKIP][573] ([i915#15102]) +11 other tests skip
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: [SKIP][574] ([i915#15102] / [i915#4423]) -> [SKIP][575] ([i915#15102])
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][576] ([i915#14544] / [i915#5439]) -> [SKIP][577] ([i915#5439])
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-render:
- shard-rkl: [SKIP][578] ([i915#14544]) -> [SKIP][579] +26 other tests skip
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-render.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][580] ([i915#15990] / [i915#4423] / [i915#8708]) -> [SKIP][581] ([i915#15990] / [i915#8708])
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][582] -> [SKIP][583] ([i915#14544]) +36 other tests skip
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg1: [SKIP][584] ([i915#4423]) -> [SKIP][585] +1 other test skip
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][586] ([i915#15102]) -> [SKIP][587] ([i915#14544] / [i915#15102]) +16 other tests skip
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-4/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: [INCOMPLETE][588] ([i915#15436]) -> [SKIP][589] ([i915#16644] / [i915#3555] / [i915#8228])
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][590] ([i915#12713] / [i915#16490]) -> [SKIP][591] ([i915#1187] / [i915#12713] / [i915#16490])
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-mtlp-7/igt@kms_hdr@brightness-with-hdr.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: [SKIP][592] ([i915#1187] / [i915#12713] / [i915#16644]) -> [SKIP][593] ([i915#12713] / [i915#16644])
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: [SKIP][594] ([i915#6301]) -> [SKIP][595] ([i915#14544] / [i915#6301])
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-3/igt@kms_panel_fitting@atomic-fastset.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][596] ([i915#14544] / [i915#15709]) -> [SKIP][597] ([i915#15709])
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: [SKIP][598] ([i915#15709]) -> [SKIP][599] ([i915#14544] / [i915#15709]) +2 other tests skip
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: [SKIP][600] ([i915#13958] / [i915#14544]) -> [SKIP][601] ([i915#13958])
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: [SKIP][602] ([i915#12343] / [i915#4423] / [i915#5354]) -> [SKIP][603] ([i915#12343] / [i915#5354])
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-dg1-12/igt@kms_pm_backlight@basic-brightness.html
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-dg1-19/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: [SKIP][604] ([i915#12343] / [i915#5354]) -> [SKIP][605] ([i915#12343] / [i915#14544] / [i915#5354])
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_prime@d3hot:
- shard-rkl: [SKIP][606] ([i915#14544] / [i915#6524]) -> [SKIP][607] ([i915#6524])
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_prime@d3hot.html
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-7/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][608] ([i915#11520]) -> [SKIP][609] ([i915#11520] / [i915#14544]) +1 other test skip
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-rkl: [SKIP][610] ([i915#11520] / [i915#14544]) -> [SKIP][611] ([i915#11520])
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: [SKIP][612] ([i915#9683]) -> [SKIP][613] ([i915#14544] / [i915#9683])
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: [SKIP][614] ([i915#14544] / [i915#9683]) -> [SKIP][615] ([i915#9683])
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-8/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: [SKIP][616] ([i915#1072] / [i915#9732]) -> [SKIP][617] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-4/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@psr-primary-blt:
- shard-rkl: [SKIP][618] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][619] ([i915#1072] / [i915#9732]) +3 other tests skip
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_psr@psr-primary-blt.html
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-2/igt@kms_psr@psr-primary-blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: [SKIP][620] ([i915#5289]) -> [SKIP][621] ([i915#14544] / [i915#5289])
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-rkl: [SKIP][622] ([i915#14544] / [i915#3555]) -> [SKIP][623] ([i915#3555])
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@prime_udl@share-import:
- shard-rkl: [SKIP][624] ([i915#16420]) -> [SKIP][625] ([i915#14544] / [i915#16420])
[624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-2/igt@prime_udl@share-import.html
[625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-6/igt@prime_udl@share-import.html
* igt@prime_udl@share-import-addfb:
- shard-rkl: [SKIP][626] ([i915#14544] / [i915#16420]) -> [SKIP][627] ([i915#16420])
[626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9067/shard-rkl-6/igt@prime_udl@share-import-addfb.html
[627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/shard-rkl-4/igt@prime_udl@share-import-addfb.html
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12469
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[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#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[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#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[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#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314
[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#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[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#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[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#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[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#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#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109
[i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119
[i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184
[i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236
[i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276
[i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
[i915#16396]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16396
[i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420
[i915#16451]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16451
[i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464
[i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
[i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490
[i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593
[i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599
[i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600
[i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644
[i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680
[i915#16778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16778
[i915#16837]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16837
[i915#16838]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16838
[i915#16844]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16844
[i915#16866]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16866
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[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#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#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#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[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#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[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#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[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#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9067 -> IGTPW_15717
CI-20190529: 20190529
CI_DRM_19027: 75140c4ee9ad250b2524ff5bfffd7f9fe4bb6012 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15717: 15717
IGT_9067: 9067
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15717/index.html
[-- Attachment #2: Type: text/html, Size: 209626 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2026-08-21 11:04 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-21 6:58 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
2026-08-21 7:40 ` ✓ Xe.CI.BAT: success for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6) Patchwork
2026-08-21 8:13 ` ✓ i915.CI.BAT: " Patchwork
2026-08-21 8:43 ` ✓ Xe.CI.FULL: " Patchwork
2026-08-21 9:43 ` [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Janusz Krzysztofik
2026-08-21 11:03 ` ✗ i915.CI.Full: failure for tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug (rev6) Patchwork
-- strict thread matches above, loose matches on Subject: below --
2026-05-18 15:48 [PATCH] tests/core_hotunplug: add *-with-load subtests exercising GPU workload during hotplug Nitin Gote
2026-05-20 13:38 ` Janusz Krzysztofik
2026-05-21 12:46 ` Kamil Konieczny
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