* [PATCH v4 i-g-t 1/6] lib/igt_sriov_device: Add helper to get VF PCI slot address
2026-02-11 11:18 [PATCH v4 i-g-t 0/6] PCI driver helpers and xe-vfio-pci FLR improvement Marcin Bernatowicz
@ 2026-02-11 11:18 ` Marcin Bernatowicz
2026-02-11 11:18 ` [PATCH v4 i-g-t 2/6] lib/igt_pci: Add generic PCI driver override and bind/unbind helpers Marcin Bernatowicz
` (8 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Marcin Bernatowicz @ 2026-02-11 11:18 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Adam Miszczak, Jakub Kolakowski,
Kamil Konieczny, Lukasz Laguna
Add igt_sriov_get_vf_pci_slot_alloc() to resolve the PCI slot address
of a VF by following the device/virtfnX symlink in the PF sysfs
directory, returning a newly allocated string or NULL on failure.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
lib/igt_sriov_device.c | 25 +++++++++++++++++++++++++
lib/igt_sriov_device.h | 1 +
2 files changed, 26 insertions(+)
diff --git a/lib/igt_sriov_device.c b/lib/igt_sriov_device.c
index 788ffbfa1..1f4c3ac04 100644
--- a/lib/igt_sriov_device.c
+++ b/lib/igt_sriov_device.c
@@ -354,6 +354,31 @@ static char *__igt_sriov_get_vf_pci_slot_alloc(int pf_sysfs, unsigned int vf_num
return pci_slot_addr ? strdup(pci_slot_addr) : NULL;
}
+/**
+ * igt_sriov_get_vf_pci_slot_alloc:
+ * @pf: PF device file descriptor
+ * @vf_num: VF number (1-based); 0 means PF
+ *
+ * Resolves the symlink under the PF sysfs directory (device/virtfnX) to obtain
+ * the PCI slot address of the VF (or PF if @vf_num is 0).
+ *
+ * Returns: newly allocated PCI slot address string (e.g. "0000:3b:00.4"),
+ * or NULL on failure. Caller must free().
+ */
+char *igt_sriov_get_vf_pci_slot_alloc(int pf, unsigned int vf_num)
+{
+ char *pci_slot;
+ int sysfs;
+
+ sysfs = igt_sysfs_open(pf);
+ igt_assert_fd(sysfs);
+
+ pci_slot = __igt_sriov_get_vf_pci_slot_alloc(sysfs, vf_num);
+ close(sysfs);
+
+ return pci_slot;
+}
+
static bool __igt_sriov_bind_vf_drm_driver(int pf, unsigned int vf_num, bool bind)
{
char *pci_slot;
diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h
index 84d29b1bb..a417b30d8 100644
--- a/lib/igt_sriov_device.h
+++ b/lib/igt_sriov_device.h
@@ -28,6 +28,7 @@ void igt_sriov_enable_driver_autoprobe(int pf);
void igt_sriov_disable_driver_autoprobe(int pf);
int igt_sriov_open_vf_drm_device(int pf, unsigned int vf_num);
bool igt_sriov_is_vf_drm_driver_probed(int pf, unsigned int vf_num);
+char *igt_sriov_get_vf_pci_slot_alloc(int pf, unsigned int vf_num);
void igt_sriov_bind_vf_drm_driver(int pf, unsigned int vf_num);
void igt_sriov_unbind_vf_drm_driver(int pf, unsigned int vf_num);
int igt_sriov_device_sysfs_open(int pf, unsigned int vf_num);
--
2.43.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH v4 i-g-t 2/6] lib/igt_pci: Add generic PCI driver override and bind/unbind helpers
2026-02-11 11:18 [PATCH v4 i-g-t 0/6] PCI driver helpers and xe-vfio-pci FLR improvement Marcin Bernatowicz
2026-02-11 11:18 ` [PATCH v4 i-g-t 1/6] lib/igt_sriov_device: Add helper to get VF PCI slot address Marcin Bernatowicz
@ 2026-02-11 11:18 ` Marcin Bernatowicz
2026-02-11 12:10 ` Laguna, Lukasz
2026-02-11 11:18 ` [PATCH v4 i-g-t 3/6] tests/intel/xe_sriov_flr: Attach VFs to xe-vfio-pci before initiating FLR Marcin Bernatowicz
` (7 subsequent siblings)
9 siblings, 1 reply; 15+ messages in thread
From: Marcin Bernatowicz @ 2026-02-11 11:18 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Adam Miszczak, Jakub Kolakowski,
Kamil Konieczny, Lukasz Laguna
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 12017 bytes --]
Add generic helpers for controlling PCI driver binding via sysfs.
The new APIs provide driver- and device-centric primitives for:
- setting and clearing driver_override
- triggering PCI driver reprobe
- binding and unbinding devices to a specific PCI driver
- query the currently bound PCI driver
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
---
v3:
- clarify igt_pci_get_bound_driver_name() doc that driver/driver_len
are optional (NULL/0 valid when only checking bound/unbound) (Lukasz)
v2:
- Add igt_pci_get_bound_driver_name() to query the currently bound PCI
driver via the /sys/bus/pci/devices/<BDF>/driver symlink.
- Extend igt_pci_bind_driver_override() and
igt_pci_unbind_driver_override()
with a timeout_ms parameter so callers can wait for bind/unbind to
actually complete, instead of relying on drivers_probe write success.
---
lib/igt_pci.c | 354 ++++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_pci.h | 13 +-
2 files changed, 366 insertions(+), 1 deletion(-)
diff --git a/lib/igt_pci.c b/lib/igt_pci.c
index 61aaf939d..b63550b39 100644
--- a/lib/igt_pci.c
+++ b/lib/igt_pci.c
@@ -3,9 +3,18 @@
* Copyright © 2022 Intel Corporation
*/
+#include <ctype.h>
+#include <dirent.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <string.h>
+#include <unistd.h>
#include <pciaccess.h>
+#include "igt_aux.h"
#include "igt_core.h"
#include "igt_pci.h"
+#include "igt_sysfs.h"
static int find_pci_cap_offset_at(struct pci_device *dev, enum pci_cap_id cap_id,
int start_offset)
@@ -51,3 +60,348 @@ int find_pci_cap_offset(struct pci_device *dev, enum pci_cap_id cap_id)
{
return find_pci_cap_offset_at(dev, cap_id, PCI_CAPS_START);
}
+
+static int open_pci_driver_dir(const char *driver)
+{
+ char path[PATH_MAX];
+
+ snprintf(path, sizeof(path), "/sys/bus/pci/drivers/%s", driver);
+ return open(path, O_RDONLY | O_CLOEXEC);
+}
+
+/**
+ * igt_pci_device_unbind:
+ * @pci_slot: BDF like "0000:01:00.0"
+ *
+ * Unbind @pci_slot from its currently bound driver, if any.
+ * Returns 0 on success, or a negative errno-like value.
+ */
+int igt_pci_device_unbind(const char *pci_slot)
+{
+ char path[PATH_MAX];
+ int dirfd;
+ int ret;
+
+ snprintf(path, sizeof(path), "/sys/bus/pci/devices/%s/driver", pci_slot);
+ dirfd = open(path, O_RDONLY | O_CLOEXEC);
+ if (dirfd < 0)
+ return 0; /* already unbound */
+
+ ret = igt_sysfs_set(dirfd, "unbind", pci_slot) ? 0 : -errno;
+ close(dirfd);
+
+ return ret;
+}
+
+/**
+ * igt_pci_driver_bind:
+ * @driver: PCI driver name under /sys/bus/pci/drivers/<driver>
+ * @pci_slot: device to bind
+ *
+ * Bind @pci_slot to @driver. Driver must be present/loaded.
+ * Returns 0 on success, or a negative errno-like value.
+ */
+int igt_pci_driver_bind(const char *driver, const char *pci_slot)
+{
+ int dirfd, ret;
+
+ dirfd = open_pci_driver_dir(driver);
+ if (dirfd < 0)
+ return -errno;
+
+ ret = igt_sysfs_set(dirfd, "bind", pci_slot) ? 0 : -errno;
+ close(dirfd);
+
+ return ret;
+}
+
+/**
+ * igt_pci_driver_unbind:
+ * @driver: PCI driver name
+ * @pci_slot: device to unbind
+ *
+ * Unbind @pci_slot from @driver.
+ * Returns 0 on success, or a negative errno-like value.
+ */
+int igt_pci_driver_unbind(const char *driver, const char *pci_slot)
+{
+ int dirfd, ret;
+
+ dirfd = open_pci_driver_dir(driver);
+ if (dirfd < 0)
+ return -errno;
+
+ ret = igt_sysfs_set(dirfd, "unbind", pci_slot) ? 0 : -errno;
+ close(dirfd);
+
+ return ret;
+}
+
+/**
+ * igt_pci_driver_unbind_all:
+ * @driver: PCI driver name
+ *
+ * Unbind all devices currently bound to @driver.
+ * Returns 0 on success, or a negative errno-like value.
+ */
+int igt_pci_driver_unbind_all(const char *driver)
+{
+ char path[PATH_MAX];
+ DIR *dir;
+ struct dirent *de;
+ int driver_fd;
+
+ snprintf(path, sizeof(path), "/sys/bus/pci/drivers/%s", driver);
+ dir = opendir(path);
+ if (!dir)
+ return -errno;
+
+ driver_fd = dirfd(dir);
+
+ while ((de = readdir(dir))) {
+ bool ok;
+
+ /* BDF symlinks are like "0000:01:00.0" and start with digit */
+ if (de->d_type != DT_LNK || !isdigit(de->d_name[0]))
+ continue;
+
+ ok = igt_sysfs_set(driver_fd, "unbind", de->d_name);
+ if (!ok) {
+ int err = -errno;
+
+ closedir(dir);
+ return err;
+ }
+ }
+
+ closedir(dir);
+ return 0;
+}
+
+/**
+ * igt_pci_set_driver_override:
+ * @pci_slot: PCI device BDF (e.g. "0000:01:00.0")
+ * @driver: PCI driver name to force-bind (e.g. "xe-vfio-pci"), or
+ * NULL / empty string to clear an existing override
+ *
+ * Set or clear the PCI driver_override for @pci_slot via sysfs.
+ *
+ * This does not trigger driver reprobe by itself. Call
+ * igt_pci_probe_drivers() afterwards to apply the override.
+ *
+ * Returns: 0 on success, negative errno on failure.
+ */
+int igt_pci_set_driver_override(const char *pci_slot, const char *driver)
+{
+ char devpath[PATH_MAX];
+ int dev;
+ bool ok;
+
+ snprintf(devpath, sizeof(devpath), "/sys/bus/pci/devices/%s", pci_slot);
+ dev = open(devpath, O_DIRECTORY | O_RDONLY);
+ if (dev < 0)
+ return -errno;
+
+ ok = igt_sysfs_set(dev, "driver_override", driver ? driver : "");
+ close(dev);
+
+ return ok ? 0 : -errno;
+}
+
+/**
+ * igt_pci_probe_drivers:
+ * @pci_slot: PCI device BDF (e.g. "0000:01:00.0")
+ *
+ * Trigger PCI driver reprobe for @pci_slot by writing to
+ * /sys/bus/pci/drivers_probe.
+ *
+ * This causes the kernel to attempt binding the device, honoring any
+ * driver_override previously set.
+ *
+ * Note: a successful write only means the reprobe request was accepted.
+ * It does not guarantee that a driver actually bound to the device.
+ *
+ * Returns: 0 on success, negative errno on failure.
+ */
+int igt_pci_probe_drivers(const char *pci_slot)
+{
+ int pci;
+ bool ok;
+
+ pci = open("/sys/bus/pci", O_DIRECTORY | O_RDONLY);
+ if (pci < 0)
+ return -errno;
+
+ ok = igt_sysfs_set(pci, "drivers_probe", pci_slot);
+ close(pci);
+
+ return ok ? 0 : -errno;
+}
+
+/**
+ * igt_pci_get_bound_driver_name:
+ * @pci_slot: PCI device BDF (e.g. "0000:01:00.0")
+ * @driver: destination buffer for the bound driver name
+ * @driver_len: size of @driver in bytes (may be 0 if @driver is NULL)
+ *
+ * Read the currently bound PCI driver name for @pci_slot by inspecting the
+ * /sys/bus/pci/devices/<BDF>/driver symlink.
+ *
+ * @driver/@driver_len are optional. Callers may pass NULL and/or 0 when they
+ * only need the bound/unbound status and do not care about the driver name.
+ *
+ * Return values:
+ * 1: device is bound and @driver contains the driver name
+ * 0: device is unbound (no driver symlink)
+ * <0: negative errno-like value on error
+ */
+int igt_pci_get_bound_driver_name(const char *pci_slot, char *driver, size_t driver_len)
+{
+ char path[PATH_MAX];
+ char link[PATH_MAX];
+ const char *base;
+ ssize_t len;
+
+ if (driver && driver_len)
+ driver[0] = '\0';
+
+ snprintf(path, sizeof(path), "/sys/bus/pci/devices/%s/driver", pci_slot);
+ len = readlink(path, link, sizeof(link) - 1);
+ if (len < 0) {
+ if (errno == ENOENT)
+ return 0; /* unbound */
+
+ return -errno;
+ }
+
+ link[len] = '\0';
+ base = strrchr(link, '/');
+ base = base ? base + 1 : link;
+
+ if (driver && driver_len)
+ snprintf(driver, driver_len, "%s", base);
+
+ return 1;
+}
+
+/**
+ * igt_pci_bind_driver_override:
+ * @pci_slot: PCI device BDF (e.g. "0000:01:00.0")
+ * @driver: PCI driver name to bind (must not be NULL or empty)
+ * @timeout_ms: how long to wait for the device to become bound.
+ * If 0, don't wait (best-effort immediate check only).
+ *
+ * Bind @pci_slot to @driver using the driver_override mechanism.
+ *
+ * This helper sets driver_override and immediately triggers driver
+ * reprobe so that the device is bound to the requested driver.
+ *
+ * Returns: 0 on success, negative errno-like value on failure.
+ * A reprobe request can be accepted by sysfs while the driver probe
+ * fails later; this helper verifies the device ended up bound.
+ *
+ * On bind failure, returns a negative error and the failure reason may
+ * also be logged to dmesg by the kernel driver.
+ */
+int igt_pci_bind_driver_override(const char *pci_slot, const char *driver,
+ unsigned int timeout_ms)
+{
+ int ret;
+ char bound[64];
+ int bound_ret;
+ bool bound_ok;
+
+ if (!driver || !driver[0])
+ return -EINVAL;
+
+ ret = igt_pci_set_driver_override(pci_slot, driver);
+ if (ret)
+ return ret;
+
+ ret = igt_pci_probe_drivers(pci_slot);
+ if (ret)
+ return ret;
+
+ /*
+ * Writing to drivers_probe only tells us the kernel accepted the request.
+ * The actual driver probe may still fail (and only be reported via dmesg).
+ * Verify that the device ended up bound to the requested driver.
+ */
+ bound_ret = igt_pci_get_bound_driver_name(pci_slot, bound, sizeof(bound));
+ if (bound_ret < 0)
+ return bound_ret;
+
+ if (timeout_ms == 0) {
+ /*
+ * No waiting requested. If the device is already bound, validate
+ * it is bound to the expected driver; otherwise treat as
+ * best-effort request-only success.
+ */
+ if (bound_ret > 0 && strcmp(bound, driver))
+ return -EBUSY;
+
+ return 0;
+ }
+
+ bound_ok = igt_wait((bound_ret =
+ igt_pci_get_bound_driver_name(pci_slot, bound, sizeof(bound))) != 0,
+ timeout_ms, 1);
+ if (!bound_ok)
+ return -EIO;
+
+ if (bound_ret < 0)
+ return bound_ret;
+
+ if (strcmp(bound, driver))
+ return -EBUSY;
+
+ return 0;
+}
+
+/**
+ * igt_pci_unbind_driver_override:
+ * @pci_slot: PCI device BDF (e.g. "0000:01:00.0")
+ * @timeout_ms: how long to wait for the device to become unbound.
+ * If 0, don't wait (best-effort immediate check only).
+ *
+ * Unbind @pci_slot from its currently bound driver (if any) and clear
+ * any driver_override setting.
+ *
+ * This is the inverse operation of igt_pci_bind_driver_override().
+ *
+ * Returns: 0 on success, negative errno on failure.
+ */
+int igt_pci_unbind_driver_override(const char *pci_slot, unsigned int timeout_ms)
+{
+ int ret;
+ int bound_ret;
+ char bound[64];
+ bool unbound_ok;
+
+ ret = igt_pci_device_unbind(pci_slot);
+ if (ret)
+ return ret;
+
+ ret = igt_pci_set_driver_override(pci_slot, "");
+ if (ret)
+ return ret;
+
+ bound_ret = igt_pci_get_bound_driver_name(pci_slot, bound, sizeof(bound));
+ if (bound_ret < 0)
+ return bound_ret;
+
+ if (timeout_ms == 0)
+ return 0;
+
+ /* Verify the device actually ends up unbound (driver symlink removed). */
+ unbound_ok = igt_wait((bound_ret =
+ igt_pci_get_bound_driver_name(pci_slot, bound, sizeof(bound))) == 0,
+ timeout_ms, 1);
+ if (!unbound_ok)
+ return -EBUSY;
+
+ if (bound_ret < 0)
+ return bound_ret;
+
+ return 0;
+}
diff --git a/lib/igt_pci.h b/lib/igt_pci.h
index 84355e9dd..509345b2d 100644
--- a/lib/igt_pci.h
+++ b/lib/igt_pci.h
@@ -6,8 +6,9 @@
#ifndef __IGT_PCI_H__
#define __IGT_PCI_H__
-#include <stdint.h>
#include <endian.h>
+#include <stddef.h>
+#include <stdint.h>
/* forward declaration */
struct pci_device;
@@ -26,5 +27,15 @@ enum pci_cap_id {
#define PCI_SLOT_PWR_CTRL_PRESENT (1 << 1)
int find_pci_cap_offset(struct pci_device *dev, enum pci_cap_id cap_id);
+int igt_pci_device_unbind(const char *pci_slot);
+int igt_pci_driver_bind(const char *driver, const char *pci_slot);
+int igt_pci_driver_unbind(const char *driver, const char *pci_slot);
+int igt_pci_driver_unbind_all(const char *driver);
+int igt_pci_set_driver_override(const char *pci_slot, const char *driver);
+int igt_pci_probe_drivers(const char *pci_slot);
+int igt_pci_get_bound_driver_name(const char *pci_slot, char *driver, size_t driver_len);
+int igt_pci_bind_driver_override(const char *pci_slot, const char *driver,
+ unsigned int timeout_ms);
+int igt_pci_unbind_driver_override(const char *pci_slot, unsigned int timeout_ms);
#endif
--
2.43.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [PATCH v4 i-g-t 2/6] lib/igt_pci: Add generic PCI driver override and bind/unbind helpers
2026-02-11 11:18 ` [PATCH v4 i-g-t 2/6] lib/igt_pci: Add generic PCI driver override and bind/unbind helpers Marcin Bernatowicz
@ 2026-02-11 12:10 ` Laguna, Lukasz
0 siblings, 0 replies; 15+ messages in thread
From: Laguna, Lukasz @ 2026-02-11 12:10 UTC (permalink / raw)
To: Marcin Bernatowicz, igt-dev
Cc: Adam Miszczak, Jakub Kolakowski, Kamil Konieczny
On 2/11/2026 12:18, Marcin Bernatowicz wrote:
> Add generic helpers for controlling PCI driver binding via sysfs.
>
> The new APIs provide driver- and device-centric primitives for:
> - setting and clearing driver_override
> - triggering PCI driver reprobe
> - binding and unbinding devices to a specific PCI driver
> - query the currently bound PCI driver
>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
> Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
> ---
> v3:
> - clarify igt_pci_get_bound_driver_name() doc that driver/driver_len
> are optional (NULL/0 valid when only checking bound/unbound) (Lukasz)
>
> v2:
> - Add igt_pci_get_bound_driver_name() to query the currently bound PCI
> driver via the /sys/bus/pci/devices/<BDF>/driver symlink.
> - Extend igt_pci_bind_driver_override() and
> igt_pci_unbind_driver_override()
> with a timeout_ms parameter so callers can wait for bind/unbind to
> actually complete, instead of relying on drivers_probe write success.
>
> ---
> lib/igt_pci.c | 354 ++++++++++++++++++++++++++++++++++++++++++++++++++
> lib/igt_pci.h | 13 +-
> 2 files changed, 366 insertions(+), 1 deletion(-)
>
> diff --git a/lib/igt_pci.c b/lib/igt_pci.c
> index 61aaf939d..b63550b39 100644
> --- a/lib/igt_pci.c
> +++ b/lib/igt_pci.c
> @@ -3,9 +3,18 @@
> * Copyright © 2022 Intel Corporation
> */
>
> +#include <ctype.h>
> +#include <dirent.h>
> +#include <errno.h>
> +#include <fcntl.h>
> +#include <limits.h>
> +#include <string.h>
> +#include <unistd.h>
> #include <pciaccess.h>
> +#include "igt_aux.h"
> #include "igt_core.h"
> #include "igt_pci.h"
> +#include "igt_sysfs.h"
>
> static int find_pci_cap_offset_at(struct pci_device *dev, enum pci_cap_id cap_id,
> int start_offset)
> @@ -51,3 +60,348 @@ int find_pci_cap_offset(struct pci_device *dev, enum pci_cap_id cap_id)
> {
> return find_pci_cap_offset_at(dev, cap_id, PCI_CAPS_START);
> }
> +
> +static int open_pci_driver_dir(const char *driver)
> +{
> + char path[PATH_MAX];
> +
> + snprintf(path, sizeof(path), "/sys/bus/pci/drivers/%s", driver);
> + return open(path, O_RDONLY | O_CLOEXEC);
> +}
> +
> +/**
> + * igt_pci_device_unbind:
> + * @pci_slot: BDF like "0000:01:00.0"
> + *
> + * Unbind @pci_slot from its currently bound driver, if any.
> + * Returns 0 on success, or a negative errno-like value.
> + */
> +int igt_pci_device_unbind(const char *pci_slot)
> +{
> + char path[PATH_MAX];
> + int dirfd;
> + int ret;
> +
> + snprintf(path, sizeof(path), "/sys/bus/pci/devices/%s/driver", pci_slot);
> + dirfd = open(path, O_RDONLY | O_CLOEXEC);
> + if (dirfd < 0)
> + return 0; /* already unbound */
> +
> + ret = igt_sysfs_set(dirfd, "unbind", pci_slot) ? 0 : -errno;
> + close(dirfd);
> +
> + return ret;
> +}
> +
> +/**
> + * igt_pci_driver_bind:
> + * @driver: PCI driver name under /sys/bus/pci/drivers/<driver>
> + * @pci_slot: device to bind
> + *
> + * Bind @pci_slot to @driver. Driver must be present/loaded.
> + * Returns 0 on success, or a negative errno-like value.
> + */
> +int igt_pci_driver_bind(const char *driver, const char *pci_slot)
> +{
> + int dirfd, ret;
> +
> + dirfd = open_pci_driver_dir(driver);
> + if (dirfd < 0)
> + return -errno;
> +
> + ret = igt_sysfs_set(dirfd, "bind", pci_slot) ? 0 : -errno;
> + close(dirfd);
> +
> + return ret;
> +}
> +
> +/**
> + * igt_pci_driver_unbind:
> + * @driver: PCI driver name
> + * @pci_slot: device to unbind
> + *
> + * Unbind @pci_slot from @driver.
> + * Returns 0 on success, or a negative errno-like value.
> + */
> +int igt_pci_driver_unbind(const char *driver, const char *pci_slot)
> +{
> + int dirfd, ret;
> +
> + dirfd = open_pci_driver_dir(driver);
> + if (dirfd < 0)
> + return -errno;
> +
> + ret = igt_sysfs_set(dirfd, "unbind", pci_slot) ? 0 : -errno;
> + close(dirfd);
> +
> + return ret;
> +}
> +
> +/**
> + * igt_pci_driver_unbind_all:
> + * @driver: PCI driver name
> + *
> + * Unbind all devices currently bound to @driver.
> + * Returns 0 on success, or a negative errno-like value.
> + */
> +int igt_pci_driver_unbind_all(const char *driver)
> +{
> + char path[PATH_MAX];
> + DIR *dir;
> + struct dirent *de;
> + int driver_fd;
> +
> + snprintf(path, sizeof(path), "/sys/bus/pci/drivers/%s", driver);
> + dir = opendir(path);
> + if (!dir)
> + return -errno;
> +
> + driver_fd = dirfd(dir);
> +
> + while ((de = readdir(dir))) {
> + bool ok;
> +
> + /* BDF symlinks are like "0000:01:00.0" and start with digit */
> + if (de->d_type != DT_LNK || !isdigit(de->d_name[0]))
> + continue;
> +
> + ok = igt_sysfs_set(driver_fd, "unbind", de->d_name);
> + if (!ok) {
> + int err = -errno;
> +
> + closedir(dir);
> + return err;
> + }
> + }
> +
> + closedir(dir);
> + return 0;
> +}
> +
> +/**
> + * igt_pci_set_driver_override:
> + * @pci_slot: PCI device BDF (e.g. "0000:01:00.0")
> + * @driver: PCI driver name to force-bind (e.g. "xe-vfio-pci"), or
> + * NULL / empty string to clear an existing override
> + *
> + * Set or clear the PCI driver_override for @pci_slot via sysfs.
> + *
> + * This does not trigger driver reprobe by itself. Call
> + * igt_pci_probe_drivers() afterwards to apply the override.
> + *
> + * Returns: 0 on success, negative errno on failure.
> + */
> +int igt_pci_set_driver_override(const char *pci_slot, const char *driver)
> +{
> + char devpath[PATH_MAX];
> + int dev;
> + bool ok;
> +
> + snprintf(devpath, sizeof(devpath), "/sys/bus/pci/devices/%s", pci_slot);
> + dev = open(devpath, O_DIRECTORY | O_RDONLY);
> + if (dev < 0)
> + return -errno;
> +
> + ok = igt_sysfs_set(dev, "driver_override", driver ? driver : "");
> + close(dev);
> +
> + return ok ? 0 : -errno;
> +}
> +
> +/**
> + * igt_pci_probe_drivers:
> + * @pci_slot: PCI device BDF (e.g. "0000:01:00.0")
> + *
> + * Trigger PCI driver reprobe for @pci_slot by writing to
> + * /sys/bus/pci/drivers_probe.
> + *
> + * This causes the kernel to attempt binding the device, honoring any
> + * driver_override previously set.
> + *
> + * Note: a successful write only means the reprobe request was accepted.
> + * It does not guarantee that a driver actually bound to the device.
> + *
> + * Returns: 0 on success, negative errno on failure.
> + */
> +int igt_pci_probe_drivers(const char *pci_slot)
> +{
> + int pci;
> + bool ok;
> +
> + pci = open("/sys/bus/pci", O_DIRECTORY | O_RDONLY);
> + if (pci < 0)
> + return -errno;
> +
> + ok = igt_sysfs_set(pci, "drivers_probe", pci_slot);
> + close(pci);
> +
> + return ok ? 0 : -errno;
> +}
> +
> +/**
> + * igt_pci_get_bound_driver_name:
> + * @pci_slot: PCI device BDF (e.g. "0000:01:00.0")
> + * @driver: destination buffer for the bound driver name
> + * @driver_len: size of @driver in bytes (may be 0 if @driver is NULL)
> + *
> + * Read the currently bound PCI driver name for @pci_slot by inspecting the
> + * /sys/bus/pci/devices/<BDF>/driver symlink.
> + *
> + * @driver/@driver_len are optional. Callers may pass NULL and/or 0 when they
> + * only need the bound/unbound status and do not care about the driver name.
> + *
> + * Return values:
> + * 1: device is bound and @driver contains the driver name
> + * 0: device is unbound (no driver symlink)
> + * <0: negative errno-like value on error
> + */
> +int igt_pci_get_bound_driver_name(const char *pci_slot, char *driver, size_t driver_len)
> +{
> + char path[PATH_MAX];
> + char link[PATH_MAX];
> + const char *base;
> + ssize_t len;
> +
> + if (driver && driver_len)
> + driver[0] = '\0';
> +
> + snprintf(path, sizeof(path), "/sys/bus/pci/devices/%s/driver", pci_slot);
> + len = readlink(path, link, sizeof(link) - 1);
> + if (len < 0) {
> + if (errno == ENOENT)
> + return 0; /* unbound */
> +
> + return -errno;
> + }
> +
> + link[len] = '\0';
> + base = strrchr(link, '/');
> + base = base ? base + 1 : link;
> +
> + if (driver && driver_len)
> + snprintf(driver, driver_len, "%s", base);
> +
> + return 1;
> +}
> +
> +/**
> + * igt_pci_bind_driver_override:
> + * @pci_slot: PCI device BDF (e.g. "0000:01:00.0")
> + * @driver: PCI driver name to bind (must not be NULL or empty)
> + * @timeout_ms: how long to wait for the device to become bound.
> + * If 0, don't wait (best-effort immediate check only).
> + *
> + * Bind @pci_slot to @driver using the driver_override mechanism.
> + *
> + * This helper sets driver_override and immediately triggers driver
> + * reprobe so that the device is bound to the requested driver.
> + *
> + * Returns: 0 on success, negative errno-like value on failure.
> + * A reprobe request can be accepted by sysfs while the driver probe
> + * fails later; this helper verifies the device ended up bound.
> + *
> + * On bind failure, returns a negative error and the failure reason may
> + * also be logged to dmesg by the kernel driver.
> + */
> +int igt_pci_bind_driver_override(const char *pci_slot, const char *driver,
> + unsigned int timeout_ms)
> +{
> + int ret;
> + char bound[64];
> + int bound_ret;
> + bool bound_ok;
> +
> + if (!driver || !driver[0])
> + return -EINVAL;
> +
> + ret = igt_pci_set_driver_override(pci_slot, driver);
> + if (ret)
> + return ret;
> +
> + ret = igt_pci_probe_drivers(pci_slot);
> + if (ret)
> + return ret;
> +
> + /*
> + * Writing to drivers_probe only tells us the kernel accepted the request.
> + * The actual driver probe may still fail (and only be reported via dmesg).
> + * Verify that the device ended up bound to the requested driver.
> + */
> + bound_ret = igt_pci_get_bound_driver_name(pci_slot, bound, sizeof(bound));
> + if (bound_ret < 0)
> + return bound_ret;
> +
> + if (timeout_ms == 0) {
> + /*
> + * No waiting requested. If the device is already bound, validate
> + * it is bound to the expected driver; otherwise treat as
> + * best-effort request-only success.
> + */
> + if (bound_ret > 0 && strcmp(bound, driver))
> + return -EBUSY;
> +
> + return 0;
> + }
> +
> + bound_ok = igt_wait((bound_ret =
> + igt_pci_get_bound_driver_name(pci_slot, bound, sizeof(bound))) != 0,
> + timeout_ms, 1);
> + if (!bound_ok)
> + return -EIO;
> +
> + if (bound_ret < 0)
> + return bound_ret;
> +
> + if (strcmp(bound, driver))
> + return -EBUSY;
> +
> + return 0;
> +}
> +
> +/**
> + * igt_pci_unbind_driver_override:
> + * @pci_slot: PCI device BDF (e.g. "0000:01:00.0")
> + * @timeout_ms: how long to wait for the device to become unbound.
> + * If 0, don't wait (best-effort immediate check only).
> + *
> + * Unbind @pci_slot from its currently bound driver (if any) and clear
> + * any driver_override setting.
> + *
> + * This is the inverse operation of igt_pci_bind_driver_override().
> + *
> + * Returns: 0 on success, negative errno on failure.
> + */
> +int igt_pci_unbind_driver_override(const char *pci_slot, unsigned int timeout_ms)
> +{
> + int ret;
> + int bound_ret;
> + char bound[64];
> + bool unbound_ok;
> +
> + ret = igt_pci_device_unbind(pci_slot);
> + if (ret)
> + return ret;
> +
> + ret = igt_pci_set_driver_override(pci_slot, "");
> + if (ret)
> + return ret;
> +
> + bound_ret = igt_pci_get_bound_driver_name(pci_slot, bound, sizeof(bound));
> + if (bound_ret < 0)
> + return bound_ret;
> +
> + if (timeout_ms == 0)
> + return 0;
> +
> + /* Verify the device actually ends up unbound (driver symlink removed). */
> + unbound_ok = igt_wait((bound_ret =
> + igt_pci_get_bound_driver_name(pci_slot, bound, sizeof(bound))) == 0,
> + timeout_ms, 1);
> + if (!unbound_ok)
> + return -EBUSY;
> +
> + if (bound_ret < 0)
> + return bound_ret;
> +
> + return 0;
> +}
> diff --git a/lib/igt_pci.h b/lib/igt_pci.h
> index 84355e9dd..509345b2d 100644
> --- a/lib/igt_pci.h
> +++ b/lib/igt_pci.h
> @@ -6,8 +6,9 @@
> #ifndef __IGT_PCI_H__
> #define __IGT_PCI_H__
>
> -#include <stdint.h>
> #include <endian.h>
> +#include <stddef.h>
> +#include <stdint.h>
>
> /* forward declaration */
> struct pci_device;
> @@ -26,5 +27,15 @@ enum pci_cap_id {
> #define PCI_SLOT_PWR_CTRL_PRESENT (1 << 1)
>
> int find_pci_cap_offset(struct pci_device *dev, enum pci_cap_id cap_id);
> +int igt_pci_device_unbind(const char *pci_slot);
> +int igt_pci_driver_bind(const char *driver, const char *pci_slot);
> +int igt_pci_driver_unbind(const char *driver, const char *pci_slot);
> +int igt_pci_driver_unbind_all(const char *driver);
> +int igt_pci_set_driver_override(const char *pci_slot, const char *driver);
> +int igt_pci_probe_drivers(const char *pci_slot);
> +int igt_pci_get_bound_driver_name(const char *pci_slot, char *driver, size_t driver_len);
> +int igt_pci_bind_driver_override(const char *pci_slot, const char *driver,
> + unsigned int timeout_ms);
> +int igt_pci_unbind_driver_override(const char *pci_slot, unsigned int timeout_ms);
>
> #endif
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v4 i-g-t 3/6] tests/intel/xe_sriov_flr: Attach VFs to xe-vfio-pci before initiating FLR
2026-02-11 11:18 [PATCH v4 i-g-t 0/6] PCI driver helpers and xe-vfio-pci FLR improvement Marcin Bernatowicz
2026-02-11 11:18 ` [PATCH v4 i-g-t 1/6] lib/igt_sriov_device: Add helper to get VF PCI slot address Marcin Bernatowicz
2026-02-11 11:18 ` [PATCH v4 i-g-t 2/6] lib/igt_pci: Add generic PCI driver override and bind/unbind helpers Marcin Bernatowicz
@ 2026-02-11 11:18 ` Marcin Bernatowicz
2026-02-11 11:18 ` [PATCH v4 i-g-t 4/6] lib/igt_kmod: Fix PCI bind/unbind for module/driver name mismatch Marcin Bernatowicz
` (6 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Marcin Bernatowicz @ 2026-02-11 11:18 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Michał Winiarski, Adam Miszczak,
Jakub Kolakowski, Lukasz Laguna
Attach all VFs to the xe-vfio-pci driver before running the FLR scenario.
This allows the test to rely on xe-vfio-pci’s FLR wait handling, which is
triggered when writing to the VF reset sysfs attribute.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Suggested-by: Michał Winiarski <michal.winiarski@intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
tests/intel/xe_sriov_flr.c | 65 ++++++++++++++++++++++++++++++++++++++
1 file changed, 65 insertions(+)
diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c
index 12989d0f5..2f6b24cf0 100644
--- a/tests/intel/xe_sriov_flr.c
+++ b/tests/intel/xe_sriov_flr.c
@@ -9,6 +9,8 @@
#include "drmtest.h"
#include "igt_core.h"
#include "igt_device.h"
+#include "igt_kmod.h"
+#include "igt_pci.h"
#include "igt_sriov_device.h"
#include "intel_chipset.h"
#include "intel_vram.h"
@@ -57,6 +59,8 @@ static const char STOP_REASON_ABORT[] = "ABORT";
static const char STOP_REASON_FAIL[] = "FAIL";
static const char STOP_REASON_SKIP[] = "SKIP";
+#define DRIVER_OVERRIDE_TIMEOUT_MS 200
+
static struct g_mmio {
struct xe_mmio *mmio;
unsigned int num_vfs;
@@ -276,6 +280,47 @@ static void subchecks_report_results(struct subcheck *checks, int num_checks)
igt_skip_on(skips == num_checks);
}
+static bool vf_bind_driver_override(int pf_fd, unsigned int vf_id,
+ const char *driver)
+{
+ char *slot = igt_sriov_get_vf_pci_slot_alloc(pf_fd, vf_id);
+ int ret;
+ char bound[64] = "none";
+ int bound_ret;
+
+ igt_assert(slot);
+ igt_assert(driver);
+
+ ret = igt_pci_bind_driver_override(slot, driver, DRIVER_OVERRIDE_TIMEOUT_MS);
+ if (ret < 0) {
+ bound_ret = igt_pci_get_bound_driver_name(slot, bound, sizeof(bound));
+ if (bound_ret <= 0)
+ snprintf(bound, sizeof(bound), "%s", "none");
+
+ igt_warn_on_f(true,
+ "bind %s (VF%u) to %s ret=%d (currently bound: %s)\n",
+ slot, vf_id, driver, ret, bound);
+ }
+
+ free(slot);
+
+ return ret >= 0;
+}
+
+static void vf_unbind_driver_override(int pf_fd, unsigned int vf_id)
+{
+ char *slot = igt_sriov_get_vf_pci_slot_alloc(pf_fd, vf_id);
+ int ret;
+
+ igt_assert(slot);
+
+ ret = igt_pci_unbind_driver_override(slot, DRIVER_OVERRIDE_TIMEOUT_MS);
+ igt_warn_on_f(ret < 0, "unbind %s (VF%u) driver_override ret=%d\n",
+ slot, vf_id, ret);
+
+ free(slot);
+}
+
/**
* flr_exec_strategy - Function pointer for FLR execution strategy
* @pf_fd: File descriptor for the Physical Function (PF).
@@ -325,6 +370,8 @@ static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks,
{
const int wait_flr_ms = 200;
int i, vf_id, flr_vf_id = -1;
+ bool xe_vfio_loaded;
+ bool *vf_bound = NULL;
igt_sriov_disable_driver_autoprobe(pf_fd);
igt_sriov_enable_vfs(pf_fd, num_vfs);
@@ -335,6 +382,16 @@ static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks,
if (igt_warn_on(igt_pci_system_reinit()))
goto disable_vfs;
+ xe_vfio_loaded = igt_kmod_load("xe_vfio_pci", NULL) >= 0;
+ if (xe_vfio_loaded) {
+ vf_bound = calloc(num_vfs + 1, sizeof(*vf_bound));
+ igt_assert(vf_bound);
+
+ igt_sriov_enable_driver_autoprobe(pf_fd);
+ for (vf_id = 1; vf_id <= num_vfs; vf_id++)
+ vf_bound[vf_id] = vf_bind_driver_override(pf_fd, vf_id, "xe-vfio-pci");
+ }
+
init_mmio(pf_fd, num_vfs);
for (i = 0; i < num_checks; ++i)
@@ -357,6 +414,14 @@ cleanup:
cleanup_mmio();
+ if (xe_vfio_loaded) {
+ for (vf_id = 1; vf_id <= num_vfs; vf_id++)
+ if (vf_bound && vf_bound[vf_id])
+ vf_unbind_driver_override(pf_fd, vf_id);
+ }
+
+ free(vf_bound);
+
disable_vfs:
igt_sriov_disable_vfs(pf_fd);
--
2.43.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH v4 i-g-t 4/6] lib/igt_kmod: Fix PCI bind/unbind for module/driver name mismatch
2026-02-11 11:18 [PATCH v4 i-g-t 0/6] PCI driver helpers and xe-vfio-pci FLR improvement Marcin Bernatowicz
` (2 preceding siblings ...)
2026-02-11 11:18 ` [PATCH v4 i-g-t 3/6] tests/intel/xe_sriov_flr: Attach VFs to xe-vfio-pci before initiating FLR Marcin Bernatowicz
@ 2026-02-11 11:18 ` Marcin Bernatowicz
2026-02-11 11:18 ` [PATCH v4 i-g-t 5/6] tests/intel/xe_sriov_flr: Add --wait-flr-ms option Marcin Bernatowicz
` (5 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Marcin Bernatowicz @ 2026-02-11 11:18 UTC (permalink / raw)
To: igt-dev; +Cc: Marcin Bernatowicz, Kamil Konieczny, Francois Dugast,
Lukasz Laguna
igt_kmod_bind() and igt_kmod_unbind() assumed that the PCI
driver name was identical to the module name, which is not true
for drivers such as xe_vfio_pci (module) vs xe-vfio-pci (driver).
Resolve the registered PCI driver name via
/sys/module/<module>/drivers/pci:* and forward bind/unbind operations
to the generic PCI driver helpers.
Mark these helpers as deprecated, as bind/unbind are fundamentally
driver-level operations. New code should prefer the igt_pci_driver_*
APIs, while these wrappers remain for backwards compatibility and
“unbind before module unload” workflows.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
lib/igt_kmod.c | 90 ++++++++++++++++++++++++++++----------------------
1 file changed, 51 insertions(+), 39 deletions(-)
diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c
index d1d7a3840..008752f29 100644
--- a/lib/igt_kmod.c
+++ b/lib/igt_kmod.c
@@ -44,6 +44,7 @@
#include "igt_hook.h"
#include "igt_kmod.h"
#include "igt_ktap.h"
+#include "igt_pci.h"
#include "igt_sysfs.h"
#include "igt_taints.h"
@@ -598,43 +599,58 @@ int __igt_intel_driver_unload(char **who, const char *driver)
return 0;
}
+static char *kmod_pci_driver_from_module_alloc(const char *mod_name)
+{
+ char dirpath[PATH_MAX];
+ struct dirent *de;
+ DIR *d;
+
+ snprintf(dirpath, sizeof(dirpath), "/sys/module/%s/drivers", mod_name);
+ d = opendir(dirpath);
+ if (!d)
+ return NULL;
+
+ while ((de = readdir(d))) {
+ if (!strncmp(de->d_name, "pci:", 4)) {
+ char *drv = strdup(de->d_name + 4);
+
+ closedir(d);
+ return drv;
+ }
+ }
+
+ closedir(d);
+ return NULL;
+}
+
/**
* igt_kmod_unbind: Unbind driver from devices. Currently supports only PCI bus
* @mod_name: name of the module to unbind
* @pci_device: if provided, unbind only this device, otherwise unbind all devices
+ *
+ * Deprecated: bind/unbind is a driver operation. Prefer using:
+ * - igt_pci_driver_unbind()/igt_pci_driver_unbind_all()
+ * - igt_pci_device_unbind()
+ *
+ * This helper remains for backwards compatibility and for “unbind before
+ * module unload” workflows.
*/
int igt_kmod_unbind(const char *mod_name, const char *pci_device)
{
struct igt_hook *igt_hook = NULL;
- char path[PATH_MAX];
- struct dirent *de;
- int dirlen;
- DIR *dir;
-
- dirlen = snprintf(path, sizeof(path), "/sys/module/%s/drivers/pci:%s/",
- mod_name, mod_name);
- igt_assert(dirlen < sizeof(path));
-
- dir = opendir(path);
-
- /* Module not loaded, nothing to unbind */
- if (!dir)
- return 0;
-
- while ((de = readdir(dir))) {
- bool ret;
-
- if (de->d_type != DT_LNK || !isdigit(de->d_name[0]))
- continue;
+ char *driver;
+ int ret;
- if (pci_device && strcmp(pci_device, de->d_name) != 0)
- continue;
+ driver = kmod_pci_driver_from_module_alloc(mod_name);
+ if (!driver)
+ return 0; /* module not loaded / no pci driver */
- ret = igt_sysfs_set(dirfd(dir), "unbind", de->d_name);
- igt_assert(ret);
- }
+ if (pci_device)
+ ret = igt_pci_driver_unbind(driver, pci_device);
+ else
+ ret = igt_pci_driver_unbind_all(driver);
- closedir(dir);
+ free(driver);
igt_hook = igt_core_get_igt_hook();
igt_hook_event_notify(igt_hook, &(struct igt_hook_evt){
@@ -642,7 +658,7 @@ int igt_kmod_unbind(const char *mod_name, const char *pci_device)
.target_name = mod_name,
});
- return 0;
+ return ret;
}
/**
@@ -651,25 +667,21 @@ int igt_kmod_unbind(const char *mod_name, const char *pci_device)
* @pci_device: device to bind
*
* Module should already be loaded
+ *
+ * Deprecated: prefer igt_pci_driver_bind().
*/
int igt_kmod_bind(const char *mod_name, const char *pci_device)
{
- char path[PATH_MAX];
- int dirlen, dirfd;
+ char *driver;
int ret;
- dirlen = snprintf(path, sizeof(path), "/sys/module/%s/drivers/pci:%s/",
- mod_name, mod_name);
- igt_assert(dirlen < sizeof(path));
-
- dirfd = open(path, O_RDONLY | O_CLOEXEC);
- if (dirfd < 0)
- return dirfd;
-
- ret = igt_sysfs_set(dirfd, "bind", pci_device);
+ driver = kmod_pci_driver_from_module_alloc(mod_name);
+ if (!driver)
+ return -ENOENT;
- close(dirfd);
+ ret = igt_pci_driver_bind(driver, pci_device);
+ free(driver);
return ret;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH v4 i-g-t 5/6] tests/intel/xe_sriov_flr: Add --wait-flr-ms option
2026-02-11 11:18 [PATCH v4 i-g-t 0/6] PCI driver helpers and xe-vfio-pci FLR improvement Marcin Bernatowicz
` (3 preceding siblings ...)
2026-02-11 11:18 ` [PATCH v4 i-g-t 4/6] lib/igt_kmod: Fix PCI bind/unbind for module/driver name mismatch Marcin Bernatowicz
@ 2026-02-11 11:18 ` Marcin Bernatowicz
2026-02-11 11:18 ` [PATCH v4 i-g-t 6/6] tests/intel/xe_sriov_flr: Add --no-xe-vfio-pci option Marcin Bernatowicz
` (4 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Marcin Bernatowicz @ 2026-02-11 11:18 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Jakub Kolakowski, Lukasz Laguna,
Piotr Piórkowski
Make the post-FLR sleep configurable (default 200ms).
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
tests/intel/xe_sriov_flr.c | 36 ++++++++++++++++++++++++++++++++++--
1 file changed, 34 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c
index 2f6b24cf0..951628159 100644
--- a/tests/intel/xe_sriov_flr.c
+++ b/tests/intel/xe_sriov_flr.c
@@ -4,6 +4,7 @@
*/
#include <fcntl.h>
+#include <limits.h>
#include <pthread.h>
#include <sys/stat.h>
#include "drmtest.h"
@@ -61,6 +62,8 @@ static const char STOP_REASON_SKIP[] = "SKIP";
#define DRIVER_OVERRIDE_TIMEOUT_MS 200
+static int g_wait_flr_ms = 200;
+
static struct g_mmio {
struct xe_mmio *mmio;
unsigned int num_vfs;
@@ -368,7 +371,7 @@ typedef int (*flr_exec_strategy)(int pf_fd, int num_vfs,
static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks,
int num_checks, flr_exec_strategy exec_strategy)
{
- const int wait_flr_ms = 200;
+ const int wait_flr_ms = g_wait_flr_ms;
int i, vf_id, flr_vf_id = -1;
bool xe_vfio_loaded;
bool *vf_bound = NULL;
@@ -1088,7 +1091,36 @@ static void clear_tests(int pf_fd, int num_vfs, flr_exec_strategy exec_strategy)
verify_flr(pf_fd, num_vfs, checks, num_checks, exec_strategy);
}
-int igt_main()
+static int opt_handler(int opt, int opt_index, void *data)
+{
+ char *end = NULL;
+ long val;
+
+ switch (opt) {
+ case 'w':
+ errno = 0;
+ val = strtol(optarg, &end, 0);
+ if (errno || !end || *end != '\0' || val < 0 || val > INT_MAX)
+ return IGT_OPT_HANDLER_ERROR;
+ g_wait_flr_ms = (int)val;
+ igt_info("Using wait_flr_ms=%d\n", g_wait_flr_ms);
+ break;
+ default:
+ return IGT_OPT_HANDLER_ERROR;
+ }
+
+ return IGT_OPT_HANDLER_SUCCESS;
+}
+
+static const struct option long_options[] = {
+ { .name = "wait-flr-ms", .has_arg = true, .val = 'w', },
+ {},
+};
+
+static const char help_str[] =
+ " --wait-flr-ms=MS\tSleep MS milliseconds after VF reset sysfs write (default: 200)\n";
+
+int igt_main_args("w:", long_options, help_str, opt_handler, NULL)
{
int pf_fd;
bool autoprobe;
--
2.43.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH v4 i-g-t 6/6] tests/intel/xe_sriov_flr: Add --no-xe-vfio-pci option
2026-02-11 11:18 [PATCH v4 i-g-t 0/6] PCI driver helpers and xe-vfio-pci FLR improvement Marcin Bernatowicz
` (4 preceding siblings ...)
2026-02-11 11:18 ` [PATCH v4 i-g-t 5/6] tests/intel/xe_sriov_flr: Add --wait-flr-ms option Marcin Bernatowicz
@ 2026-02-11 11:18 ` Marcin Bernatowicz
2026-02-11 12:37 ` ✓ i915.CI.BAT: success for PCI driver helpers and xe-vfio-pci FLR improvement (rev4) Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Marcin Bernatowicz @ 2026-02-11 11:18 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Jakub Kolakowski, Lukasz Laguna,
Piotr Piórkowski
Add --no-xe-vfio-pci to skip loading/binding VFs to xe-vfio-pci.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
tests/intel/xe_sriov_flr.c | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c
index 951628159..b73727787 100644
--- a/tests/intel/xe_sriov_flr.c
+++ b/tests/intel/xe_sriov_flr.c
@@ -63,6 +63,7 @@ static const char STOP_REASON_SKIP[] = "SKIP";
#define DRIVER_OVERRIDE_TIMEOUT_MS 200
static int g_wait_flr_ms = 200;
+static bool g_use_xe_vfio_pci = true;
static struct g_mmio {
struct xe_mmio *mmio;
@@ -385,7 +386,9 @@ static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks,
if (igt_warn_on(igt_pci_system_reinit()))
goto disable_vfs;
- xe_vfio_loaded = igt_kmod_load("xe_vfio_pci", NULL) >= 0;
+ xe_vfio_loaded = false;
+ if (g_use_xe_vfio_pci)
+ xe_vfio_loaded = igt_kmod_load("xe_vfio_pci", NULL) >= 0;
if (xe_vfio_loaded) {
vf_bound = calloc(num_vfs + 1, sizeof(*vf_bound));
igt_assert(vf_bound);
@@ -1097,6 +1100,10 @@ static int opt_handler(int opt, int opt_index, void *data)
long val;
switch (opt) {
+ case 'v':
+ g_use_xe_vfio_pci = false;
+ igt_info("xe-vfio-pci binding: disabled\n");
+ break;
case 'w':
errno = 0;
val = strtol(optarg, &end, 0);
@@ -1113,14 +1120,16 @@ static int opt_handler(int opt, int opt_index, void *data)
}
static const struct option long_options[] = {
+ { .name = "no-xe-vfio-pci", .has_arg = false, .val = 'v', },
{ .name = "wait-flr-ms", .has_arg = true, .val = 'w', },
{},
};
static const char help_str[] =
+ " --no-xe-vfio-pci\tDo not load/bind xe-vfio-pci for VFs\n"
" --wait-flr-ms=MS\tSleep MS milliseconds after VF reset sysfs write (default: 200)\n";
-int igt_main_args("w:", long_options, help_str, opt_handler, NULL)
+int igt_main_args("vw:", long_options, help_str, opt_handler, NULL)
{
int pf_fd;
bool autoprobe;
--
2.43.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* ✓ i915.CI.BAT: success for PCI driver helpers and xe-vfio-pci FLR improvement (rev4)
2026-02-11 11:18 [PATCH v4 i-g-t 0/6] PCI driver helpers and xe-vfio-pci FLR improvement Marcin Bernatowicz
` (5 preceding siblings ...)
2026-02-11 11:18 ` [PATCH v4 i-g-t 6/6] tests/intel/xe_sriov_flr: Add --no-xe-vfio-pci option Marcin Bernatowicz
@ 2026-02-11 12:37 ` Patchwork
2026-02-11 13:16 ` ✗ Xe.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2026-02-11 12:37 UTC (permalink / raw)
To: Bernatowicz, Marcin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3558 bytes --]
== Series Details ==
Series: PCI driver helpers and xe-vfio-pci FLR improvement (rev4)
URL : https://patchwork.freedesktop.org/series/160140/
State : success
== Summary ==
CI Bug Log - changes from IGT_8749 -> IGTPW_14539
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/index.html
Participating hosts (42 -> 41)
------------------------------
Additional (1): bat-kbl-2
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14539 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][1] ([i915#1849])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/bat-kbl-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][2] +24 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_selftest@live:
- bat-jsl-1: [PASS][3] -> [DMESG-FAIL][4] ([i915#15394]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/bat-jsl-1/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/bat-jsl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/bat-arls-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-kbl-2: NOTRUN -> [SKIP][9] ([i915#11190]) +16 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/bat-kbl-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][10] ([i915#12061]) -> [PASS][11] +1 other test pass
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/bat-mtlp-8/igt@i915_selftest@live.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/bat-mtlp-8/igt@i915_selftest@live.html
[i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15394
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8749 -> IGTPW_14539
CI-20190529: 20190529
CI_DRM_17975: f37b96494b210e3ceec9c8c369dcd8f05fb30669 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14539: b896e43034c432c4a69c2b8a0cfb0d878d2c763c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8749: 195f101f25a7984686f36f340aa88d44a1716ec6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/index.html
[-- Attachment #2: Type: text/html, Size: 4454 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread* ✗ Xe.CI.BAT: failure for PCI driver helpers and xe-vfio-pci FLR improvement (rev4)
2026-02-11 11:18 [PATCH v4 i-g-t 0/6] PCI driver helpers and xe-vfio-pci FLR improvement Marcin Bernatowicz
` (6 preceding siblings ...)
2026-02-11 12:37 ` ✓ i915.CI.BAT: success for PCI driver helpers and xe-vfio-pci FLR improvement (rev4) Patchwork
@ 2026-02-11 13:16 ` Patchwork
2026-02-12 9:14 ` Bernatowicz, Marcin
2026-02-11 16:07 ` ✗ Xe.CI.FULL: " Patchwork
2026-02-11 21:36 ` ✗ i915.CI.Full: " Patchwork
9 siblings, 1 reply; 15+ messages in thread
From: Patchwork @ 2026-02-11 13:16 UTC (permalink / raw)
To: Bernatowicz, Marcin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2854 bytes --]
== Series Details ==
Series: PCI driver helpers and xe-vfio-pci FLR improvement (rev4)
URL : https://patchwork.freedesktop.org/series/160140/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8749_BAT -> XEIGTPW_14539_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14539_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14539_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 10)
------------------------------
Additional (1): bat-bmg-3
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14539_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@unbind-rebind:
- bat-bmg-2: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- bat-bmg-3: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-adlp-7: [PASS][4] -> [WARN][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/bat-adlp-7/igt@xe_sriov_flr@flr-vf1-clear.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/bat-adlp-7/igt@xe_sriov_flr@flr-vf1-clear.html
Known issues
------------
Here are the changes found in XEIGTPW_14539_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_waitfence@engine:
- bat-bmg-1: [FAIL][6] ([Intel XE#6519]) -> [PASS][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/bat-bmg-1/igt@xe_waitfence@engine.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/bat-bmg-1/igt@xe_waitfence@engine.html
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
Build changes
-------------
* IGT: IGT_8749 -> IGTPW_14539
IGTPW_14539: b896e43034c432c4a69c2b8a0cfb0d878d2c763c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8749: 195f101f25a7984686f36f340aa88d44a1716ec6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4543-f37b96494b210e3ceec9c8c369dcd8f05fb30669: f37b96494b210e3ceec9c8c369dcd8f05fb30669
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/index.html
[-- Attachment #2: Type: text/html, Size: 3529 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread* ✗ Xe.CI.FULL: failure for PCI driver helpers and xe-vfio-pci FLR improvement (rev4)
2026-02-11 11:18 [PATCH v4 i-g-t 0/6] PCI driver helpers and xe-vfio-pci FLR improvement Marcin Bernatowicz
` (7 preceding siblings ...)
2026-02-11 13:16 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-02-11 16:07 ` Patchwork
2026-02-12 8:55 ` Bernatowicz, Marcin
2026-02-11 21:36 ` ✗ i915.CI.Full: " Patchwork
9 siblings, 1 reply; 15+ messages in thread
From: Patchwork @ 2026-02-11 16:07 UTC (permalink / raw)
To: Bernatowicz, Marcin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 49111 bytes --]
== Series Details ==
Series: PCI driver helpers and xe-vfio-pci FLR improvement (rev4)
URL : https://patchwork.freedesktop.org/series/160140/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8749_FULL -> XEIGTPW_14539_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14539_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14539_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14539_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-lnl-5/igt@xe_pm@s4-multiple-execs.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-4/igt@xe_pm@s4-multiple-execs.html
Known issues
------------
Here are the changes found in XEIGTPW_14539_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#3718] / [Intel XE#6078])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2:
- shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#6078])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [PASS][9] -> [FAIL][10] ([Intel XE#6054]) +3 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#367])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#367])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +5 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +5 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-9/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][20] -> [INCOMPLETE][21] ([Intel XE#7084])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#3432])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#3432]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2325])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-7/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#373]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2252]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][27] ([Intel XE#3304])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-7/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#6973])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-8/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#307] / [Intel XE#6974])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-6/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2390] / [Intel XE#6974])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1424]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-7/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2320]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2321]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2321])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#309])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][36] -> [FAIL][37] ([Intel XE#5299])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2286])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#4354])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-8/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#4331])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#2244]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1421]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-4/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7178]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#7178]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2311]) +9 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#651]) +6 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4141]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7061]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#656]) +15 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#7061])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2313]) +7 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@static-swap:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1503])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-5/igt@kms_hdr@static-swap.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2486])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-7/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#7130]) +12 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-4/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#7130] / [Intel XE#7131])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#7131]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-a-plane-0:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7130]) +13 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7111] / [Intel XE#7130]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7131])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7111] / [Intel XE#7131])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane_alpha_blend@constant-alpha-mid:
- shard-bmg: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#3428]) +2 other tests dmesg-warn
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-4/igt@kms_plane_alpha_blend@constant-alpha-mid.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-3/igt@kms_plane_alpha_blend@constant-alpha-mid.html
* igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][64] ([Intel XE#3428])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-3/igt@kms_plane_alpha_blend@constant-alpha-mid@pipe-d-hdmi-a-3.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#5021])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#4596])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2938])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-4/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#718])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#3309])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: NOTRUN -> [FAIL][71] ([Intel XE#718])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- shard-lnl: [PASS][72] -> [SKIP][73] ([Intel XE#7197])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-lnl-3/igt@kms_pm_rpm@legacy-planes-dpms.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-2/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2893])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr@fbc-psr2-primary-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1406]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-7/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-1/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1127])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#3414] / [Intel XE#3904])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#3414] / [Intel XE#3904])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-3:
- shard-bmg: [PASS][84] -> [FAIL][85] ([Intel XE#6361])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-1/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1435])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1435])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-rotations:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#6503])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-10/igt@kms_sharpness_filter@filter-rotations.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2426])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#1499])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-5/igt@kms_vrr@flip-basic-fastset.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#6599])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-9/igt@xe_compute@ccs-mode-basic.html
* igt@xe_eudebug@basic-vms:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#4837]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@xe_eudebug@basic-vms.html
* igt@xe_eudebug_online@interrupt-other:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@xe_eudebug_online@interrupt-other.html
* igt@xe_eudebug_online@pagefault-one-of-many:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#6665])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-9/igt@xe_eudebug_online@pagefault-one-of-many.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-7/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#688]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1392]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2322]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7136]) +4 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#7136]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-6/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#6874]) +13 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-5/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_multi_queue@many-queues-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#6874]) +10 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@xe_exec_multi_queue@many-queues-basic-smem.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip-twice:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#4837]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-4/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html
* igt@xe_exec_system_allocator@many-64k-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#5007])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-5/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#6196])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma.html
* igt@xe_exec_system_allocator@threads-many-stride-mmap-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#4943]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-1/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#4943]) +6 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html
* igt@xe_exec_threads@threads-multi-queue-cm-basic:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#7138]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-2/igt@xe_exec_threads@threads-multi-queue-cm-basic.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#7138]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-userptr.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [DMESG-WARN][110] ([Intel XE#7145])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-2/igt@xe_module_load@force-load.html
* igt@xe_multigpu_svm@mgpu-latency-copy-basic:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#6964]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-7/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#6964]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-7/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2245])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-6/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#2284] / [Intel XE#366])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-5/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2284])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-9/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#7161])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-4/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#944]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-4/igt@xe_query@multigpu-query-mem-usage.html
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#944])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-7/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#4130]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-5/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-bmg: [PASS][121] -> [FAIL][122] ([Intel XE#5937]) +1 other test fail
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-4/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-4/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
* igt@xe_sriov_vram@vf-access-provisioned:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#6376])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-2/igt@xe_sriov_vram@vf-access-provisioned.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [INCOMPLETE][124] ([Intel XE#2705] / [Intel XE#6819] / [Intel XE#6904]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-2:
- shard-bmg: [INCOMPLETE][126] ([Intel XE#2705] / [Intel XE#6819]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-2.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-2.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][128] ([Intel XE#1503]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][130] ([Intel XE#6361]) -> [PASS][131] +2 other tests pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_enhance1:
- shard-bmg: [DMESG-WARN][132] ([Intel XE#3428]) -> [PASS][133] +2 other tests pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-3/igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_enhance1.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-9/igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_enhance1.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-bmg: [FAIL][134] ([Intel XE#5937]) -> [PASS][135] +1 other test pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-1/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][136] ([Intel XE#2312]) -> [SKIP][137] ([Intel XE#2313])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][138] ([Intel XE#3544]) -> [SKIP][139] ([Intel XE#3374] / [Intel XE#3544])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: [ABORT][140] ([Intel XE#5466] / [Intel XE#6652]) -> [ABORT][141] ([Intel XE#5466])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [SKIP][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167]) ([Intel XE#2457]) -> ([PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [DMESG-WARN][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [SKIP][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193]) ([Intel XE#2457] / [Intel XE#3428])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-5/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-3/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-1/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-1/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-1/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-5/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-6/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-6/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-6/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-3/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-7/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-7/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-5/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-8/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-7/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-10/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-10/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-3/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-9/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-9/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-8/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-4/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-4/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-4/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-10/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8749/shard-bmg-5/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-4/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-10/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-5/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-9/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-8/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-3/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-6/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-9/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-3/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-3/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-9/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-4/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-1/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-10/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-4/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-5/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-5/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-1/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-1/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-6/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-9/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-7/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-7/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/shard-bmg-6/igt@xe_module_load@load.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6904
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7145]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7145
[Intel XE#7161]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7161
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#7197]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7197
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8749 -> IGTPW_14539
IGTPW_14539: b896e43034c432c4a69c2b8a0cfb0d878d2c763c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8749: 195f101f25a7984686f36f340aa88d44a1716ec6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4543-f37b96494b210e3ceec9c8c369dcd8f05fb30669: f37b96494b210e3ceec9c8c369dcd8f05fb30669
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14539/index.html
[-- Attachment #2: Type: text/html, Size: 56641 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread* ✗ i915.CI.Full: failure for PCI driver helpers and xe-vfio-pci FLR improvement (rev4)
2026-02-11 11:18 [PATCH v4 i-g-t 0/6] PCI driver helpers and xe-vfio-pci FLR improvement Marcin Bernatowicz
` (8 preceding siblings ...)
2026-02-11 16:07 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-02-11 21:36 ` Patchwork
2026-02-12 8:54 ` Bernatowicz, Marcin
9 siblings, 1 reply; 15+ messages in thread
From: Patchwork @ 2026-02-11 21:36 UTC (permalink / raw)
To: Bernatowicz, Marcin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 150743 bytes --]
== Series Details ==
Series: PCI driver helpers and xe-vfio-pci FLR improvement (rev4)
URL : https://patchwork.freedesktop.org/series/160140/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8749_full -> IGTPW_14539_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14539_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14539_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_14539/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14539_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-tglu: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-tglu-7/igt@i915_pm_rpm@system-suspend-execbuf.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-10/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@kms_hdmi_inject@inject-4k:
- shard-mtlp: [PASS][3] -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-mtlp-5/igt@kms_hdmi_inject@inject-4k.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html
New tests
---------
New tests have been introduced between IGT_8749_full and IGTPW_14539_full:
### New IGT tests (3) ###
* igt@i915_pm_rps@coverage-7efc:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@cursor-offscreen-128x42:
- Statuses :
- Exec time: [None] s
* igt@i915_pm_rps@evict-snoop-interruptible:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in IGTPW_14539_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_buddy@drm_buddy:
- shard-tglu: NOTRUN -> [SKIP][5] ([i915#15678])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-9/igt@drm_buddy@drm_buddy.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#7697]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-4/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][10] ([i915#12392] / [i915#13356])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#6335])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#6335])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#280])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-5/igt@gem_ctx_sseu@mmap-args.html
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#280])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#280])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#280])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-rkl: [PASS][18] -> [INCOMPLETE][19] ([i915#13390])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-5/igt@gem_eio@in-flight-suspend.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-rkl: NOTRUN -> [DMESG-WARN][20] ([i915#13363])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@gem_eio@kms.html
- shard-tglu: [PASS][21] -> [ABORT][22] ([i915#13363])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-tglu-10/igt@gem_eio@kms.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-7/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4771])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-8/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-4/igt@gem_exec_balancer@bonded-semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4812])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-8/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@parallel:
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#4525]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-8/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#4525])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][30] ([i915#11965]) +4 other tests fail
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-8/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-18/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_reloc@basic-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@gem_exec_reloc@basic-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#4812]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4860])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][39] ([i915#2190])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk9/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@random:
- shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-9/igt@gem_lmem_swapping@random.html
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4613]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-7/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][43] ([i915#4613]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk9/igt@gem_lmem_swapping@verify-ccs.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#12193])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4565])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][46] ([i915#4613]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4083]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3282]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-11/igt@gem_pread@snoop.html
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3282]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@gem_pread@snoop.html
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3282])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-12/igt@gem_pread@snoop.html
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-4/igt@gem_pread@snoop.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#13717])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: [PASS][55] -> [SKIP][56] ([i915#4270])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-5/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4079])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#14544] / [i915#8411])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4079])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-16/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4079])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiled_pread_pwrite:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#14544] / [i915#3282])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#3297])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-11/igt@gem_userptr_blits@coherency-unsync.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-13/igt@gem_userptr_blits@coherency-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3297])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-3/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#3297]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#3297]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-8/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282] / [i915#3297])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: [PASS][68] -> [INCOMPLETE][69] ([i915#13356] / [i915#14586])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-glk6/igt@gem_workarounds@suspend-resume.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk3/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-3/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-oversize:
- shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#2527] / [i915#2856]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#2527]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@busy@rcs0:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#14073]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-12/igt@i915_drm_fdinfo@busy@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#14073]) +6 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-2/igt@i915_drm_fdinfo@busy@rcs0.html
* igt@i915_drm_fdinfo@busy@vecs1:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#14073]) +7 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-1/igt@i915_drm_fdinfo@busy@vecs1.html
* igt@i915_drm_fdinfo@virtual-busy-hang:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#14118])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-7/igt@i915_drm_fdinfo@virtual-busy-hang.html
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#14118])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy-hang.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#14118])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy-hang.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-dg1: NOTRUN -> [INCOMPLETE][79] ([i915#15481])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-17/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-dg2: NOTRUN -> [SKIP][80] +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@reset:
- shard-snb: NOTRUN -> [INCOMPLETE][81] ([i915#13729] / [i915#13821])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-snb4/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#11681])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-5/igt@i915_pm_rps@thresholds.html
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#11681])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-13/igt@i915_pm_rps@thresholds.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#11681])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-1/igt@i915_pm_rps@thresholds.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][85] ([i915#6245])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-8/igt@i915_query@hwconfig_table.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [PASS][86] -> [INCOMPLETE][87] ([i915#4817])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-8/igt@i915_suspend@debugfs-reader.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [PASS][88] -> [ABORT][89] ([i915#15140])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-2/igt@i915_suspend@fence-restore-tiled2untiled.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_atomic_transition@modeset-transition:
- shard-dg1: NOTRUN -> [DMESG-WARN][90] ([i915#4423])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@kms_atomic_transition@modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [PASS][91] -> [FAIL][92] ([i915#5956]) +1 other test fail
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#14544] / [i915#5286])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#5286]) +4 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#5286]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5286]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#5286]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][98] -> [FAIL][99] ([i915#5138])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#3638])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-13/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#3638])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#4538]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][103] +15 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5190]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#6095]) +188 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#14098] / [i915#6095]) +37 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#14544] / [i915#6095]) +9 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#6095]) +63 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#6095]) +40 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#10307] / [i915#6095]) +127 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#12805])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#12805])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#12805])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#12805])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-18/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#12805])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#6095]) +24 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#12805])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][120] ([i915#15582])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-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][121] ([i915#6095]) +74 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#12313])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#12313]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#12313])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#12313])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#12313])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6095]) +9 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_cdclk@mode-transition:
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#3742]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#11151] / [i915#7828]) +8 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-10/igt@kms_chamelium_audio@dp-audio.html
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#11151] / [i915#7828]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-8/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#11151] / [i915#7828]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-5/igt@kms_chamelium_edid@dp-mode-timings.html
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#11151] / [i915#7828]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-16/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828]) +5 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#11151] / [i915#7828]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color_pipeline@plane-ctm3x4@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][136] ([i915#15522]) +4 other tests fail
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-8/igt@kms_color_pipeline@plane-ctm3x4@pipe-c-edp-1.html
* igt@kms_content_protection@atomic:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#15330] / [i915#3116]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#6944])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#6944])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [FAIL][142] ([i915#7173]) +2 other tests fail
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-11/igt@kms_content_protection@srm.html
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#14544] / [i915#6944] / [i915#7118])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_content_protection@srm.html
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#6944] / [i915#7116] / [i915#7118])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#6944] / [i915#7116])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-13/igt@kms_content_protection@srm.html
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#6944])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#6944])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-7/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#13049]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][149] -> [FAIL][150] ([i915#13566]) +2 other tests fail
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-tglu: [PASS][151] -> [FAIL][152] ([i915#13566]) +3 other tests fail
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][153] ([i915#13566]) +3 other tests fail
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#3555]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#8814])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#3555])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#13049]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: NOTRUN -> [FAIL][158] ([i915#13566]) +1 other test fail
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#8814])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#13049]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#3555])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#9809])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#4103])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][164] -> [FAIL][165] ([i915#15588] / [i915#2346])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#4103]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#4103] / [i915#4213])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#4103] / [i915#4213])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#4213])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#9723])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#3804])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#13749] / [i915#14544])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#13749])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-3/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#13749])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-7/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#3840])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#3469])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-8/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#3469])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#4854])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#658])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_feature_discovery@psr2.html
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#658])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-18/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#658])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-8/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#658])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#9934]) +4 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#3637] / [i915#9934]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#3637] / [i915#9934]) +5 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-3/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#14544] / [i915#9934])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#9934]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-18/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#9934])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-8/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3637] / [i915#9934]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-3/igt@kms_flip@2x-flip-vs-suspend.html
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#9934]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-11/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: NOTRUN -> [TIMEOUT][193] ([i915#14033]) +1 other test timeout
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-snb6/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][194] ([i915#12745] / [i915#4839])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk9/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][195] ([i915#12745])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk9/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#15643])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#15643]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling:
- shard-glk10: NOTRUN -> [SKIP][198] +134 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#15643]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#15643])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#8708]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][202] +15 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#8708]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#1825]) +8 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#8708]) +3 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#15102]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#15102]) +2 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#14544] / [i915#15102])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#15102] / [i915#3458] / [i915#4423])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][210] +33 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#5354]) +6 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][212] +53 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#1825]) +23 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#15102]) +12 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#10433] / [i915#15102] / [i915#3458])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#5439])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#9766])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#15102]) +24 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#15102]) +3 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#15102] / [i915#3023]) +15 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#15102] / [i915#3458]) +5 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#15102] / [i915#3458]) +6 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#14544] / [i915#1825])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-1/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-12/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#12713])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8228]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#15459])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#15458])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-1/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#15458])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-16/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#15458])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-8/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#15458])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#15460])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-2/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#15458]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#15458])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#15638])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#6301])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][240] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#14544] / [i915#14712])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#14712])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-16/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#14712])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#15608] / [i915#15609] / [i915#8825]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-0:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#15608]) +27 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-0.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#15608] / [i915#8825]) +3 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-a-plane-0:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#14544] / [i915#15608])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-b-plane-0:
- shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#15608]) +12 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-b-plane-0.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#14544] / [i915#15608] / [i915#8825]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#15608] / [i915#8825]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#15608] / [i915#15609] / [i915#8825]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-0:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#15608]) +7 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#15609]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-5.html
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#15609]) +2 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-7:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#15609]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-3:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#15608]) +11 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-3.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#15609] / [i915#8825]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#15609] / [i915#8825]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#15608] / [i915#15609] / [i915#8825])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#15609])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#15609] / [i915#8825])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#15608] / [i915#8825]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-3:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#15608]) +24 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-3.html
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-4:
- shard-glk: NOTRUN -> [SKIP][266] +423 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk5/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-4.html
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#15609]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-2/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#15608] / [i915#15609] / [i915#8825])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-a-plane-3:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#15608]) +3 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-a-plane-3.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#15609]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-4/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#15609] / [i915#8825])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#15609] / [i915#8825]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-16/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-7.html
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#15609] / [i915#8825]) +2 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-glk: NOTRUN -> [INCOMPLETE][274] ([i915#13026]) +1 other test incomplete
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk10: NOTRUN -> [FAIL][275] ([i915#10647] / [i915#12177])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][276] ([i915#10647]) +1 other test fail
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][277] ([i915#10647] / [i915#12169])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][278] ([i915#10647]) +1 other test fail
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#13958])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-1/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#13958]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-8/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#13958])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#14259]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_plane_multiple@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#14259])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#15329]) +4 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#15329]) +4 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-10/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#15329]) +4 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#5354])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@kms_pm_backlight@basic-brightness.html
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#9812])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-8/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#12343])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-4/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#3828])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-16/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#14544] / [i915#9685])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
- shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#9685])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#4281])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#4281])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][295] -> [SKIP][296] ([i915#9340])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#4077]) +4 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-7/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][298] -> [SKIP][299] ([i915#15073]) +3 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: [PASS][300] -> [SKIP][301] ([i915#15073])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-12/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@fences-dpms:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#4077]) +3 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-5/igt@kms_pm_rpm@fences-dpms.html
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#4077]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@kms_pm_rpm@fences-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][304] -> [SKIP][305] ([i915#15073])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#15073])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#15073]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-dg1: [PASS][308] -> [DMESG-WARN][309] ([i915#4423]) +3 other tests dmesg-warn
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#15403])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_pm_rpm@package-g7.html
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#15403])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [PASS][312] -> [INCOMPLETE][313] ([i915#14419])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#6524] / [i915#6805])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-7/igt@kms_prime@basic-crc-hybrid.html
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#14544] / [i915#6524])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#6524])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-16/igt@kms_prime@basic-crc-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#6524])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-5/igt@kms_prime@basic-crc-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#6524])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#11520]) +4 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#11520]) +6 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][321] ([i915#11520]) +4 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-snb7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#11520]) +3 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#11520]) +5 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#12316]) +4 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][325] ([i915#11520]) +12 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#11520]) +2 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-glk10: NOTRUN -> [SKIP][327] ([i915#11520]) +2 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#9683])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-1/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#9683])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#9683])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-7/igt@kms_psr2_su@page_flip-p010.html
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#4348])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#9683]) +1 other test skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-13/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-basic:
- shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#9732]) +11 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@fbc-psr2-primary-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#9688]) +4 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-8/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#9732]) +20 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-10/igt@kms_psr@pr-dpms.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2: NOTRUN -> [SKIP][336] ([i915#1072] / [i915#9732]) +7 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-5/igt@kms_psr@pr-sprite-blt.html
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#14544] / [i915#9732])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#1072] / [i915#9732]) +16 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_psr@psr2-sprite-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#1072] / [i915#9732]) +6 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-12/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][340] ([i915#9685])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-18/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][341] ([i915#15492])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk1/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#5289])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#12755] / [i915#5190])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#5289]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-dg1: NOTRUN -> [SKIP][345] ([i915#5289]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#5289]) +2 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-mtlp: NOTRUN -> [SKIP][347] ([i915#12755])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu-1: NOTRUN -> [ABORT][348] ([i915#13179]) +1 other test abort
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][349] ([i915#8623]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern.html
- shard-glk: NOTRUN -> [FAIL][350] ([i915#10959])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#8623])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-snb: NOTRUN -> [SKIP][352] +168 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-snb4/igt@kms_tv_load_detect@load-detect.html
- shard-mtlp: NOTRUN -> [SKIP][353] +5 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-3/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][354] ([i915#12276]) +1 other test incomplete
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk10/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@flip-basic:
- shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#3555])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-dpms:
- shard-mtlp: NOTRUN -> [SKIP][356] ([i915#3555] / [i915#8808])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-7/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@flip-suspend:
- shard-tglu: NOTRUN -> [SKIP][357] ([i915#3555]) +7 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-8/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@max-min:
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#9906])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-7/igt@kms_vrr@max-min.html
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#9906])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@kms_vrr@max-min.html
- shard-dg1: NOTRUN -> [SKIP][360] ([i915#9906])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-12/igt@kms_vrr@max-min.html
- shard-tglu: NOTRUN -> [SKIP][361] ([i915#9906]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-4/igt@kms_vrr@max-min.html
- shard-mtlp: NOTRUN -> [SKIP][362] ([i915#8808] / [i915#9906])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-5/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#3555] / [i915#9906])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [PASS][364] -> [FAIL][365] ([i915#4349])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-1/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][366] -> [FAIL][367] ([i915#4349]) +4 other tests fail
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@frequency:
- shard-dg2: NOTRUN -> [FAIL][368] ([i915#12549] / [i915#6806]) +1 other test fail
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-6/igt@perf_pmu@frequency.html
- shard-dg1: NOTRUN -> [FAIL][369] ([i915#12549] / [i915#6806]) +1 other test fail
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-12/igt@perf_pmu@frequency.html
* igt@perf_pmu@module-unload:
- shard-tglu-1: NOTRUN -> [FAIL][370] ([i915#14433])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][371] ([i915#8516])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#8516])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_udl:
- shard-rkl: NOTRUN -> [SKIP][373] ([i915#14544]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@prime_udl.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][374] ([i915#13356]) -> [PASS][375]
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-tglu: [ABORT][376] -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-tglu-8/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-2/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_pm_rpm@system-suspend:
- shard-rkl: [INCOMPLETE][378] ([i915#13356]) -> [PASS][379]
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@i915_pm_rpm@system-suspend.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-rkl: [ABORT][380] ([i915#15060]) -> [PASS][381]
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-1/igt@i915_pm_rpm@system-suspend-devices.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-8/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_selftest@live:
- shard-mtlp: [DMESG-FAIL][382] ([i915#12061] / [i915#15560]) -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-mtlp-1/igt@i915_selftest@live.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-7/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][384] ([i915#12061]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-mtlp-1/igt@i915_selftest@live@workarounds.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-7/igt@i915_selftest@live@workarounds.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: [FAIL][386] ([i915#5956]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][388] ([i915#15662]) -> [PASS][389] +1 other test pass
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [INCOMPLETE][390] ([i915#15582]) -> [PASS][391] +2 other tests pass
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [FAIL][392] ([i915#13566]) -> [PASS][393] +2 other tests pass
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][394] ([i915#13566]) -> [PASS][395] +1 other test pass
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-tglu-7/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][396] ([i915#2346]) -> [PASS][397]
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dp_aux_dev:
- shard-dg2: [SKIP][398] ([i915#1257]) -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-8/igt@kms_dp_aux_dev.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-11/igt@kms_dp_aux_dev.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [ABORT][400] ([i915#15132]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-1/igt@kms_fbcon_fbt@fbc-suspend.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-tglu: [FAIL][402] ([i915#13027]) -> [PASS][403] +1 other test pass
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-tglu-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_force_connector_basic@force-edid:
- shard-mtlp: [SKIP][404] ([i915#15672]) -> [PASS][405]
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-4/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-snb: [SKIP][406] -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: [SKIP][408] ([i915#3555] / [i915#8228]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-2/igt@kms_hdr@static-toggle-dpms.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [SKIP][410] ([i915#3555] / [i915#8228]) -> [PASS][411] +1 other test pass
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: [SKIP][412] ([i915#15459]) -> [PASS][413]
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-4/igt@kms_joiner@basic-force-big-joiner.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [SKIP][414] ([i915#15073]) -> [PASS][415] +1 other test pass
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][416] ([i915#15073]) -> [PASS][417] +1 other test pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [INCOMPLETE][418] ([i915#14419]) -> [PASS][419]
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-8/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_setmode@basic:
- shard-dg1: [FAIL][420] ([i915#15106]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg1-12/igt@kms_setmode@basic.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-18/igt@kms_setmode@basic.html
- shard-dg2: [FAIL][422] ([i915#15106]) -> [PASS][423] +1 other test pass
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-7/igt@kms_setmode@basic.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-6/igt@kms_setmode@basic.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [SKIP][424] ([i915#3555] / [i915#9906]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-3/igt@kms_vrr@negative-basic.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-11/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][426] ([i915#4349]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-mtlp-5/igt@perf_pmu@busy-double-start@rcs0.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: [SKIP][428] ([i915#14544] / [i915#8411]) -> [SKIP][429] ([i915#8411])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: [SKIP][430] ([i915#6230]) -> [SKIP][431] ([i915#14544] / [i915#6230])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-7/igt@api_intel_bb@crc32.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@api_intel_bb@crc32.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: [SKIP][432] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][433] ([i915#3555] / [i915#9323])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][434] ([i915#14544] / [i915#6335]) -> [SKIP][435] ([i915#6335])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: [SKIP][436] ([i915#280]) -> [SKIP][437] ([i915#14544] / [i915#280]) +1 other test skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-2/igt@gem_ctx_sseu@invalid-args.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: [SKIP][438] ([i915#14544] / [i915#4525]) -> [SKIP][439] ([i915#4525])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: [SKIP][440] ([i915#4525]) -> [SKIP][441] ([i915#14544] / [i915#4525]) +2 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-3/igt@gem_exec_balancer@parallel-ordering.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#6344]) -> [SKIP][443] ([i915#6344])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_reloc@basic-wc-active:
- shard-rkl: [SKIP][444] ([i915#14544] / [i915#3281]) -> [SKIP][445] ([i915#3281]) +2 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@gem_exec_reloc@basic-wc-active.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@gem_exec_reloc@basic-wc-active.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: [SKIP][446] ([i915#3281]) -> [SKIP][447] ([i915#14544] / [i915#3281]) +6 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: [SKIP][448] ([i915#7276]) -> [SKIP][449] ([i915#14544] / [i915#7276])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][450] ([i915#14544] / [i915#4613] / [i915#7582]) -> [SKIP][451] ([i915#4613] / [i915#7582])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: [SKIP][452] ([i915#4613]) -> [SKIP][453] ([i915#14544] / [i915#4613]) +2 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-2/igt@gem_lmem_swapping@random-engines.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-rkl: [SKIP][454] ([i915#14544] / [i915#3282]) -> [SKIP][455] ([i915#3282]) +1 other test skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@gem_partial_pwrite_pread@write-display.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: [SKIP][456] ([i915#3282]) -> [SKIP][457] ([i915#14544] / [i915#3282]) +4 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: [SKIP][458] ([i915#3297]) -> [SKIP][459] ([i915#14544] / [i915#3297]) +1 other test skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-2/igt@gem_userptr_blits@create-destroy-unsync.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#3297]) -> [SKIP][461] ([i915#3297])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: [SKIP][462] ([i915#3281] / [i915#3297]) -> [SKIP][463] ([i915#14544] / [i915#3281] / [i915#3297])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-8/igt@gem_userptr_blits@relocations.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@gem_userptr_blits@relocations.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: [SKIP][464] ([i915#2527]) -> [SKIP][465] ([i915#14544] / [i915#2527])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-7/igt@gen9_exec_parse@allowed-all.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
* igt@i915_module_load@fault-injection:
- shard-dg1: [ABORT][466] ([i915#11815]) -> [ABORT][467] ([i915#11815] / [i915#15481]) +1 other test abort
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg1-16/igt@i915_module_load@fault-injection.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-17/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-tglu: [DMESG-WARN][468] ([i915#15342]) -> [ABORT][469] ([i915#15342])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-tglu-8/igt@i915_module_load@fault-injection@intel_connector_register.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-2/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: [SKIP][470] ([i915#14544] / [i915#8399]) -> [SKIP][471] ([i915#8399])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: [SKIP][472] ([i915#8399]) -> [SKIP][473] ([i915#14544] / [i915#8399])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][474] ([i915#4387]) -> [SKIP][475] ([i915#14544] / [i915#4387])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-2/igt@i915_pm_sseu@full-enable.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: [SKIP][476] ([i915#9531]) -> [SKIP][477] ([i915#14544] / [i915#9531])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][478] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][479] ([i915#1769] / [i915#3555])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-rkl: [SKIP][480] ([i915#5286]) -> [SKIP][481] ([i915#14544] / [i915#5286]) +1 other test skip
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-rkl: [SKIP][482] ([i915#14544] / [i915#5286]) -> [SKIP][483] ([i915#5286]) +2 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#3638]) -> [SKIP][485] ([i915#3638])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][486] ([i915#14544] / [i915#3828]) -> [SKIP][487] ([i915#3828])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][488] ([i915#14544]) -> [SKIP][489] +12 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][490] ([i915#14544] / [i915#6095]) -> [SKIP][491] ([i915#6095]) +8 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][492] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][493] ([i915#14098] / [i915#6095]) +12 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][494] ([i915#14098] / [i915#6095]) -> [SKIP][495] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][496] ([i915#6095]) -> [SKIP][497] ([i915#14544] / [i915#6095]) +3 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][498] ([i915#3742]) -> [SKIP][499] ([i915#14544] / [i915#3742])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-5/igt@kms_cdclk@mode-transition-all-outputs.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-rkl: [SKIP][500] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][501] ([i915#11151] / [i915#7828]) +1 other test skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-fast.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: [SKIP][502] ([i915#11151] / [i915#7828]) -> [SKIP][503] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-dg2: [SKIP][504] ([i915#6944] / [i915#7118] / [i915#9424]) -> [FAIL][505] ([i915#7173])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-5/igt@kms_content_protection@atomic.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-11/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][506] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][507] ([i915#6944] / [i915#7118] / [i915#9424])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][508] ([i915#15330] / [i915#3116]) -> [SKIP][509] ([i915#14544] / [i915#15330] / [i915#3116])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg2: [FAIL][510] ([i915#7173]) -> [SKIP][511] ([i915#6944] / [i915#7118] / [i915#9424])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-11/igt@kms_content_protection@legacy.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: [SKIP][512] ([i915#14544] / [i915#6944]) -> [SKIP][513] ([i915#6944])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][514] ([i915#6944] / [i915#9424]) -> [SKIP][515] ([i915#9433])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg1-16/igt@kms_content_protection@mei-interface.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@suspend-resume:
- shard-dg2: [FAIL][516] ([i915#7173]) -> [SKIP][517] ([i915#6944])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-11/igt@kms_content_protection@suspend-resume.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-3/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][518] ([i915#13049]) -> [SKIP][519] ([i915#13049] / [i915#14544])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: [SKIP][520] ([i915#13049] / [i915#14544]) -> [SKIP][521] ([i915#13049])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: [SKIP][522] -> [SKIP][523] ([i915#14544]) +9 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: [SKIP][524] ([i915#14544] / [i915#9723]) -> [SKIP][525] ([i915#9723])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][526] ([i915#14544] / [i915#3840]) -> [SKIP][527] ([i915#3840])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-8/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: [SKIP][528] ([i915#3555] / [i915#3840]) -> [SKIP][529] ([i915#14544] / [i915#3555] / [i915#3840])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-3/igt@kms_dsc@dsc-with-formats.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-rkl: [SKIP][530] ([i915#14544] / [i915#9934]) -> [SKIP][531] ([i915#9934]) +2 other tests skip
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][532] ([i915#9934]) -> [SKIP][533] ([i915#14544] / [i915#9934]) +4 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-8/igt@kms_flip@2x-flip-vs-dpms.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-rkl: [SKIP][534] ([i915#14544] / [i915#15643]) -> [SKIP][535] ([i915#15643])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-rkl: [SKIP][536] ([i915#15643]) -> [SKIP][537] ([i915#14544] / [i915#15643])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][538] ([i915#1825]) -> [SKIP][539] ([i915#14544] / [i915#1825]) +10 other tests skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [SKIP][540] ([i915#14544] / [i915#15102]) -> [SKIP][541] ([i915#15102]) +1 other test skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-rkl: [SKIP][542] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][543] ([i915#15102] / [i915#3023]) +4 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-rkl: [SKIP][544] ([i915#15102] / [i915#3023]) -> [SKIP][545] ([i915#14544] / [i915#15102] / [i915#3023]) +8 other tests skip
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [SKIP][546] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][547] ([i915#15102] / [i915#3458]) +3 other tests skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][548] ([i915#14544] / [i915#1825]) -> [SKIP][549] ([i915#1825]) +20 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite:
- shard-dg1: [SKIP][550] ([i915#15102] / [i915#3458] / [i915#4423]) -> [SKIP][551] ([i915#15102] / [i915#3458])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][552] ([i915#15102] / [i915#3458]) -> [SKIP][553] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: [SKIP][554] ([i915#12713]) -> [SKIP][555] ([i915#13331])
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-dg2-11/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: [SKIP][556] ([i915#1187] / [i915#12713]) -> [SKIP][557] ([i915#13331] / [i915#14544])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][558] ([i915#15458]) -> [SKIP][559] ([i915#14544] / [i915#15458])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: [SKIP][560] ([i915#14544] / [i915#15459]) -> [SKIP][561] ([i915#15459])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][562] ([i915#14544] / [i915#6301]) -> [SKIP][563] ([i915#6301])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_panel_fitting@legacy.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-rkl: [SKIP][564] ([i915#14544] / [i915#14712]) -> [SKIP][565] ([i915#14712])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-rkl: [SKIP][566] ([i915#15608] / [i915#8825]) -> [SKIP][567] ([i915#14544] / [i915#15608] / [i915#8825]) +1 other test skip
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][568] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][569] ([i915#15608] / [i915#15609] / [i915#8825])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-0:
- shard-rkl: [SKIP][570] ([i915#14544] / [i915#15608]) -> [SKIP][571] ([i915#15608])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-0.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-rkl: [SKIP][572] ([i915#14544] / [i915#15609] / [i915#8825]) -> [SKIP][573] ([i915#15609] / [i915#8825])
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-rkl: [SKIP][574] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][575] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825])
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-4/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-0:
- shard-rkl: [SKIP][576] ([i915#15608]) -> [SKIP][577] ([i915#14544] / [i915#15608]) +1 other test skip
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-4/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-0.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5:
- shard-rkl: [SKIP][578] ([i915#15609] / [i915#8825]) -> [SKIP][579] ([i915#14544] / [i915#15609] / [i915#8825])
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-4/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: [SKIP][580] ([i915#14544] / [i915#3555]) -> [SKIP][581] ([i915#3555]) +5 other tests skip
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-8/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: [SKIP][582] ([i915#14544] / [i915#15329]) -> [SKIP][583] ([i915#15329]) +3 other tests skip
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: [SKIP][584] ([i915#14544] / [i915#5354]) -> [SKIP][585] ([i915#5354])
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: [SKIP][586] ([i915#3828]) -> [SKIP][587] ([i915#14544] / [i915#3828]) +1 other test skip
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-7/igt@kms_pm_dc@dc5-retention-flops.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][588] ([i915#9295]) -> [SKIP][589] ([i915#15128])
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: [SKIP][590] ([i915#6524]) -> [SKIP][591] ([i915#14544] / [i915#6524])
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-8/igt@kms_prime@basic-modeset-hybrid.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][592] ([i915#11520] / [i915#14544]) -> [SKIP][593] ([i915#11520]) +2 other tests skip
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-rkl: [SKIP][594] ([i915#11520]) -> [SKIP][595] ([i915#11520] / [i915#14544]) +2 other tests skip
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: [SKIP][596] ([i915#1072] / [i915#9732]) -> [SKIP][597] ([i915#1072] / [i915#14544] / [i915#9732]) +11 other tests skip
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-7/igt@kms_psr@fbc-psr2-sprite-render.html
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: [SKIP][598] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][599] ([i915#1072] / [i915#9732]) +10 other tests skip
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-5/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][600] ([i915#14544] / [i915#5289]) -> [SKIP][601] ([i915#5289])
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_vrr@flip-basic:
- shard-rkl: [SKIP][602] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][603] ([i915#15243] / [i915#3555])
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@kms_vrr@flip-basic.html
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@negative-basic:
- shard-rkl: [SKIP][604] ([i915#3555] / [i915#9906]) -> [SKIP][605] ([i915#14544] / [i915#3555] / [i915#9906])
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-2/igt@kms_vrr@negative-basic.html
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: [SKIP][606] ([i915#9906]) -> [SKIP][607] ([i915#14544] / [i915#9906])
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][608] ([i915#2436]) -> [SKIP][609] ([i915#14544] / [i915#2436])
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: [SKIP][610] ([i915#8516]) -> [SKIP][611] ([i915#14544] / [i915#8516])
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-3/igt@perf_pmu@rc6-all-gts.html
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: [SKIP][612] ([i915#14544] / [i915#9917]) -> [SKIP][613] ([i915#9917])
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8749/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[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#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[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#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[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#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[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#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15522
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15588
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15609]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[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#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[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#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[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#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[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#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[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#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8749 -> IGTPW_14539
CI-20190529: 20190529
CI_DRM_17975: f37b96494b210e3ceec9c8c369dcd8f05fb30669 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14539: b896e43034c432c4a69c2b8a0cfb0d878d2c763c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8749: 195f101f25a7984686f36f340aa88d44a1716ec6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14539/index.html
[-- Attachment #2: Type: text/html, Size: 207211 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread