* [igt-dev] [PATCH i-g-t v7 1/7] lib/igt_sriov_device: add core SR-IOV helpers
2023-12-05 8:16 [igt-dev] [PATCH i-g-t v7 0/7] Initial SR-IOV validation Lukasz Laguna
@ 2023-12-05 8:16 ` Lukasz Laguna
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 2/7] lib/igt_sriov_device: add helper for opening VF device Lukasz Laguna
` (8 subsequent siblings)
9 siblings, 0 replies; 21+ messages in thread
From: Lukasz Laguna @ 2023-12-05 8:16 UTC (permalink / raw)
To: igt-dev
From: Katarzyna Dec <katarzyna.dec@intel.com>
Create lib for core SR-IOV (Single Root I/O Virtualization) helpers
that allow to manage SR-IOV devices.
v2:
- change functions description (Michal)
v3:
- decipher SR-IOV shortcut in commit message (Kamil)
- add SR-IOV description in header file (Kamil)
- remove old r-b and add cc (Kamil)
- return bool result in functions prefixed with "__" (Kamil)
- add brief description in functions documentation (Michal)
- add asserts in helpers (Michal)
v4:
- remove unnecessary include (Kamil)
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Katarzyna Dec <katarzyna.dec@intel.com>
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/igt_sriov_device.c | 213 +++++++++++++++++++++++++++++++++++++++++
lib/igt_sriov_device.h | 27 ++++++
lib/meson.build | 1 +
3 files changed, 241 insertions(+)
create mode 100644 lib/igt_sriov_device.c
create mode 100644 lib/igt_sriov_device.h
diff --git a/lib/igt_sriov_device.c b/lib/igt_sriov_device.c
new file mode 100644
index 000000000..c5c594c2c
--- /dev/null
+++ b/lib/igt_sriov_device.c
@@ -0,0 +1,213 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright(c) 2023 Intel Corporation. All rights reserved.
+ */
+
+#include <errno.h>
+
+#include "igt_core.h"
+#include "igt_sriov_device.h"
+#include "igt_sysfs.h"
+
+/**
+ * igt_sriov_is_pf - Check if device is PF
+ * @device: device file descriptor
+ *
+ * Determine if device is PF by checking existence of sriov_totalvfs file.
+ *
+ * Return:
+ * True if device is PF, false otherwise.
+ */
+bool igt_sriov_is_pf(int device)
+{
+ int sysfs;
+ bool ret;
+
+ sysfs = igt_sysfs_open(device);
+ igt_assert_fd(sysfs);
+
+ ret = igt_sysfs_has_attr(sysfs, "device/sriov_totalvfs");
+ close(sysfs);
+
+ return ret;
+}
+
+static bool __pf_attr_get_u32(int pf, const char *attr, uint32_t *value)
+{
+ int sysfs;
+ bool ret;
+
+ igt_assert(igt_sriov_is_pf(pf));
+
+ sysfs = igt_sysfs_open(pf);
+ igt_assert_fd(sysfs);
+
+ ret = __igt_sysfs_get_u32(sysfs, attr, value);
+ close(sysfs);
+
+ return ret;
+}
+
+static uint32_t pf_attr_get_u32(int pf, const char *attr)
+{
+ uint32_t value;
+
+ igt_assert_f(__pf_attr_get_u32(pf, attr, &value),
+ "Failed to read %s attribute (%s)\n", attr, strerror(errno));
+
+ return value;
+}
+
+static bool __pf_attr_set_u32(int pf, const char *attr, uint32_t value)
+{
+ int sysfs;
+ bool ret;
+
+ igt_assert(igt_sriov_is_pf(pf));
+
+ sysfs = igt_sysfs_open(pf);
+ igt_assert_fd(sysfs);
+
+ ret = __igt_sysfs_set_u32(sysfs, attr, value);
+ close(sysfs);
+
+ return ret;
+}
+
+static void pf_attr_set_u32(int pf, const char *attr, uint32_t value)
+{
+ igt_assert_f(__pf_attr_set_u32(pf, attr, value),
+ "Failed to write %u to %s attribute (%s)\n", value, attr, strerror(errno));
+}
+
+/**
+ * igt_sriov_vfs_supported - Check if VFs are supported
+ * @pf: PF device file descriptor
+ *
+ * Determine VFs support by checking if value of sriov_totalvfs attribute
+ * corresponding to @pf device is bigger than 0.
+ *
+ * Return:
+ * True if VFs are supported, false otherwise.
+ */
+bool igt_sriov_vfs_supported(int pf)
+{
+ uint32_t totalvfs;
+
+ if (!__pf_attr_get_u32(pf, "device/sriov_totalvfs", &totalvfs))
+ return false;
+
+ return totalvfs > 0;
+}
+
+/**
+ * igt_sriov_get_totalvfs - Get maximum number of VFs that can be enabled
+ * @pf: PF device file descriptor
+ *
+ * Maximum number of VFs that can be enabled is checked by reading
+ * sriov_totalvfs attribute corresponding to @pf device.
+ *
+ * It asserts on failure.
+ *
+ * Return:
+ * Maximum number of VFs that can be associated with given PF.
+ */
+unsigned int igt_sriov_get_total_vfs(int pf)
+{
+ return pf_attr_get_u32(pf, "device/sriov_totalvfs");
+}
+
+/**
+ * igt_sriov_get_numvfs - Get number of enabled VFs
+ * @pf: PF device file descriptor
+ *
+ * Number of enabled VFs is checked by reading sriov_numvfs attribute
+ * corresponding to @pf device.
+ *
+ * It asserts on failure.
+ *
+ * Return:
+ * Number of VFs enabled by given PF.
+ */
+unsigned int igt_sriov_get_enabled_vfs(int pf)
+{
+ return pf_attr_get_u32(pf, "device/sriov_numvfs");
+}
+
+/**
+ * igt_sriov_enable_vfs - Enable VFs
+ * @pf: PF device file descriptor
+ * @num_vfs: Number of virtual functions to be enabled
+ *
+ * Enable VFs by writing @num_vfs to sriov_numvfs attribute corresponding to
+ * @pf device.
+ * It asserts on failure.
+ */
+void igt_sriov_enable_vfs(int pf, unsigned int num_vfs)
+{
+ igt_assert(num_vfs > 0);
+
+ igt_debug("Enabling %u VFs\n", num_vfs);
+ pf_attr_set_u32(pf, "device/sriov_numvfs", num_vfs);
+}
+
+/**
+ * igt_sriov_disable_vfs - Disable VFs
+ * @pf: PF device file descriptor
+ *
+ * Disable VFs by writing 0 to sriov_numvfs attribute corresponding to @pf
+ * device.
+ * It asserts on failure.
+ */
+void igt_sriov_disable_vfs(int pf)
+{
+ pf_attr_set_u32(pf, "device/sriov_numvfs", 0);
+}
+
+/**
+ * igt_sriov_is_driver_autoprobe_enabled - Get VF driver autoprobe setting
+ * @pf: PF device file descriptor
+ *
+ * Get current VF driver autoprobe setting by reading sriov_drivers_autoprobe
+ * attribute corresponding to @pf device.
+ *
+ * It asserts on failure.
+ *
+ * Return:
+ * True if autoprobe is enabled, false otherwise.
+ */
+bool igt_sriov_is_driver_autoprobe_enabled(int pf)
+{
+ return pf_attr_get_u32(pf, "device/sriov_drivers_autoprobe");
+}
+
+/**
+ * igt_sriov_enable_driver_autoprobe - Enable VF driver autoprobe
+ * @pf: PF device file descriptor
+ *
+ * Enable VF driver autoprobe setting by writing 1 to sriov_drivers_autoprobe
+ * attribute corresponding to @pf device.
+ *
+ * If successful, kernel will automatically bind VFs to a compatible driver
+ * immediately after they are enabled.
+ * It asserts on failure.
+ */
+void igt_sriov_enable_driver_autoprobe(int pf)
+{
+ pf_attr_set_u32(pf, "device/sriov_drivers_autoprobe", true);
+}
+
+/**
+ * igt_sriov_disable_driver_autoprobe - Disable VF driver autoprobe
+ * @pf: PF device file descriptor
+ *
+ * Disable VF driver autoprobe setting by writing 0 to sriov_drivers_autoprobe
+ * attribute corresponding to @pf device.
+ *
+ * During VFs enabling driver won't be bound to VFs.
+ * It asserts on failure.
+ */
+void igt_sriov_disable_driver_autoprobe(int pf)
+{
+ pf_attr_set_u32(pf, "device/sriov_drivers_autoprobe", false);
+}
diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h
new file mode 100644
index 000000000..63359d57c
--- /dev/null
+++ b/lib/igt_sriov_device.h
@@ -0,0 +1,27 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright(c) 2023 Intel Corporation. All rights reserved.
+ */
+
+#ifndef __IGT_SRIOV_DEVICE_H__
+#define __IGT_SRIOV_DEVICE_H__
+
+/* Library for managing SR-IOV (Single Root I/O Virtualization)
+ * devices.
+ *
+ * SR-IOV is a specification that allows a single PCIe physical
+ * device to appear as a physical function (PF) and multiple virtual
+ * functions (VFs) to the operating system.
+ */
+
+bool igt_sriov_is_pf(int device);
+bool igt_sriov_vfs_supported(int pf);
+unsigned int igt_sriov_get_total_vfs(int pf);
+unsigned int igt_sriov_get_enabled_vfs(int pf);
+void igt_sriov_enable_vfs(int pf, unsigned int num_vfs);
+void igt_sriov_disable_vfs(int pf);
+bool igt_sriov_is_driver_autoprobe_enabled(int pf);
+void igt_sriov_enable_driver_autoprobe(int pf);
+void igt_sriov_disable_driver_autoprobe(int pf);
+
+#endif /* __IGT_SRIOV_DEVICE_H__ */
diff --git a/lib/meson.build b/lib/meson.build
index 48466a2e9..0fc11b26c 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -38,6 +38,7 @@ lib_sources = [
'igt_primes.c',
'igt_pci.c',
'igt_rand.c',
+ 'igt_sriov_device.c',
'igt_stats.c',
'igt_syncobj.c',
'igt_sysfs.c',
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread* [igt-dev] [PATCH i-g-t v7 2/7] lib/igt_sriov_device: add helper for opening VF device
2023-12-05 8:16 [igt-dev] [PATCH i-g-t v7 0/7] Initial SR-IOV validation Lukasz Laguna
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 1/7] lib/igt_sriov_device: add core SR-IOV helpers Lukasz Laguna
@ 2023-12-05 8:16 ` Lukasz Laguna
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 3/7] lib/igt_sriov_device: add helper for checking if VF DRM driver is probed Lukasz Laguna
` (7 subsequent siblings)
9 siblings, 0 replies; 21+ messages in thread
From: Lukasz Laguna @ 2023-12-05 8:16 UTC (permalink / raw)
To: igt-dev
From: Katarzyna Dec <katarzyna.dec@intel.com>
Helper opens DRM device node and returns its file descriptor.
v2:
- s/drm_open_device/__drm_open_device (Kamil)
- combine string with one go (Kamil)
v3:
- change description of __drm_open_device() (Kamil)
v4:
- return error on wrong input (!vf_num) instead of assert (Kamil)
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Katarzyna Dec <katarzyna.dec@intel.com>
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/drmtest.c | 22 ++++++++++++++++----
lib/drmtest.h | 1 +
lib/igt_sriov_device.c | 47 ++++++++++++++++++++++++++++++++++++++++++
lib/igt_sriov_device.h | 1 +
4 files changed, 67 insertions(+), 4 deletions(-)
diff --git a/lib/drmtest.c b/lib/drmtest.c
index f0b97e362..c98754798 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -245,7 +245,21 @@ static void log_opened_device_path(const char *device_path)
igt_info("Opened device: %s\n", item->path);
}
-static int open_device(const char *name, unsigned int chipset)
+/**
+ * __drm_open_device:
+ * @name: DRM node name
+ * @chipset: OR'd flags for chipset to be opened
+ *
+ * Open a drm legacy device node with given @name and compatible with given
+ * @chipset flag.
+ *
+ * A special case is the use of the IGT_FORCE_DRIVER environment variable. In
+ * such case, even if opened device is compatible with given @chipset flag, the
+ * function returns error if forced driver is not compatible with @chipset.
+ *
+ * Returns: DRM file descriptor or -1 on error
+ */
+int __drm_open_device(const char *name, unsigned int chipset)
{
const char *forced;
char dev_name[16] = "";
@@ -350,7 +364,7 @@ static int __search_and_open(const char *base, int offset, unsigned int chipset,
if (_is_already_opened(name, as_idx))
continue;
- fd = open_device(name, chipset);
+ fd = __drm_open_device(name, chipset);
if (fd != -1)
return fd;
}
@@ -392,13 +406,13 @@ static int __open_driver_exact(const char *name, unsigned int chipset)
{
int fd;
- fd = open_device(name, chipset);
+ fd = __drm_open_device(name, chipset);
if (fd != -1)
return fd;
drm_load_module(chipset);
- return open_device(name, chipset);
+ return __drm_open_device(name, chipset);
}
/*
diff --git a/lib/drmtest.h b/lib/drmtest.h
index 909a0c12c..271a93e8b 100644
--- a/lib/drmtest.h
+++ b/lib/drmtest.h
@@ -98,6 +98,7 @@ void __set_forced_driver(const char *name);
*/
#define ALIGN_DOWN(x, a) ALIGN((x) - ((a) - 1), (a))
+int __drm_open_device(const char *name, unsigned int chipset);
void drm_load_module(unsigned int chipset);
int drm_open_driver(int chipset);
int drm_open_driver_master(int chipset);
diff --git a/lib/igt_sriov_device.c b/lib/igt_sriov_device.c
index c5c594c2c..36116058a 100644
--- a/lib/igt_sriov_device.c
+++ b/lib/igt_sriov_device.c
@@ -3,8 +3,10 @@
* Copyright(c) 2023 Intel Corporation. All rights reserved.
*/
+#include <dirent.h>
#include <errno.h>
+#include "drmtest.h"
#include "igt_core.h"
#include "igt_sriov_device.h"
#include "igt_sysfs.h"
@@ -211,3 +213,48 @@ void igt_sriov_disable_driver_autoprobe(int pf)
{
pf_attr_set_u32(pf, "device/sriov_drivers_autoprobe", false);
}
+
+/**
+ * igt_sriov_open_vf_drm_device - Open VF DRM device node
+ * @pf: PF device file descriptor
+ * @vf_num: VF number (1-based to identify single VF)
+ *
+ * Open DRM device node for given VF.
+ *
+ * Return:
+ * VF file descriptor or -1 on error.
+ */
+int igt_sriov_open_vf_drm_device(int pf, unsigned int vf_num)
+{
+ char dir_path[PATH_MAX], path[256], dev_name[16];
+ DIR *dir;
+ struct dirent *de;
+ bool found = false;
+
+ if (!vf_num)
+ return -1;
+
+ if (!igt_sysfs_path(pf, path, sizeof(path)))
+ return -1;
+ /* vf_num is 1-based, but virtfn is 0-based */
+ snprintf(dir_path, sizeof(dir_path), "%s/device/virtfn%u/drm", path, vf_num - 1);
+
+ dir = opendir(dir_path);
+ if (!dir)
+ return -1;
+ while ((de = readdir(dir))) {
+ unsigned int card_num;
+
+ if (sscanf(de->d_name, "card%d", &card_num) == 1) {
+ snprintf(dev_name, sizeof(dev_name), "/dev/dri/card%u", card_num);
+ found = true;
+ break;
+ }
+ }
+ closedir(dir);
+
+ if (!found)
+ return -1;
+
+ return __drm_open_device(dev_name, DRIVER_ANY);
+}
diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h
index 63359d57c..2baf183fb 100644
--- a/lib/igt_sriov_device.h
+++ b/lib/igt_sriov_device.h
@@ -23,5 +23,6 @@ void igt_sriov_disable_vfs(int pf);
bool igt_sriov_is_driver_autoprobe_enabled(int pf);
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);
#endif /* __IGT_SRIOV_DEVICE_H__ */
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread* [igt-dev] [PATCH i-g-t v7 3/7] lib/igt_sriov_device: add helper for checking if VF DRM driver is probed
2023-12-05 8:16 [igt-dev] [PATCH i-g-t v7 0/7] Initial SR-IOV validation Lukasz Laguna
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 1/7] lib/igt_sriov_device: add core SR-IOV helpers Lukasz Laguna
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 2/7] lib/igt_sriov_device: add helper for opening VF device Lukasz Laguna
@ 2023-12-05 8:16 ` Lukasz Laguna
2023-12-13 14:25 ` Kamil Konieczny
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 4/7] lib/igt_sriov_device: add helpers for operations in different VFs scenarios Lukasz Laguna
` (6 subsequent siblings)
9 siblings, 1 reply; 21+ messages in thread
From: Lukasz Laguna @ 2023-12-05 8:16 UTC (permalink / raw)
To: igt-dev
From: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com>
Probe check is based on existence of the DRM subsystem attribute in
sysfs.
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com>
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
lib/igt_sriov_device.c | 29 +++++++++++++++++++++++++++++
lib/igt_sriov_device.h | 1 +
2 files changed, 30 insertions(+)
diff --git a/lib/igt_sriov_device.c b/lib/igt_sriov_device.c
index 36116058a..c643f47d1 100644
--- a/lib/igt_sriov_device.c
+++ b/lib/igt_sriov_device.c
@@ -258,3 +258,32 @@ int igt_sriov_open_vf_drm_device(int pf, unsigned int vf_num)
return __drm_open_device(dev_name, DRIVER_ANY);
}
+
+/**
+ * igt_sriov_is_vf_drm_driver_probed - Check if VF DRM driver is probed
+ * @pf: PF device file descriptor
+ * @vf_num: VF number (1-based to identify single VF)
+ *
+ * Verify if DRM driver is bound to VF device. Probe check is based on
+ * existence of the DRM subsystem attribute in sysfs.
+ *
+ * Returns:
+ * True if VF has DRM driver loaded, false if not.
+ */
+bool igt_sriov_is_vf_drm_driver_probed(int pf, unsigned int vf_num)
+{
+ char path[PATH_MAX];
+ int sysfs;
+ bool ret;
+
+ igt_assert(vf_num > 0);
+
+ sysfs = igt_sysfs_open(pf);
+ igt_assert_fd(sysfs);
+ /* vf_num is 1-based, but virtfn is 0-based */
+ snprintf(path, sizeof(path), "device/virtfn%u/drm", vf_num - 1);
+ ret = igt_sysfs_has_attr(sysfs, path);
+ close(sysfs);
+
+ return ret;
+}
diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h
index 2baf183fb..ddbda6cd6 100644
--- a/lib/igt_sriov_device.h
+++ b/lib/igt_sriov_device.h
@@ -24,5 +24,6 @@ bool igt_sriov_is_driver_autoprobe_enabled(int pf);
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);
#endif /* __IGT_SRIOV_DEVICE_H__ */
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread* Re: [PATCH i-g-t v7 3/7] lib/igt_sriov_device: add helper for checking if VF DRM driver is probed
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 3/7] lib/igt_sriov_device: add helper for checking if VF DRM driver is probed Lukasz Laguna
@ 2023-12-13 14:25 ` Kamil Konieczny
0 siblings, 0 replies; 21+ messages in thread
From: Kamil Konieczny @ 2023-12-13 14:25 UTC (permalink / raw)
To: igt-dev
Hi Lukasz,
On 2023-12-05 at 09:16:14 +0100, Lukasz Laguna wrote:
> From: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com>
>
> Probe check is based on existence of the DRM subsystem attribute in
> sysfs.
>
> Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Signed-off-by: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com>
> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> lib/igt_sriov_device.c | 29 +++++++++++++++++++++++++++++
> lib/igt_sriov_device.h | 1 +
> 2 files changed, 30 insertions(+)
>
> diff --git a/lib/igt_sriov_device.c b/lib/igt_sriov_device.c
> index 36116058a..c643f47d1 100644
> --- a/lib/igt_sriov_device.c
> +++ b/lib/igt_sriov_device.c
> @@ -258,3 +258,32 @@ int igt_sriov_open_vf_drm_device(int pf, unsigned int vf_num)
>
> return __drm_open_device(dev_name, DRIVER_ANY);
> }
> +
> +/**
> + * igt_sriov_is_vf_drm_driver_probed - Check if VF DRM driver is probed
> + * @pf: PF device file descriptor
> + * @vf_num: VF number (1-based to identify single VF)
> + *
> + * Verify if DRM driver is bound to VF device. Probe check is based on
> + * existence of the DRM subsystem attribute in sysfs.
> + *
> + * Returns:
> + * True if VF has DRM driver loaded, false if not.
> + */
> +bool igt_sriov_is_vf_drm_driver_probed(int pf, unsigned int vf_num)
> +{
> + char path[PATH_MAX];
> + int sysfs;
> + bool ret;
> +
> + igt_assert(vf_num > 0);
> +
> + sysfs = igt_sysfs_open(pf);
> + igt_assert_fd(sysfs);
> + /* vf_num is 1-based, but virtfn is 0-based */
> + snprintf(path, sizeof(path), "device/virtfn%u/drm", vf_num - 1);
> + ret = igt_sysfs_has_attr(sysfs, path);
> + close(sysfs);
> +
> + return ret;
> +}
> diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h
> index 2baf183fb..ddbda6cd6 100644
> --- a/lib/igt_sriov_device.h
> +++ b/lib/igt_sriov_device.h
> @@ -24,5 +24,6 @@ bool igt_sriov_is_driver_autoprobe_enabled(int pf);
> 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);
>
> #endif /* __IGT_SRIOV_DEVICE_H__ */
> --
> 2.40.0
>
^ permalink raw reply [flat|nested] 21+ messages in thread
* [igt-dev] [PATCH i-g-t v7 4/7] lib/igt_sriov_device: add helpers for operations in different VFs scenarios
2023-12-05 8:16 [igt-dev] [PATCH i-g-t v7 0/7] Initial SR-IOV validation Lukasz Laguna
` (2 preceding siblings ...)
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 3/7] lib/igt_sriov_device: add helper for checking if VF DRM driver is probed Lukasz Laguna
@ 2023-12-05 8:16 ` Lukasz Laguna
2023-12-13 14:34 ` Kamil Konieczny
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 5/7] tests/sriov_basic: add basic tests for enabling SR-IOV VFs Lukasz Laguna
` (5 subsequent siblings)
9 siblings, 1 reply; 21+ messages in thread
From: Lukasz Laguna @ 2023-12-05 8:16 UTC (permalink / raw)
To: igt-dev
Added helpers:
- for_each_vf and for_each_num_vfs
- for_random_vf and for_random_num_vfs
- for_last_vf and for_max_num_vfs
v2:
- document helpers (Michal)
v3:
- add "_sriov_" in helpers name (Kamil)
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
lib/igt_sriov_device.h | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h
index ddbda6cd6..c442c41a7 100644
--- a/lib/igt_sriov_device.h
+++ b/lib/igt_sriov_device.h
@@ -26,4 +26,45 @@ 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);
+/**
+ * for_each_sriov_vf - Helper for running code on each VF
+ * @__pf_fd: PF device file descriptor
+ * @__vf_num: VFs iterator
+ *
+ * For loop that iterates over all VFs associated with given PF @__pf_fd.
+ */
+#define for_each_sriov_vf(__pf_fd, __vf_num) \
+ for (unsigned int __vf_num = 1, __total_vfs = igt_sriov_get_total_vfs(__pf_fd); \
+ __vf_num <= __total_vfs; \
+ ++__vf_num)
+#define for_each_sriov_num_vfs for_each_sriov_vf
+
+/**
+ * for_random_sriov_vf - Helper for running code on random VF
+ * @__pf_fd: PF device file descriptor
+ * @__vf_num: stores random VF
+ *
+ * Helper allows to run code using random VF number (stored in @__vf_num)
+ * picked from the range of all VFs associated with given PF @__pf_fd.
+ */
+#define for_random_sriov_vf(__pf_fd, __vf_num) \
+ for (unsigned int __vf_num = 1 + random() % igt_sriov_get_total_vfs(__pf_fd), __tmp = 0; \
+ __tmp < 1; \
+ ++__tmp)
+#define for_random_sriov_num_vfs for_random_sriov_vf
+
+/**
+ * for_last_sriov_vf - Helper for running code on last VF
+ * @__pf_fd: PF device file descriptor
+ * @__vf_num: stores last VF number
+ *
+ * Helper allows to run code using last VF number (stored in @__vf_num)
+ * associated with given PF @__pf_fd.
+ */
+#define for_last_sriov_vf(__pf_fd, __vf_num) \
+ for (unsigned int __vf_num = igt_sriov_get_total_vfs(__pf_fd), __tmp = 0; \
+ __tmp < 1; \
+ ++__tmp)
+#define for_max_sriov_num_vfs for_last_sriov_vf
+
#endif /* __IGT_SRIOV_DEVICE_H__ */
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread* Re: [PATCH i-g-t v7 4/7] lib/igt_sriov_device: add helpers for operations in different VFs scenarios
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 4/7] lib/igt_sriov_device: add helpers for operations in different VFs scenarios Lukasz Laguna
@ 2023-12-13 14:34 ` Kamil Konieczny
0 siblings, 0 replies; 21+ messages in thread
From: Kamil Konieczny @ 2023-12-13 14:34 UTC (permalink / raw)
To: Lukasz Laguna; +Cc: igt-dev
Hi Lukasz,
On 2023-12-05 at 09:16:15 +0100, Lukasz Laguna wrote:
> Added helpers:
> - for_each_vf and for_each_num_vfs
> - for_random_vf and for_random_num_vfs
> - for_last_vf and for_max_num_vfs
>
> v2:
> - document helpers (Michal)
> v3:
> - add "_sriov_" in helpers name (Kamil)
>
> Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> lib/igt_sriov_device.h | 41 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 41 insertions(+)
>
> diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h
> index ddbda6cd6..c442c41a7 100644
> --- a/lib/igt_sriov_device.h
> +++ b/lib/igt_sriov_device.h
> @@ -26,4 +26,45 @@ 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);
>
> +/**
> + * for_each_sriov_vf - Helper for running code on each VF
> + * @__pf_fd: PF device file descriptor
> + * @__vf_num: VFs iterator
> + *
> + * For loop that iterates over all VFs associated with given PF @__pf_fd.
> + */
> +#define for_each_sriov_vf(__pf_fd, __vf_num) \
> + for (unsigned int __vf_num = 1, __total_vfs = igt_sriov_get_total_vfs(__pf_fd); \
> + __vf_num <= __total_vfs; \
> + ++__vf_num)
> +#define for_each_sriov_num_vfs for_each_sriov_vf
> +
> +/**
> + * for_random_sriov_vf - Helper for running code on random VF
> + * @__pf_fd: PF device file descriptor
> + * @__vf_num: stores random VF
> + *
> + * Helper allows to run code using random VF number (stored in @__vf_num)
> + * picked from the range of all VFs associated with given PF @__pf_fd.
> + */
> +#define for_random_sriov_vf(__pf_fd, __vf_num) \
> + for (unsigned int __vf_num = 1 + random() % igt_sriov_get_total_vfs(__pf_fd), __tmp = 0; \
> + __tmp < 1; \
> + ++__tmp)
> +#define for_random_sriov_num_vfs for_random_sriov_vf
> +
> +/**
> + * for_last_sriov_vf - Helper for running code on last VF
> + * @__pf_fd: PF device file descriptor
> + * @__vf_num: stores last VF number
> + *
> + * Helper allows to run code using last VF number (stored in @__vf_num)
> + * associated with given PF @__pf_fd.
> + */
> +#define for_last_sriov_vf(__pf_fd, __vf_num) \
> + for (unsigned int __vf_num = igt_sriov_get_total_vfs(__pf_fd), __tmp = 0; \
> + __tmp < 1; \
> + ++__tmp)
> +#define for_max_sriov_num_vfs for_last_sriov_vf
> +
> #endif /* __IGT_SRIOV_DEVICE_H__ */
> --
> 2.40.0
>
^ permalink raw reply [flat|nested] 21+ messages in thread
* [igt-dev] [PATCH i-g-t v7 5/7] tests/sriov_basic: add basic tests for enabling SR-IOV VFs
2023-12-05 8:16 [igt-dev] [PATCH i-g-t v7 0/7] Initial SR-IOV validation Lukasz Laguna
` (3 preceding siblings ...)
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 4/7] lib/igt_sriov_device: add helpers for operations in different VFs scenarios Lukasz Laguna
@ 2023-12-05 8:16 ` Lukasz Laguna
2023-12-13 14:44 ` Kamil Konieczny
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 6/7] lib/igt_sriov_device: add helpers for VF DRM driver bind and unbind Lukasz Laguna
` (4 subsequent siblings)
9 siblings, 1 reply; 21+ messages in thread
From: Lukasz Laguna @ 2023-12-05 8:16 UTC (permalink / raw)
To: igt-dev
From: Katarzyna Dec <katarzyna.dec@intel.com>
Add subtests that validate SR-IOV VFs enabling in two variants: with
autoprobe disabled and enabled.
v2:
- rename function (Michal)
- remove checks that are outside the scope of the test (Michal)
v3:
- change run type of enable-vfs-autoprobe-on subtest (Michal)
- don't init random seed in test code (Michal)
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Katarzyna Dec <katarzyna.dec@intel.com>
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
tests/meson.build | 1 +
tests/sriov_basic.c | 123 ++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 124 insertions(+)
create mode 100644 tests/sriov_basic.c
diff --git a/tests/meson.build b/tests/meson.build
index facf60ccf..a6673c511 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -71,6 +71,7 @@ test_progs = [
'panfrost_submit',
'prime_udl',
'prime_vgem',
+ 'sriov_basic',
'syncobj_basic',
'syncobj_eventfd',
'syncobj_wait',
diff --git a/tests/sriov_basic.c b/tests/sriov_basic.c
new file mode 100644
index 000000000..582e644f2
--- /dev/null
+++ b/tests/sriov_basic.c
@@ -0,0 +1,123 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright(c) 2023 Intel Corporation. All rights reserved.
+ */
+
+#include "drmtest.h"
+#include "igt_core.h"
+#include "igt_sriov_device.h"
+
+IGT_TEST_DESCRIPTION("Basic tests for enabling SR-IOV Virtual Functions");
+
+/**
+ * TEST: sriov_basic
+ * Category: Software building block
+ * Mega feature: SR-IOV
+ * Sub-category: VFs enabling
+ * Description: Validate SR-IOV VFs enabling
+ */
+
+/**
+ * SUBTEST: enable-vfs-autoprobe-off
+ * Description:
+ * Verify VFs enabling without probing VF driver
+ * Run type: BAT
+ */
+static void enable_vfs_autoprobe_off(int pf_fd, unsigned int num_vfs)
+{
+ igt_debug("Testing %u VFs\n", num_vfs);
+
+ igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0);
+ igt_sriov_disable_driver_autoprobe(pf_fd);
+ igt_sriov_enable_vfs(pf_fd, num_vfs);
+ igt_assert_eq(num_vfs, igt_sriov_get_enabled_vfs(pf_fd));
+ igt_sriov_disable_vfs(pf_fd);
+}
+
+/**
+ * SUBTEST: enable-vfs-autoprobe-on
+ * Description:
+ * Verify VFs enabling and auto-probing VF driver
+ * Run type: FULL
+ */
+static void enable_vfs_autoprobe_on(int pf_fd, unsigned int num_vfs)
+{
+ bool err = false;
+
+ igt_debug("Testing %u VFs\n", num_vfs);
+
+ igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0);
+ igt_sriov_enable_driver_autoprobe(pf_fd);
+ igt_sriov_enable_vfs(pf_fd, num_vfs);
+ igt_assert_eq(num_vfs, igt_sriov_get_enabled_vfs(pf_fd));
+ for (int vf_num = 1; vf_num <= num_vfs; ++vf_num) {
+ if (!igt_sriov_is_vf_drm_driver_probed(pf_fd, vf_num)) {
+ igt_debug("VF%u probe failed\n", vf_num);
+ err = true;
+ }
+ }
+ igt_sriov_disable_vfs(pf_fd);
+ igt_assert(!err);
+}
+
+igt_main
+{
+ int pf_fd;
+ bool autoprobe;
+
+ igt_fixture {
+ pf_fd = drm_open_driver(DRIVER_ANY);
+ igt_require(igt_sriov_is_pf(pf_fd));
+ igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0);
+ autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd);
+ }
+
+ igt_describe("Verify VFs enabling without probing VF driver");
+ igt_subtest_with_dynamic("enable-vfs-autoprobe-off") {
+ for_each_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-%u", num_vfs) {
+ enable_vfs_autoprobe_off(pf_fd, num_vfs);
+ }
+ }
+ for_random_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-random") {
+ enable_vfs_autoprobe_off(pf_fd, num_vfs);
+ }
+ }
+ for_max_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-all") {
+ enable_vfs_autoprobe_off(pf_fd, num_vfs);
+ }
+ }
+ }
+
+ igt_describe("Verify VFs enabling and auto-probing VF driver");
+ igt_subtest_with_dynamic("enable-vfs-autoprobe-on") {
+ for_each_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-%u", num_vfs) {
+ enable_vfs_autoprobe_on(pf_fd, num_vfs);
+ }
+ }
+ for_random_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-random") {
+ enable_vfs_autoprobe_on(pf_fd, num_vfs);
+ }
+ }
+ for_max_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-all") {
+ enable_vfs_autoprobe_on(pf_fd, num_vfs);
+ }
+ }
+ }
+
+ igt_fixture {
+ igt_sriov_disable_vfs(pf_fd);
+ /* abort to avoid execution of next tests with enabled VFs */
+ igt_abort_on_f(igt_sriov_get_enabled_vfs(pf_fd) > 0, "Failed to disable VF(s)");
+ autoprobe ? igt_sriov_enable_driver_autoprobe(pf_fd) :
+ igt_sriov_disable_driver_autoprobe(pf_fd);
+ igt_abort_on_f(autoprobe != igt_sriov_is_driver_autoprobe_enabled(pf_fd),
+ "Failed to restore sriov_drivers_autoprobe value\n");
+ close(pf_fd);
+ }
+}
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread* Re: [PATCH i-g-t v7 5/7] tests/sriov_basic: add basic tests for enabling SR-IOV VFs
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 5/7] tests/sriov_basic: add basic tests for enabling SR-IOV VFs Lukasz Laguna
@ 2023-12-13 14:44 ` Kamil Konieczny
0 siblings, 0 replies; 21+ messages in thread
From: Kamil Konieczny @ 2023-12-13 14:44 UTC (permalink / raw)
To: Lukasz Laguna; +Cc: igt-dev
Hi Lukasz,
On 2023-12-05 at 09:16:16 +0100, Lukasz Laguna wrote:
> From: Katarzyna Dec <katarzyna.dec@intel.com>
>
> Add subtests that validate SR-IOV VFs enabling in two variants: with
> autoprobe disabled and enabled.
>
> v2:
> - rename function (Michal)
> - remove checks that are outside the scope of the test (Michal)
> v3:
> - change run type of enable-vfs-autoprobe-on subtest (Michal)
> - don't init random seed in test code (Michal)
>
> Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Signed-off-by: Katarzyna Dec <katarzyna.dec@intel.com>
> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/meson.build | 1 +
> tests/sriov_basic.c | 123 ++++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 124 insertions(+)
> create mode 100644 tests/sriov_basic.c
>
> diff --git a/tests/meson.build b/tests/meson.build
> index facf60ccf..a6673c511 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -71,6 +71,7 @@ test_progs = [
> 'panfrost_submit',
> 'prime_udl',
> 'prime_vgem',
> + 'sriov_basic',
> 'syncobj_basic',
> 'syncobj_eventfd',
> 'syncobj_wait',
> diff --git a/tests/sriov_basic.c b/tests/sriov_basic.c
> new file mode 100644
> index 000000000..582e644f2
> --- /dev/null
> +++ b/tests/sriov_basic.c
> @@ -0,0 +1,123 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright(c) 2023 Intel Corporation. All rights reserved.
> + */
> +
> +#include "drmtest.h"
> +#include "igt_core.h"
> +#include "igt_sriov_device.h"
> +
> +IGT_TEST_DESCRIPTION("Basic tests for enabling SR-IOV Virtual Functions");
> +
> +/**
> + * TEST: sriov_basic
> + * Category: Software building block
> + * Mega feature: SR-IOV
> + * Sub-category: VFs enabling
> + * Description: Validate SR-IOV VFs enabling
> + */
> +
> +/**
> + * SUBTEST: enable-vfs-autoprobe-off
> + * Description:
> + * Verify VFs enabling without probing VF driver
> + * Run type: BAT
> + */
> +static void enable_vfs_autoprobe_off(int pf_fd, unsigned int num_vfs)
> +{
> + igt_debug("Testing %u VFs\n", num_vfs);
> +
> + igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0);
> + igt_sriov_disable_driver_autoprobe(pf_fd);
> + igt_sriov_enable_vfs(pf_fd, num_vfs);
> + igt_assert_eq(num_vfs, igt_sriov_get_enabled_vfs(pf_fd));
> + igt_sriov_disable_vfs(pf_fd);
> +}
> +
> +/**
> + * SUBTEST: enable-vfs-autoprobe-on
> + * Description:
> + * Verify VFs enabling and auto-probing VF driver
> + * Run type: FULL
> + */
> +static void enable_vfs_autoprobe_on(int pf_fd, unsigned int num_vfs)
> +{
> + bool err = false;
> +
> + igt_debug("Testing %u VFs\n", num_vfs);
> +
> + igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0);
> + igt_sriov_enable_driver_autoprobe(pf_fd);
> + igt_sriov_enable_vfs(pf_fd, num_vfs);
> + igt_assert_eq(num_vfs, igt_sriov_get_enabled_vfs(pf_fd));
> + for (int vf_num = 1; vf_num <= num_vfs; ++vf_num) {
> + if (!igt_sriov_is_vf_drm_driver_probed(pf_fd, vf_num)) {
> + igt_debug("VF%u probe failed\n", vf_num);
> + err = true;
> + }
> + }
> + igt_sriov_disable_vfs(pf_fd);
> + igt_assert(!err);
> +}
> +
> +igt_main
> +{
> + int pf_fd;
> + bool autoprobe;
> +
> + igt_fixture {
> + pf_fd = drm_open_driver(DRIVER_ANY);
> + igt_require(igt_sriov_is_pf(pf_fd));
> + igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0);
> + autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd);
> + }
> +
> + igt_describe("Verify VFs enabling without probing VF driver");
> + igt_subtest_with_dynamic("enable-vfs-autoprobe-off") {
> + for_each_sriov_num_vfs(pf_fd, num_vfs) {
> + igt_dynamic_f("numvfs-%u", num_vfs) {
> + enable_vfs_autoprobe_off(pf_fd, num_vfs);
> + }
> + }
> + for_random_sriov_num_vfs(pf_fd, num_vfs) {
> + igt_dynamic_f("numvfs-random") {
> + enable_vfs_autoprobe_off(pf_fd, num_vfs);
> + }
> + }
> + for_max_sriov_num_vfs(pf_fd, num_vfs) {
> + igt_dynamic_f("numvfs-all") {
> + enable_vfs_autoprobe_off(pf_fd, num_vfs);
> + }
> + }
> + }
> +
> + igt_describe("Verify VFs enabling and auto-probing VF driver");
> + igt_subtest_with_dynamic("enable-vfs-autoprobe-on") {
> + for_each_sriov_num_vfs(pf_fd, num_vfs) {
> + igt_dynamic_f("numvfs-%u", num_vfs) {
> + enable_vfs_autoprobe_on(pf_fd, num_vfs);
> + }
> + }
> + for_random_sriov_num_vfs(pf_fd, num_vfs) {
> + igt_dynamic_f("numvfs-random") {
> + enable_vfs_autoprobe_on(pf_fd, num_vfs);
> + }
> + }
> + for_max_sriov_num_vfs(pf_fd, num_vfs) {
> + igt_dynamic_f("numvfs-all") {
> + enable_vfs_autoprobe_on(pf_fd, num_vfs);
> + }
> + }
> + }
> +
> + igt_fixture {
> + igt_sriov_disable_vfs(pf_fd);
> + /* abort to avoid execution of next tests with enabled VFs */
> + igt_abort_on_f(igt_sriov_get_enabled_vfs(pf_fd) > 0, "Failed to disable VF(s)");
> + autoprobe ? igt_sriov_enable_driver_autoprobe(pf_fd) :
> + igt_sriov_disable_driver_autoprobe(pf_fd);
> + igt_abort_on_f(autoprobe != igt_sriov_is_driver_autoprobe_enabled(pf_fd),
> + "Failed to restore sriov_drivers_autoprobe value\n");
> + close(pf_fd);
> + }
> +}
> --
> 2.40.0
>
^ permalink raw reply [flat|nested] 21+ messages in thread
* [igt-dev] [PATCH i-g-t v7 6/7] lib/igt_sriov_device: add helpers for VF DRM driver bind and unbind
2023-12-05 8:16 [igt-dev] [PATCH i-g-t v7 0/7] Initial SR-IOV validation Lukasz Laguna
` (4 preceding siblings ...)
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 5/7] tests/sriov_basic: add basic tests for enabling SR-IOV VFs Lukasz Laguna
@ 2023-12-05 8:16 ` Lukasz Laguna
2023-12-13 15:00 ` Kamil Konieczny
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 7/7] tests/sriov_basic: validate driver binding to VFs Lukasz Laguna
` (3 subsequent siblings)
9 siblings, 1 reply; 21+ messages in thread
From: Lukasz Laguna @ 2023-12-05 8:16 UTC (permalink / raw)
To: igt-dev
Helpers allow to bind and unbind a DRM driver for specified VF of a
given PF device.
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
lib/igt_sriov_device.c | 52 ++++++++++++++++++++++++++++++++++++++++++
lib/igt_sriov_device.h | 2 ++
2 files changed, 54 insertions(+)
diff --git a/lib/igt_sriov_device.c b/lib/igt_sriov_device.c
index c643f47d1..354125974 100644
--- a/lib/igt_sriov_device.c
+++ b/lib/igt_sriov_device.c
@@ -5,9 +5,11 @@
#include <dirent.h>
#include <errno.h>
+#include <pciaccess.h>
#include "drmtest.h"
#include "igt_core.h"
+#include "igt_device.h"
#include "igt_sriov_device.h"
#include "igt_sysfs.h"
@@ -287,3 +289,53 @@ bool igt_sriov_is_vf_drm_driver_probed(int pf, unsigned int vf_num)
return ret;
}
+
+static bool __igt_sriov_bind_vf_drm_driver(int pf, unsigned int vf_num, bool bind)
+{
+ int sysfs, ret;
+ struct pci_device *pci_dev;
+ char pci_slot[14];
+
+ igt_assert(vf_num > 0);
+
+ pci_dev = __igt_device_get_pci_device(pf, vf_num);
+ igt_assert_f(pci_dev, "No PCI device for given VF number: %d\n", vf_num);
+ sprintf(pci_slot, "%04x:%02x:%02x.%x",
+ pci_dev->domain_16, pci_dev->bus, pci_dev->dev, pci_dev->func);
+
+ sysfs = igt_sysfs_open(pf);
+ igt_assert_fd(sysfs);
+
+ igt_debug("vf_num: %u, pci_slot: %s\n", vf_num, pci_slot);
+ ret = igt_sysfs_set(sysfs, bind ? "device/driver/bind" : "device/driver/unbind", pci_slot);
+
+ close(sysfs);
+
+ return ret;
+}
+
+/**
+ * igt_sriov_bind_vf_drm_driver - Bind DRM driver to VF
+ * @pf: PF device file descriptor
+ * @vf_num: VF number (1-based to identify single VF)
+ *
+ * Bind the DRM driver to given VF.
+ * It asserts on failure.
+ */
+void igt_sriov_bind_vf_drm_driver(int pf, unsigned int vf_num)
+{
+ igt_assert(__igt_sriov_bind_vf_drm_driver(pf, vf_num, true));
+}
+
+/**
+ * igt_sriov_unbind_vf_drm_driver - Unbind DRM driver from VF
+ * @pf: PF device file descriptor
+ * @vf_num: VF number (1-based to identify single VF)
+ *
+ * Unbind the DRM driver from given VF.
+ * It asserts on failure.
+ */
+void igt_sriov_unbind_vf_drm_driver(int pf, unsigned int vf_num)
+{
+ igt_assert(__igt_sriov_bind_vf_drm_driver(pf, vf_num, false));
+}
diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h
index c442c41a7..a3a08f8e1 100644
--- a/lib/igt_sriov_device.h
+++ b/lib/igt_sriov_device.h
@@ -25,6 +25,8 @@ 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);
+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);
/**
* for_each_sriov_vf - Helper for running code on each VF
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread* Re: [PATCH i-g-t v7 6/7] lib/igt_sriov_device: add helpers for VF DRM driver bind and unbind
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 6/7] lib/igt_sriov_device: add helpers for VF DRM driver bind and unbind Lukasz Laguna
@ 2023-12-13 15:00 ` Kamil Konieczny
2023-12-13 21:29 ` Laguna, Lukasz
0 siblings, 1 reply; 21+ messages in thread
From: Kamil Konieczny @ 2023-12-13 15:00 UTC (permalink / raw)
To: igt-dev
Hi Lukasz,
On 2023-12-05 at 09:16:17 +0100, Lukasz Laguna wrote:
> Helpers allow to bind and unbind a DRM driver for specified VF of a
> given PF device.
>
> Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
> ---
> lib/igt_sriov_device.c | 52 ++++++++++++++++++++++++++++++++++++++++++
> lib/igt_sriov_device.h | 2 ++
> 2 files changed, 54 insertions(+)
>
> diff --git a/lib/igt_sriov_device.c b/lib/igt_sriov_device.c
> index c643f47d1..354125974 100644
> --- a/lib/igt_sriov_device.c
> +++ b/lib/igt_sriov_device.c
> @@ -5,9 +5,11 @@
>
> #include <dirent.h>
> #include <errno.h>
> +#include <pciaccess.h>
>
> #include "drmtest.h"
> #include "igt_core.h"
> +#include "igt_device.h"
> #include "igt_sriov_device.h"
> #include "igt_sysfs.h"
>
> @@ -287,3 +289,53 @@ bool igt_sriov_is_vf_drm_driver_probed(int pf, unsigned int vf_num)
>
> return ret;
> }
> +
> +static bool __igt_sriov_bind_vf_drm_driver(int pf, unsigned int vf_num, bool bind)
Why bool here? imho better name would be:
static bool __igt_sriov_set_vf_pci_slot(int pf, unsigned int vf_num, const char *bind)
> +{
> + int sysfs, ret;
> + struct pci_device *pci_dev;
> + char pci_slot[14];
> +
> + igt_assert(vf_num > 0);
> +
> + pci_dev = __igt_device_get_pci_device(pf, vf_num);
> + igt_assert_f(pci_dev, "No PCI device for given VF number: %d\n", vf_num);
> + sprintf(pci_slot, "%04x:%02x:%02x.%x",
> + pci_dev->domain_16, pci_dev->bus, pci_dev->dev, pci_dev->func);
> +
> + sysfs = igt_sysfs_open(pf);
> + igt_assert_fd(sysfs);
> +
> + igt_debug("vf_num: %u, pci_slot: %s\n", vf_num, pci_slot);
> + ret = igt_sysfs_set(sysfs, bind ? "device/driver/bind" : "device/driver/unbind", pci_slot);
So here would be:
ret = igt_sysfs_set(sysfs, bind, pci_slot);
You could also add bind param into prints.
> +
> + close(sysfs);
> +
> + return ret;
> +}
> +
> +/**
> + * igt_sriov_bind_vf_drm_driver - Bind DRM driver to VF
> + * @pf: PF device file descriptor
> + * @vf_num: VF number (1-based to identify single VF)
> + *
> + * Bind the DRM driver to given VF.
> + * It asserts on failure.
> + */
> +void igt_sriov_bind_vf_drm_driver(int pf, unsigned int vf_num)
> +{
> + igt_assert(__igt_sriov_bind_vf_drm_driver(pf, vf_num, true));
imho assert on
__igt_sriov_set_vf_pci_slot(pf, vf_num, "device/driver/bind");
> +}
> +
> +/**
> + * igt_sriov_unbind_vf_drm_driver - Unbind DRM driver from VF
> + * @pf: PF device file descriptor
> + * @vf_num: VF number (1-based to identify single VF)
> + *
> + * Unbind the DRM driver from given VF.
> + * It asserts on failure.
> + */
> +void igt_sriov_unbind_vf_drm_driver(int pf, unsigned int vf_num)
> +{
> + igt_assert(__igt_sriov_bind_vf_drm_driver(pf, vf_num, false));
imho assert on
__igt_sriov_set_vf_pci_slot(pf, vf_num, "device/driver/unbind");
Regards,
Kamil
> +}
> diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h
> index c442c41a7..a3a08f8e1 100644
> --- a/lib/igt_sriov_device.h
> +++ b/lib/igt_sriov_device.h
> @@ -25,6 +25,8 @@ 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);
> +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);
>
> /**
> * for_each_sriov_vf - Helper for running code on each VF
> --
> 2.40.0
>
^ permalink raw reply [flat|nested] 21+ messages in thread* Re: [PATCH i-g-t v7 6/7] lib/igt_sriov_device: add helpers for VF DRM driver bind and unbind
2023-12-13 15:00 ` Kamil Konieczny
@ 2023-12-13 21:29 ` Laguna, Lukasz
2023-12-14 12:32 ` Kamil Konieczny
0 siblings, 1 reply; 21+ messages in thread
From: Laguna, Lukasz @ 2023-12-13 21:29 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, marcin.bernatowicz, michal.wajdeczko
On 12/13/2023 16:00, Kamil Konieczny wrote:
> Hi Lukasz,
> On 2023-12-05 at 09:16:17 +0100, Lukasz Laguna wrote:
>> Helpers allow to bind and unbind a DRM driver for specified VF of a
>> given PF device.
>>
>> Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
>> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
>> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
>> ---
>> lib/igt_sriov_device.c | 52 ++++++++++++++++++++++++++++++++++++++++++
>> lib/igt_sriov_device.h | 2 ++
>> 2 files changed, 54 insertions(+)
>>
>> diff --git a/lib/igt_sriov_device.c b/lib/igt_sriov_device.c
>> index c643f47d1..354125974 100644
>> --- a/lib/igt_sriov_device.c
>> +++ b/lib/igt_sriov_device.c
>> @@ -5,9 +5,11 @@
>>
>> #include <dirent.h>
>> #include <errno.h>
>> +#include <pciaccess.h>
>>
>> #include "drmtest.h"
>> #include "igt_core.h"
>> +#include "igt_device.h"
>> #include "igt_sriov_device.h"
>> #include "igt_sysfs.h"
>>
>> @@ -287,3 +289,53 @@ bool igt_sriov_is_vf_drm_driver_probed(int pf, unsigned int vf_num)
>>
>> return ret;
>> }
>> +
>> +static bool __igt_sriov_bind_vf_drm_driver(int pf, unsigned int vf_num, bool bind)
> Why bool here? imho better name would be:
Bool, because it returns only a result from igt_sysfs_set which is bool.
I see that "ret" is int actually, but I can change it to bool.
I can also change return type to int and return -1 in case of false from
igt_sysfs_set(), but it introduces new unnecessary logic and I don't see
any advantage of such approach.
> static bool __igt_sriov_set_vf_pci_slot(int pf, unsigned int vf_num, const char *bind)
It wouldn't be clear to me what's the responsibility of a function with
such name and how to use it. I prefer to leave current name and form of
the implementation.
>> +{
>> + int sysfs, ret;
>> + struct pci_device *pci_dev;
>> + char pci_slot[14];
>> +
>> + igt_assert(vf_num > 0);
>> +
>> + pci_dev = __igt_device_get_pci_device(pf, vf_num);
>> + igt_assert_f(pci_dev, "No PCI device for given VF number: %d\n", vf_num);
>> + sprintf(pci_slot, "%04x:%02x:%02x.%x",
>> + pci_dev->domain_16, pci_dev->bus, pci_dev->dev, pci_dev->func);
>> +
>> + sysfs = igt_sysfs_open(pf);
>> + igt_assert_fd(sysfs);
>> +
>> + igt_debug("vf_num: %u, pci_slot: %s\n", vf_num, pci_slot);
>> + ret = igt_sysfs_set(sysfs, bind ? "device/driver/bind" : "device/driver/unbind", pci_slot);
> So here would be:
> ret = igt_sysfs_set(sysfs, bind, pci_slot);
>
> You could also add bind param into prints.
>
>> +
>> + close(sysfs);
>> +
>> + return ret;
>> +}
>> +
>> +/**
>> + * igt_sriov_bind_vf_drm_driver - Bind DRM driver to VF
>> + * @pf: PF device file descriptor
>> + * @vf_num: VF number (1-based to identify single VF)
>> + *
>> + * Bind the DRM driver to given VF.
>> + * It asserts on failure.
>> + */
>> +void igt_sriov_bind_vf_drm_driver(int pf, unsigned int vf_num)
>> +{
>> + igt_assert(__igt_sriov_bind_vf_drm_driver(pf, vf_num, true));
> imho assert on
> __igt_sriov_set_vf_pci_slot(pf, vf_num, "device/driver/bind");
>
>> +}
>> +
>> +/**
>> + * igt_sriov_unbind_vf_drm_driver - Unbind DRM driver from VF
>> + * @pf: PF device file descriptor
>> + * @vf_num: VF number (1-based to identify single VF)
>> + *
>> + * Unbind the DRM driver from given VF.
>> + * It asserts on failure.
>> + */
>> +void igt_sriov_unbind_vf_drm_driver(int pf, unsigned int vf_num)
>> +{
>> + igt_assert(__igt_sriov_bind_vf_drm_driver(pf, vf_num, false));
> imho assert on
> __igt_sriov_set_vf_pci_slot(pf, vf_num, "device/driver/unbind");
>
> Regards,
> Kamil
>
>> +}
>> diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h
>> index c442c41a7..a3a08f8e1 100644
>> --- a/lib/igt_sriov_device.h
>> +++ b/lib/igt_sriov_device.h
>> @@ -25,6 +25,8 @@ 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);
>> +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);
>>
>> /**
>> * for_each_sriov_vf - Helper for running code on each VF
>> --
>> 2.40.0
>>
^ permalink raw reply [flat|nested] 21+ messages in thread* Re: [PATCH i-g-t v7 6/7] lib/igt_sriov_device: add helpers for VF DRM driver bind and unbind
2023-12-13 21:29 ` Laguna, Lukasz
@ 2023-12-14 12:32 ` Kamil Konieczny
0 siblings, 0 replies; 21+ messages in thread
From: Kamil Konieczny @ 2023-12-14 12:32 UTC (permalink / raw)
To: igt-dev
Hi Lukasz,
On 2023-12-13 at 22:29:32 +0100, Laguna, Lukasz wrote:
> On 12/13/2023 16:00, Kamil Konieczny wrote:
> > Hi Lukasz,
> > On 2023-12-05 at 09:16:17 +0100, Lukasz Laguna wrote:
> > > Helpers allow to bind and unbind a DRM driver for specified VF of a
> > > given PF device.
> > >
> > > Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> > > Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> > > Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
> > > ---
> > > lib/igt_sriov_device.c | 52 ++++++++++++++++++++++++++++++++++++++++++
> > > lib/igt_sriov_device.h | 2 ++
> > > 2 files changed, 54 insertions(+)
> > >
> > > diff --git a/lib/igt_sriov_device.c b/lib/igt_sriov_device.c
> > > index c643f47d1..354125974 100644
> > > --- a/lib/igt_sriov_device.c
> > > +++ b/lib/igt_sriov_device.c
> > > @@ -5,9 +5,11 @@
> > > #include <dirent.h>
> > > #include <errno.h>
> > > +#include <pciaccess.h>
> > > #include "drmtest.h"
> > > #include "igt_core.h"
> > > +#include "igt_device.h"
> > > #include "igt_sriov_device.h"
> > > #include "igt_sysfs.h"
> > > @@ -287,3 +289,53 @@ bool igt_sriov_is_vf_drm_driver_probed(int pf, unsigned int vf_num)
> > > return ret;
> > > }
> > > +
> > > +static bool __igt_sriov_bind_vf_drm_driver(int pf, unsigned int vf_num, bool bind)
> > Why bool here? imho better name would be:
>
>
> Bool, because it returns only a result from igt_sysfs_set which is bool. I
> see that "ret" is int actually, but I can change it to bool.
> I can also change return type to int and return -1 in case of false from
> igt_sysfs_set(), but it introduces new unnecessary logic and I don't see any
> advantage of such approach.
I was talking about second bool, it is usally bad to have bool params
but I would not force it, I agree that if you are not convinced you
can keep your code as is.
As for
bool ret;
it looks better, with this:
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Regards,
Kamil
>
>
> > static bool __igt_sriov_set_vf_pci_slot(int pf, unsigned int vf_num, const char *bind)
>
>
> It wouldn't be clear to me what's the responsibility of a function with such
> name and how to use it. I prefer to leave current name and form of the
> implementation.
>
>
> > > +{
> > > + int sysfs, ret;
> > > + struct pci_device *pci_dev;
> > > + char pci_slot[14];
> > > +
> > > + igt_assert(vf_num > 0);
> > > +
> > > + pci_dev = __igt_device_get_pci_device(pf, vf_num);
> > > + igt_assert_f(pci_dev, "No PCI device for given VF number: %d\n", vf_num);
> > > + sprintf(pci_slot, "%04x:%02x:%02x.%x",
> > > + pci_dev->domain_16, pci_dev->bus, pci_dev->dev, pci_dev->func);
> > > +
> > > + sysfs = igt_sysfs_open(pf);
> > > + igt_assert_fd(sysfs);
> > > +
> > > + igt_debug("vf_num: %u, pci_slot: %s\n", vf_num, pci_slot);
> > > + ret = igt_sysfs_set(sysfs, bind ? "device/driver/bind" : "device/driver/unbind", pci_slot);
> > So here would be:
> > ret = igt_sysfs_set(sysfs, bind, pci_slot);
> >
> > You could also add bind param into prints.
> >
> > > +
> > > + close(sysfs);
> > > +
> > > + return ret;
> > > +}
> > > +
> > > +/**
> > > + * igt_sriov_bind_vf_drm_driver - Bind DRM driver to VF
> > > + * @pf: PF device file descriptor
> > > + * @vf_num: VF number (1-based to identify single VF)
> > > + *
> > > + * Bind the DRM driver to given VF.
> > > + * It asserts on failure.
> > > + */
> > > +void igt_sriov_bind_vf_drm_driver(int pf, unsigned int vf_num)
> > > +{
> > > + igt_assert(__igt_sriov_bind_vf_drm_driver(pf, vf_num, true));
> > imho assert on
> > __igt_sriov_set_vf_pci_slot(pf, vf_num, "device/driver/bind");
> >
> > > +}
> > > +
> > > +/**
> > > + * igt_sriov_unbind_vf_drm_driver - Unbind DRM driver from VF
> > > + * @pf: PF device file descriptor
> > > + * @vf_num: VF number (1-based to identify single VF)
> > > + *
> > > + * Unbind the DRM driver from given VF.
> > > + * It asserts on failure.
> > > + */
> > > +void igt_sriov_unbind_vf_drm_driver(int pf, unsigned int vf_num)
> > > +{
> > > + igt_assert(__igt_sriov_bind_vf_drm_driver(pf, vf_num, false));
> > imho assert on
> > __igt_sriov_set_vf_pci_slot(pf, vf_num, "device/driver/unbind");
> >
> > Regards,
> > Kamil
> >
> > > +}
> > > diff --git a/lib/igt_sriov_device.h b/lib/igt_sriov_device.h
> > > index c442c41a7..a3a08f8e1 100644
> > > --- a/lib/igt_sriov_device.h
> > > +++ b/lib/igt_sriov_device.h
> > > @@ -25,6 +25,8 @@ 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);
> > > +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);
> > > /**
> > > * for_each_sriov_vf - Helper for running code on each VF
> > > --
> > > 2.40.0
> > >
^ permalink raw reply [flat|nested] 21+ messages in thread
* [igt-dev] [PATCH i-g-t v7 7/7] tests/sriov_basic: validate driver binding to VFs
2023-12-05 8:16 [igt-dev] [PATCH i-g-t v7 0/7] Initial SR-IOV validation Lukasz Laguna
` (5 preceding siblings ...)
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 6/7] lib/igt_sriov_device: add helpers for VF DRM driver bind and unbind Lukasz Laguna
@ 2023-12-05 8:16 ` Lukasz Laguna
2023-12-13 15:07 ` Kamil Konieczny
2023-12-05 12:31 ` [igt-dev] ✓ Fi.CI.BAT: success for Initial SR-IOV validation (rev8) Patchwork
` (2 subsequent siblings)
9 siblings, 1 reply; 21+ messages in thread
From: Lukasz Laguna @ 2023-12-05 8:16 UTC (permalink / raw)
To: igt-dev
- bind-unbind-vf: validate driver binding and unbinding to specified VF
- enable-vfs-bind-unbind-each: validate driver binding and unbinding to
VFs from specified range.
v2:
- remove checks that are outside the scope of the test (Michal)
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
tests/sriov_basic.c | 90 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 90 insertions(+)
diff --git a/tests/sriov_basic.c b/tests/sriov_basic.c
index 582e644f2..96ee5943e 100644
--- a/tests/sriov_basic.c
+++ b/tests/sriov_basic.c
@@ -60,6 +60,58 @@ static void enable_vfs_autoprobe_on(int pf_fd, unsigned int num_vfs)
igt_assert(!err);
}
+/**
+ * SUBTEST: enable-vfs-bind-unbind-each
+ * Description:
+ * Verify VFs enabling with binding and unbinding the driver one be one to each of them
+ * Run type: BAT
+ */
+static void enable_vfs_bind_unbind_each(int pf_fd, unsigned int num_vfs)
+{
+ igt_debug("Testing %u VFs\n", num_vfs);
+
+ igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0);
+
+ igt_sriov_disable_driver_autoprobe(pf_fd);
+ igt_sriov_enable_vfs(pf_fd, num_vfs);
+ igt_sriov_enable_driver_autoprobe(pf_fd);
+
+ for (int i = 1; i <= num_vfs; i++) {
+ igt_assert(!igt_sriov_is_vf_drm_driver_probed(pf_fd, i));
+ igt_sriov_bind_vf_drm_driver(pf_fd, i);
+ igt_assert(igt_sriov_is_vf_drm_driver_probed(pf_fd, i));
+ igt_sriov_unbind_vf_drm_driver(pf_fd, i);
+ igt_assert(!igt_sriov_is_vf_drm_driver_probed(pf_fd, i));
+ }
+
+ igt_sriov_disable_vfs(pf_fd);
+}
+
+/**
+ * SUBTEST: bind-unbind-vf
+ * Description:
+ * Verify binding and unbinding the driver to specific VF
+ * Run type: BAT
+ */
+static void bind_unbind_vf(int pf_fd, unsigned int vf_num)
+{
+ igt_debug("Testing VF%u\n", vf_num);
+
+ igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0);
+
+ igt_sriov_disable_driver_autoprobe(pf_fd);
+ igt_sriov_enable_vfs(pf_fd, vf_num);
+ igt_sriov_enable_driver_autoprobe(pf_fd);
+
+ igt_assert(!igt_sriov_is_vf_drm_driver_probed(pf_fd, vf_num));
+ igt_sriov_bind_vf_drm_driver(pf_fd, vf_num);
+ igt_assert(igt_sriov_is_vf_drm_driver_probed(pf_fd, vf_num));
+ igt_sriov_unbind_vf_drm_driver(pf_fd, vf_num);
+ igt_assert(!igt_sriov_is_vf_drm_driver_probed(pf_fd, vf_num));
+
+ igt_sriov_disable_vfs(pf_fd);
+}
+
igt_main
{
int pf_fd;
@@ -110,6 +162,44 @@ igt_main
}
}
+ igt_describe("Verify VFs enabling with binding and unbinding the driver one be one to each of them");
+ igt_subtest_with_dynamic("enable-vfs-bind-unbind-each") {
+ for_each_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-%u", num_vfs) {
+ enable_vfs_bind_unbind_each(pf_fd, num_vfs);
+ }
+ }
+ for_random_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-random") {
+ enable_vfs_bind_unbind_each(pf_fd, num_vfs);
+ }
+ }
+ for_max_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-all") {
+ enable_vfs_bind_unbind_each(pf_fd, num_vfs);
+ }
+ }
+ }
+
+ igt_describe("Test binds and unbinds the driver to specific VF");
+ igt_subtest_with_dynamic("bind-unbind-vf") {
+ for_each_sriov_vf(pf_fd, vf) {
+ igt_dynamic_f("vf-%u", vf) {
+ bind_unbind_vf(pf_fd, vf);
+ }
+ }
+ for_random_sriov_vf(pf_fd, vf) {
+ igt_dynamic_f("vf-random") {
+ bind_unbind_vf(pf_fd, vf);
+ }
+ }
+ for_last_sriov_vf(pf_fd, vf) {
+ igt_dynamic_f("vf-last") {
+ bind_unbind_vf(pf_fd, vf);
+ }
+ }
+ }
+
igt_fixture {
igt_sriov_disable_vfs(pf_fd);
/* abort to avoid execution of next tests with enabled VFs */
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread* Re: [PATCH i-g-t v7 7/7] tests/sriov_basic: validate driver binding to VFs
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 7/7] tests/sriov_basic: validate driver binding to VFs Lukasz Laguna
@ 2023-12-13 15:07 ` Kamil Konieczny
0 siblings, 0 replies; 21+ messages in thread
From: Kamil Konieczny @ 2023-12-13 15:07 UTC (permalink / raw)
To: igt-dev
Hi Lukasz,
On 2023-12-05 at 09:16:18 +0100, Lukasz Laguna wrote:
> - bind-unbind-vf: validate driver binding and unbinding to specified VF
> - enable-vfs-bind-unbind-each: validate driver binding and unbinding to
> VFs from specified range.
>
> v2:
> - remove checks that are outside the scope of the test (Michal)
>
> Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
> ---
> tests/sriov_basic.c | 90 +++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 90 insertions(+)
>
> diff --git a/tests/sriov_basic.c b/tests/sriov_basic.c
> index 582e644f2..96ee5943e 100644
> --- a/tests/sriov_basic.c
> +++ b/tests/sriov_basic.c
> @@ -60,6 +60,58 @@ static void enable_vfs_autoprobe_on(int pf_fd, unsigned int num_vfs)
> igt_assert(!err);
> }
>
> +/**
> + * SUBTEST: enable-vfs-bind-unbind-each
> + * Description:
> + * Verify VFs enabling with binding and unbinding the driver one be one to each of them
> + * Run type: BAT
> + */
> +static void enable_vfs_bind_unbind_each(int pf_fd, unsigned int num_vfs)
> +{
> + igt_debug("Testing %u VFs\n", num_vfs);
> +
> + igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0);
> +
> + igt_sriov_disable_driver_autoprobe(pf_fd);
> + igt_sriov_enable_vfs(pf_fd, num_vfs);
> + igt_sriov_enable_driver_autoprobe(pf_fd);
> +
> + for (int i = 1; i <= num_vfs; i++) {
> + igt_assert(!igt_sriov_is_vf_drm_driver_probed(pf_fd, i));
Put newline here.
> + igt_sriov_bind_vf_drm_driver(pf_fd, i);
> + igt_assert(igt_sriov_is_vf_drm_driver_probed(pf_fd, i));
Put newline here.
> + igt_sriov_unbind_vf_drm_driver(pf_fd, i);
> + igt_assert(!igt_sriov_is_vf_drm_driver_probed(pf_fd, i));
> + }
> +
> + igt_sriov_disable_vfs(pf_fd);
> +}
> +
> +/**
> + * SUBTEST: bind-unbind-vf
> + * Description:
> + * Verify binding and unbinding the driver to specific VF
> + * Run type: BAT
> + */
> +static void bind_unbind_vf(int pf_fd, unsigned int vf_num)
> +{
> + igt_debug("Testing VF%u\n", vf_num);
> +
> + igt_require(igt_sriov_get_enabled_vfs(pf_fd) == 0);
> +
> + igt_sriov_disable_driver_autoprobe(pf_fd);
> + igt_sriov_enable_vfs(pf_fd, vf_num);
> + igt_sriov_enable_driver_autoprobe(pf_fd);
> +
> + igt_assert(!igt_sriov_is_vf_drm_driver_probed(pf_fd, vf_num));
Put newline here.
> + igt_sriov_bind_vf_drm_driver(pf_fd, vf_num);
> + igt_assert(igt_sriov_is_vf_drm_driver_probed(pf_fd, vf_num));
Put newline here.
With that:
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> + igt_sriov_unbind_vf_drm_driver(pf_fd, vf_num);
> + igt_assert(!igt_sriov_is_vf_drm_driver_probed(pf_fd, vf_num));
> +
> + igt_sriov_disable_vfs(pf_fd);
> +}
> +
> igt_main
> {
> int pf_fd;
> @@ -110,6 +162,44 @@ igt_main
> }
> }
>
> + igt_describe("Verify VFs enabling with binding and unbinding the driver one be one to each of them");
> + igt_subtest_with_dynamic("enable-vfs-bind-unbind-each") {
> + for_each_sriov_num_vfs(pf_fd, num_vfs) {
> + igt_dynamic_f("numvfs-%u", num_vfs) {
> + enable_vfs_bind_unbind_each(pf_fd, num_vfs);
> + }
> + }
> + for_random_sriov_num_vfs(pf_fd, num_vfs) {
> + igt_dynamic_f("numvfs-random") {
> + enable_vfs_bind_unbind_each(pf_fd, num_vfs);
> + }
> + }
> + for_max_sriov_num_vfs(pf_fd, num_vfs) {
> + igt_dynamic_f("numvfs-all") {
> + enable_vfs_bind_unbind_each(pf_fd, num_vfs);
> + }
> + }
> + }
> +
> + igt_describe("Test binds and unbinds the driver to specific VF");
> + igt_subtest_with_dynamic("bind-unbind-vf") {
> + for_each_sriov_vf(pf_fd, vf) {
> + igt_dynamic_f("vf-%u", vf) {
> + bind_unbind_vf(pf_fd, vf);
> + }
> + }
> + for_random_sriov_vf(pf_fd, vf) {
> + igt_dynamic_f("vf-random") {
> + bind_unbind_vf(pf_fd, vf);
> + }
> + }
> + for_last_sriov_vf(pf_fd, vf) {
> + igt_dynamic_f("vf-last") {
> + bind_unbind_vf(pf_fd, vf);
> + }
> + }
> + }
> +
> igt_fixture {
> igt_sriov_disable_vfs(pf_fd);
> /* abort to avoid execution of next tests with enabled VFs */
> --
> 2.40.0
>
^ permalink raw reply [flat|nested] 21+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Initial SR-IOV validation (rev8)
2023-12-05 8:16 [igt-dev] [PATCH i-g-t v7 0/7] Initial SR-IOV validation Lukasz Laguna
` (6 preceding siblings ...)
2023-12-05 8:16 ` [igt-dev] [PATCH i-g-t v7 7/7] tests/sriov_basic: validate driver binding to VFs Lukasz Laguna
@ 2023-12-05 12:31 ` Patchwork
2023-12-05 14:25 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork
2023-12-05 19:44 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork
9 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2023-12-05 12:31 UTC (permalink / raw)
To: Lukasz Laguna; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8306 bytes --]
== Series Details ==
Series: Initial SR-IOV validation (rev8)
URL : https://patchwork.freedesktop.org/series/126034/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13981 -> IGTPW_10335
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/index.html
Participating hosts (35 -> 36)
------------------------------
Additional (2): bat-kbl-2 bat-atsm-1
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10335 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-kbl-2: NOTRUN -> [ABORT][1] ([i915#9793])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-kbl-2/igt@core_hotunplug@unbind-rebind.html
- bat-atsm-1: NOTRUN -> [ABORT][2] ([i915#8213])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@core_hotunplug@unbind-rebind.html
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1849])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-kbl-2/igt@fbdev@info.html
* igt@gem_mmap@basic:
- bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#4083])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@gem_mmap@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-atsm-1: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@size-max:
- bat-atsm-1: NOTRUN -> [SKIP][8] ([i915#6077]) +36 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@kms_addfb_basic@size-max.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-atsm-1: NOTRUN -> [SKIP][9] ([i915#5608] / [i915#6077])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-atsm-1: NOTRUN -> [SKIP][10] ([i915#5608] / [i915#6078]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-atsm-1: NOTRUN -> [SKIP][11] ([i915#6078]) +19 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_flip@basic-flip-vs-dpms@c-dp5:
- bat-adlp-11: [PASS][12] -> [DMESG-WARN][13] ([i915#6868])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms@c-dp5.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms@c-dp5.html
* igt@kms_flip@basic-flip-vs-dpms@d-dp6:
- bat-adlp-11: [PASS][14] -> [FAIL][15] ([i915#6121]) +4 other tests fail
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms@d-dp6.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms@d-dp6.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-atsm-1: NOTRUN -> [SKIP][16] ([i915#6093]) +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-atsm-1: NOTRUN -> [SKIP][17] ([i915#1836]) +6 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_prop_blob@basic:
- bat-atsm-1: NOTRUN -> [SKIP][18] ([i915#7357])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@kms_prop_blob@basic.html
* igt@kms_psr@psr_primary_mmap_gtt:
- bat-kbl-2: NOTRUN -> [SKIP][19] ([fdo#109271]) +35 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-kbl-2/igt@kms_psr@psr_primary_mmap_gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-atsm-1: NOTRUN -> [SKIP][20] ([i915#6094])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-atsm-1: NOTRUN -> [SKIP][21] ([fdo#109295] / [i915#6078])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-atsm-1: NOTRUN -> [SKIP][22] ([fdo#109295] / [i915#4077]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-atsm-1: NOTRUN -> [SKIP][23] ([fdo#109295]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/bat-atsm-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@kms_hdmi_inject@inject-audio:
- fi-kbl-guc: [FAIL][24] ([IGT#3]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
[i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
[i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093
[i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868
[i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357
[i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981
[i915#9793]: https://gitlab.freedesktop.org/drm/intel/issues/9793
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7620 -> IGTPW_10335
CI-20190529: 20190529
CI_DRM_13981: aaf3a2f69283b9783afb92c0aa5463f7176d20dd @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10335: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/index.html
IGT_7620: 6714b814e7f82743abf45c33361fbe057a22880a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@sriov_basic@bind-unbind-vf
+igt@sriov_basic@enable-vfs-autoprobe-off
+igt@sriov_basic@enable-vfs-autoprobe-on
+igt@sriov_basic@enable-vfs-bind-unbind-each
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/index.html
[-- Attachment #2: Type: text/html, Size: 9873 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread* [igt-dev] ✗ CI.xeBAT: failure for Initial SR-IOV validation (rev8)
2023-12-05 8:16 [igt-dev] [PATCH i-g-t v7 0/7] Initial SR-IOV validation Lukasz Laguna
` (7 preceding siblings ...)
2023-12-05 12:31 ` [igt-dev] ✓ Fi.CI.BAT: success for Initial SR-IOV validation (rev8) Patchwork
@ 2023-12-05 14:25 ` Patchwork
2023-12-13 15:11 ` Kamil Konieczny
2023-12-05 19:44 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork
9 siblings, 1 reply; 21+ messages in thread
From: Patchwork @ 2023-12-05 14:25 UTC (permalink / raw)
To: Lukasz Laguna; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 16855 bytes --]
== Series Details ==
Series: Initial SR-IOV validation (rev8)
URL : https://patchwork.freedesktop.org/series/126034/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7620_BAT -> XEIGTPW_10335_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_10335_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_10335_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 (3 -> 4)
------------------------------
Additional (1): bat-dg2-oem2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_10335_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-edp-1:
- bat-adlp-7: NOTRUN -> [FAIL][1] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-edp-1.html
#### Warnings ####
* igt@xe_evict@evict-beng-small-external:
- bat-pvc-2: [SKIP][2] ([Intel XE#688]) -> [FAIL][3] +3 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate:
- bat-pvc-2: [FAIL][4] -> [SKIP][5] +32 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-pvc-2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-pvc-2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate.html
* igt@xe_mmap@vram:
- bat-adlp-7: [FAIL][6] -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-adlp-7/igt@xe_mmap@vram.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-adlp-7/igt@xe_mmap@vram.html
Known issues
------------
Here are the changes found in XEIGTPW_10335_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-oem2: NOTRUN -> [SKIP][8] ([Intel XE#623])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-oem2: NOTRUN -> [SKIP][9] ([Intel XE#423])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-oem2: NOTRUN -> [SKIP][10] ([i915#5274])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- bat-dg2-oem2: NOTRUN -> [FAIL][11] ([Intel XE#608])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
- bat-dg2-oem2: NOTRUN -> [FAIL][12] ([Intel XE#400] / [Intel XE#616]) +2 other tests fail
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
* igt@kms_psr@psr_cursor_plane_move:
- bat-dg2-oem2: NOTRUN -> [SKIP][13] ([Intel XE#929]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-dg2-oem2/igt@kms_psr@psr_cursor_plane_move.html
* igt@xe_compute@compute-square:
- bat-dg2-oem2: NOTRUN -> [SKIP][14] ([Intel XE#672])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-dg2-oem2/igt@xe_compute@compute-square.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr:
- bat-dg2-oem2: NOTRUN -> [SKIP][15] ([Intel XE#288]) +32 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html
* igt@xe_huc_copy@huc_copy:
- bat-dg2-oem2: NOTRUN -> [SKIP][16] ([Intel XE#255])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html
* igt@xe_pat@pat-index-xe2:
- bat-dg2-oem2: NOTRUN -> [SKIP][17] ([Intel XE#977])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-dg2-oem2: NOTRUN -> [SKIP][18] ([Intel XE#979]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xehpc@render-system-vram01-uc-wc-mixed-pde:
- bat-pvc-2: NOTRUN -> [SKIP][19] ([Intel XE#976]) +647 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-pvc-2/igt@xe_pat@pat-index-xehpc@render-system-vram01-uc-wc-mixed-pde.html
#### Possible fixes ####
* igt@xe_create@create-execqueues-noleak:
- bat-pvc-2: [WARN][20] -> [PASS][21] +1 other test pass
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-pvc-2/igt@xe_create@create-execqueues-noleak.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-pvc-2/igt@xe_create@create-execqueues-noleak.html
* igt@xe_create@create-massive-size:
- bat-atsm-2: [FAIL][22] ([Intel XE#981]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-atsm-2/igt@xe_create@create-massive-size.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-atsm-2/igt@xe_create@create-massive-size.html
- bat-pvc-2: [FAIL][24] ([Intel XE#981]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-pvc-2/igt@xe_create@create-massive-size.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-pvc-2/igt@xe_create@create-massive-size.html
* igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
- bat-pvc-2: [SKIP][26] ([Intel XE#688]) -> [PASS][27] +8 other tests pass
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-pvc-2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-pvc-2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
* igt@xe_evict@evict-mixed-threads-small:
- bat-atsm-2: [SKIP][28] ([Intel XE#688]) -> [PASS][29] +17 other tests pass
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-atsm-2/igt@xe_evict@evict-mixed-threads-small.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-atsm-2/igt@xe_evict@evict-mixed-threads-small.html
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race:
- bat-atsm-2: [CRASH][30] -> [PASS][31] +5 other tests pass
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-atsm-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-atsm-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html
* igt@xe_intel_bb@intel-bb-blit-y:
- bat-pvc-2: [FAIL][32] -> [PASS][33] +73 other tests pass
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-pvc-2/igt@xe_intel_bb@intel-bb-blit-y.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-pvc-2/igt@xe_intel_bb@intel-bb-blit-y.html
* igt@xe_intel_bb@offset-control:
- bat-adlp-7: [FAIL][34] -> [PASS][35] +185 other tests pass
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-adlp-7/igt@xe_intel_bb@offset-control.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-adlp-7/igt@xe_intel_bb@offset-control.html
* igt@xe_mmap@cpu-caching:
- bat-pvc-2: [FAIL][36] ([Intel XE#982]) -> [PASS][37]
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-pvc-2/igt@xe_mmap@cpu-caching.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-pvc-2/igt@xe_mmap@cpu-caching.html
- bat-atsm-2: [FAIL][38] ([Intel XE#982]) -> [PASS][39]
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-atsm-2/igt@xe_mmap@cpu-caching.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-atsm-2/igt@xe_mmap@cpu-caching.html
* igt@xe_mmap@system:
- bat-atsm-2: [FAIL][40] -> [PASS][41] +34 other tests pass
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-atsm-2/igt@xe_mmap@system.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-atsm-2/igt@xe_mmap@system.html
* igt@xe_pat@pat-index-xehpc:
- bat-pvc-2: [INCOMPLETE][42] ([Intel XE#978]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-pvc-2/igt@xe_pat@pat-index-xehpc.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-pvc-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-atsm-2: [INCOMPLETE][44] ([Intel XE#978]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-atsm-2/igt@xe_pat@pat-index-xelp.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-atsm-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@prime-external-import-coh:
- bat-atsm-2: [FAIL][46] ([Intel XE#984]) -> [PASS][47] +1 other test pass
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-atsm-2/igt@xe_pat@prime-external-import-coh.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-atsm-2/igt@xe_pat@prime-external-import-coh.html
* igt@xe_pat@userptr-coh-none:
- bat-pvc-2: [FAIL][48] ([Intel XE#984]) -> [PASS][49] +1 other test pass
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-pvc-2/igt@xe_pat@userptr-coh-none.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-pvc-2/igt@xe_pat@userptr-coh-none.html
* igt@xe_vm@munmap-style-unbind-userptr-front:
- bat-atsm-2: [SKIP][50] -> [PASS][51] +9 other tests pass
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-atsm-2/igt@xe_vm@munmap-style-unbind-userptr-front.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-atsm-2/igt@xe_vm@munmap-style-unbind-userptr-front.html
* igt@xe_vm@munmap-style-unbind-userptr-inval-front:
- bat-pvc-2: [SKIP][52] -> [PASS][53] +8 other tests pass
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-pvc-2/igt@xe_vm@munmap-style-unbind-userptr-inval-front.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-pvc-2/igt@xe_vm@munmap-style-unbind-userptr-inval-front.html
#### Warnings ####
* igt@kms_dsc@dsc-basic:
- bat-adlp-7: [FAIL][54] -> [SKIP][55] ([Intel XE#423])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-adlp-7/igt@kms_dsc@dsc-basic.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-adlp-7/igt@kms_dsc@dsc-basic.html
* igt@xe_create@create-execqueues-noleak:
- bat-adlp-7: [FAIL][56] -> [FAIL][57] ([Intel XE#524])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html
- bat-atsm-2: [FAIL][58] -> [FAIL][59] ([Intel XE#524])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-atsm-2/igt@xe_create@create-execqueues-noleak.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-atsm-2/igt@xe_create@create-execqueues-noleak.html
* igt@xe_evict@evict-beng-small:
- bat-adlp-7: [FAIL][60] -> [SKIP][61] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-adlp-7/igt@xe_evict@evict-beng-small.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-adlp-7/igt@xe_evict@evict-beng-small.html
* igt@xe_evict@evict-beng-small-cm:
- bat-pvc-2: [SKIP][62] ([Intel XE#688]) -> [DMESG-FAIL][63] ([Intel XE#482]) +3 other tests dmesg-fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-pvc-2/igt@xe_evict@evict-beng-small-cm.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-pvc-2/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- bat-adlp-7: [FAIL][64] -> [SKIP][65] ([Intel XE#688]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
- bat-pvc-2: [SKIP][66] ([Intel XE#688]) -> [INCOMPLETE][67] ([Intel XE#392])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-pvc-2/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-pvc-2/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
- bat-adlp-7: [FAIL][68] -> [SKIP][69] ([Intel XE#288]) +32 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html
* igt@xe_pat@pat-index-xe2:
- bat-adlp-7: [FAIL][70] -> [SKIP][71] ([Intel XE#977])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-adlp-7/igt@xe_pat@pat-index-xe2.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-adlp-7/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-adlp-7: [FAIL][72] -> [SKIP][73] ([Intel XE#979]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7620/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400
[Intel XE#423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/423
[Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
[Intel XE#608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/608
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/672
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#976]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/976
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#978]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/978
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[Intel XE#981]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/981
[Intel XE#982]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/982
[Intel XE#984]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/984
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
Build changes
-------------
* IGT: IGT_7620 -> IGTPW_10335
* Linux: xe-549-9c26345b7aaf1e2fa46cf8ee34b60d587790d600 -> xe-550-ac7b89571d802765762e7c15d78a6dcd5d92c41b
IGTPW_10335: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/index.html
IGT_7620: 6714b814e7f82743abf45c33361fbe057a22880a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-549-9c26345b7aaf1e2fa46cf8ee34b60d587790d600: 9c26345b7aaf1e2fa46cf8ee34b60d587790d600
xe-550-ac7b89571d802765762e7c15d78a6dcd5d92c41b: ac7b89571d802765762e7c15d78a6dcd5d92c41b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10335/index.html
[-- Attachment #2: Type: text/html, Size: 19544 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread* [igt-dev] ✗ Fi.CI.IGT: failure for Initial SR-IOV validation (rev8)
2023-12-05 8:16 [igt-dev] [PATCH i-g-t v7 0/7] Initial SR-IOV validation Lukasz Laguna
` (8 preceding siblings ...)
2023-12-05 14:25 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork
@ 2023-12-05 19:44 ` Patchwork
2023-12-13 15:14 ` Kamil Konieczny
9 siblings, 1 reply; 21+ messages in thread
From: Patchwork @ 2023-12-05 19:44 UTC (permalink / raw)
To: Lukasz Laguna; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 87797 bytes --]
== Series Details ==
Series: Initial SR-IOV validation (rev8)
URL : https://patchwork.freedesktop.org/series/126034/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13981_full -> IGTPW_10335_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10335_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10335_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_10335/index.html
Participating hosts (7 -> 7)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10335_full:
### IGT changes ###
#### Possible regressions ####
* igt@device_reset@unbind-reset-rebind:
- shard-tglu: NOTRUN -> [ABORT][1] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-6/igt@device_reset@unbind-reset-rebind.html
* igt@gem_lmem_swapping@parallel-multi@lmem0:
- shard-dg2: NOTRUN -> [ABORT][2] +9 other tests abort
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-2/igt@gem_lmem_swapping@parallel-multi@lmem0.html
- shard-dg1: NOTRUN -> [ABORT][3] +8 other tests abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-19/igt@gem_lmem_swapping@parallel-multi@lmem0.html
* igt@i915_selftest@live@guc_multi_lrc:
- shard-mtlp: [PASS][4] -> [DMESG-WARN][5] +3 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-mtlp-2/igt@i915_selftest@live@guc_multi_lrc.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-1/igt@i915_selftest@live@guc_multi_lrc.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-mtlp: NOTRUN -> [SKIP][6] +8 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][7] +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@sriov_basic@bind-unbind-vf (NEW):
- shard-dg1: NOTRUN -> [SKIP][8] +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off (NEW):
- shard-rkl: NOTRUN -> [SKIP][9] +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on (NEW):
- shard-tglu: NOTRUN -> [SKIP][10] +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-5/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Warnings ####
* igt@gem_lmem_swapping@basic@lmem0:
- shard-dg1: [ABORT][11] ([i915#4391] / [i915#4423]) -> [ABORT][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-dg1-19/igt@gem_lmem_swapping@basic@lmem0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@gem_lmem_swapping@basic@lmem0.html
* igt@kms_content_protection@srm:
- shard-snb: [SKIP][13] ([fdo#109271]) -> [INCOMPLETE][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-snb2/igt@kms_content_protection@srm.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-snb7/igt@kms_content_protection@srm.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_psr@fbc-pr-cursor-plane-onoff}:
- shard-dg1: NOTRUN -> [SKIP][15] +37 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-18/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* {igt@kms_psr@fbc-pr-no-drrs}:
- shard-rkl: NOTRUN -> [SKIP][16] +23 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-7/igt@kms_psr@fbc-pr-no-drrs.html
* {igt@kms_psr@fbc-pr-primary-mmap-gtt}:
- shard-dg2: NOTRUN -> [SKIP][17] +24 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-6/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
* {igt@kms_psr@pr-basic}:
- shard-mtlp: NOTRUN -> [SKIP][18] +16 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-5/igt@kms_psr@pr-basic.html
* {igt@kms_psr@psr2-primary-render}:
- shard-tglu: NOTRUN -> [SKIP][19] +18 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-7/igt@kms_psr@psr2-primary-render.html
New tests
---------
New tests have been introduced between CI_DRM_13981_full and IGTPW_10335_full:
### New IGT tests (6) ###
* igt@kms_psr@fbc-psr-primary-blt@edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_psr@psr2-primary-render@edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@sriov_basic@bind-unbind-vf:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@sriov_basic@enable-vfs-autoprobe-off:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@sriov_basic@enable-vfs-autoprobe-on:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_10335_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#7701])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [INCOMPLETE][21] ([i915#9408])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html
- shard-glk: NOTRUN -> [ABORT][22] ([i915#8668]) +1 other test abort
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-glk5/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#8414]) +6 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-13/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8414]) +5 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: [PASS][25] -> [FAIL][26] ([i915#7742])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8414]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-2/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#3555]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#9323])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-13/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][30] ([i915#7297])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#7697])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#7697])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#7697])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-16/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#8562])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-10/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#8562])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-7/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#8555])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#8555])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@legacy-engines-queued:
- shard-snb: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#1099]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-snb1/igt@gem_ctx_persistence@legacy-engines-queued.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#5882]) +9 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-10/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#280])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-4/igt@gem_ctx_sseu@invalid-args.html
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#280])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-2/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][42] ([i915#280]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-3/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [FAIL][43] ([i915#5784])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4771]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-6/igt@gem_exec_balancer@bonded-dual.html
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4771])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-18/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#4525]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-2/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-tglu: NOTRUN -> [FAIL][47] ([i915#2842]) +1 other test fail
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-7/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: NOTRUN -> [FAIL][48] ([i915#2842])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4473] / [i915#4771])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-3/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][50] -> [FAIL][51] ([i915#2842])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-2/igt@gem_exec_fair@basic-pace-solo.html
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3539])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-19/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fence@submit:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4812])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-10/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3539] / [i915#4852]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-2/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852]) +5 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-13/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-active:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#3281]) +6 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-4/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#3281]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#3281]) +6 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-16/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3281]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4860])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-7/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4860])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-11/igt@gem_fenced_exec_thrash@too-many-fences.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4860])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-12/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613] / [i915#7582])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#4613]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-glk1/igt@gem_lmem_swapping@massive-random.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4613]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4613]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#4613]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-4/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#284])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-5/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-19/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4077]) +9 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-17/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4077]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +10 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_wc@coherency:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4083]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-3/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +7 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) +5 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@gem_pread@exhaustion.html
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3282])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-10/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-regular-buffer:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4270]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-3/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#4270]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-2/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4270]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3282]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-5/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8428]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#8411])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4079])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#4079])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4079])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-10/igt@gem_set_tiling_vs_gtt.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#3323])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-4/igt@gem_userptr_blits@dmabuf-sync.html
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-5/igt@gem_userptr_blits@dmabuf-sync.html
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3323])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4958])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-7/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4958])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-14/igt@gem_userptr_blits@sd-probe.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][95] ([fdo#109271]) +210 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-snb6/igt@gem_vm_create@invalid-create.html
* igt@gen3_mixed_blits:
- shard-dg2: NOTRUN -> [SKIP][96] ([fdo#109289]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@gen3_mixed_blits.html
* igt@gen3_render_mixed_blits:
- shard-rkl: NOTRUN -> [SKIP][97] ([fdo#109289])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-1/igt@gen3_render_mixed_blits.html
* igt@gen7_exec_parse@basic-offset:
- shard-mtlp: NOTRUN -> [SKIP][98] ([fdo#109289]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-5/igt@gen7_exec_parse@basic-offset.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [PASS][99] -> [INCOMPLETE][100] ([i915#5566])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-glk5/igt@gen9_exec_parse@allowed-all.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-glk3/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-3/igt@gen9_exec_parse@basic-rejected.html
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#2856]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-1/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#2527]) +6 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#2856]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-6/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#2527]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-7/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@load:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#6227])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: NOTRUN -> [ABORT][107] ([i915#8668]) +1 other test abort
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#8399])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#8399])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-dg1: NOTRUN -> [SKIP][110] ([fdo#109289]) +4 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-12/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#8437])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#6188])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-5/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#5723])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-3/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-dg2: NOTRUN -> [ABORT][114] ([i915#8213])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-11/igt@i915_suspend@basic-s2idle-without-i915.html
- shard-rkl: NOTRUN -> [ABORT][115] ([i915#8213])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: NOTRUN -> [ABORT][116] ([fdo#103375])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#5190]) +6 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#4212]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#4212]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-13/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#8709]) +7 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][123] ([fdo#111614]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-10/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][124] -> [FAIL][125] ([i915#5138])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][126] ([fdo#111615] / [i915#5286])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5286]) +4 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#5286])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][129] ([fdo#111614]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-9/igt@kms_big_fb@linear-16bpp-rotate-90.html
- shard-mtlp: NOTRUN -> [SKIP][130] ([fdo#111614]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-8/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#3638]) +4 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-12/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][132] ([fdo#111614] / [i915#3638]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6187])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][134] -> [FAIL][135] ([i915#3743]) +1 other test fail
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#4538]) +6 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][137] ([fdo#110723]) +4 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5190]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][139] ([fdo#111615]) +4 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-mtlp: NOTRUN -> [SKIP][140] ([fdo#111615]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#2705])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-8/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#5354] / [i915#6095]) +41 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-4/igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#5354]) +78 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#5354] / [i915#6095]) +23 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#5354] / [i915#6095]) +62 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#5354]) +30 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#5354] / [i915#6095]) +44 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#4087]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][149] ([fdo#111827])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@kms_chamelium_color@degamma.html
- shard-dg1: NOTRUN -> [SKIP][150] ([fdo#111827]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-16/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#7828]) +5 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#7828]) +5 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-10/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#7828]) +5 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-2/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#7828]) +6 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#7828]) +5 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#7116]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-16/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#3299])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#3116])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#3299]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@kms_content_protection@dp-mst-type-1.html
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#3116] / [i915#3299]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-6/igt@kms_content_protection@dp-mst-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3299]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#6944]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-7/igt@kms_content_protection@lic.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#7118])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-2/igt@kms_content_protection@lic.html
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#7116] / [i915#7118])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-4/igt@kms_content_protection@lic.html
* igt@kms_content_protection@lic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][165] ([i915#7173])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#9424]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-11/igt@kms_content_protection@mei-interface.html
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#9424])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-14/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#3555]) +5 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8814])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3359]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3359]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-4/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3359]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#3359])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#3359])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#4213])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#4103])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#4103])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#4103] / [i915#4213] / [i915#5608])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][179] ([fdo#109274] / [i915#5354]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-tglu: NOTRUN -> [SKIP][180] ([fdo#109274]) +4 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#9723])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-16/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3555]) +6 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8827])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_aux_dev:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#1257])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-17/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#3840])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#3469])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#1839])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-3/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#9337])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][189] ([fdo#109274]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-tglu: NOTRUN -> [SKIP][190] ([fdo#109274] / [i915#3637] / [i915#3966])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-7/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][191] ([fdo#109274] / [i915#3637]) +8 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3637]) +7 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2: NOTRUN -> [SKIP][193] ([fdo#109274] / [fdo#111767])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
- shard-rkl: NOTRUN -> [SKIP][194] ([fdo#111767] / [fdo#111825])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
- shard-dg1: NOTRUN -> [SKIP][195] ([fdo#111767] / [fdo#111825])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-13/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
- shard-tglu: NOTRUN -> [SKIP][196] ([fdo#109274] / [fdo#111767] / [i915#3637])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
- shard-mtlp: NOTRUN -> [SKIP][197] ([fdo#111767] / [i915#3637])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-8/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][198] ([fdo#111825]) +12 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-7/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#8381])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) +3 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#2672]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#2672]) +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#2672]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8810])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8810])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#2587] / [i915#2672]) +8 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-snb: [PASS][208] -> [SKIP][209] ([fdo#109271]) +9 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][210] ([fdo#109280]) +21 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#1825]) +24 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][212] ([fdo#111825]) +49 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#8708]) +6 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#3023]) +20 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#8708]) +13 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#8708]) +14 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#3458]) +9 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][218] ([fdo#111825] / [i915#1825]) +27 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#3458]) +13 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][220] ([fdo#110189]) +22 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#433])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-5/igt@kms_hdr@bpc-switch-dpms.html
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-8/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-19/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#6301])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-3/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3582]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8821])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-3/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#9423]) +5 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#9423]) +3 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#5176] / [i915#9423]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#5176] / [i915#9423]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#5235]) +3 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#5235]) +7 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#5235]) +7 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#5235]) +11 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#5235]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][239] ([fdo#109271]) +145 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-glk2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#5235]) +11 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#5354])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-19/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#3361])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-16/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#3361])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#8430])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-1/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#8430])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-12/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#8430])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-5/igt@kms_pm_lpsp@screens-disabled.html
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#8430])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-3/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-pc8-residency-stress:
- shard-dg2: NOTRUN -> [SKIP][248] ([fdo#109293] / [fdo#109506])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-10/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
- shard-dg1: NOTRUN -> [SKIP][249] ([fdo#109293] / [fdo#109506])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#9683]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#9683])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#9683])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-7/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#9683]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-19/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][254] ([fdo#111068] / [i915#9683])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-12/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
- shard-tglu: NOTRUN -> [SKIP][255] ([fdo#111068] / [i915#9683])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][256] ([fdo#111068] / [i915#9683])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#9685]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#9685])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#4235])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-11/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#4884])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-19/igt@kms_rotation_crc@exhaust-fences.html
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#4235]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-3/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#4235] / [i915#5190])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][263] ([fdo#111615] / [i915#5289])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-dg1: NOTRUN -> [SKIP][264] ([fdo#111615] / [i915#5289]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu: NOTRUN -> [SKIP][265] ([fdo#111615] / [i915#5289])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#3555]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8809]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-7/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#2437])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-3/igt@kms_writeback@writeback-fb-id.html
- shard-glk: NOTRUN -> [SKIP][269] ([fdo#109271] / [i915#2437])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-glk6/igt@kms_writeback@writeback-fb-id.html
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#2437])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-8/igt@kms_writeback@writeback-fb-id.html
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#2437])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-5/igt@kms_writeback@writeback-fb-id.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#7387])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-5/igt@perf@global-sseu-config-invalid.html
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#7387])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-5/igt@perf@global-sseu-config-invalid.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#2435])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][275] ([fdo#109289] / [i915#2433])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-18/igt@perf@per-context-mode-unprivileged.html
- shard-tglu: NOTRUN -> [SKIP][276] ([fdo#109289]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-6/igt@perf@per-context-mode-unprivileged.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#3708] / [i915#4077])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-6/igt@prime_vgem@basic-gtt.html
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#3708] / [i915#4077])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-18/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][279] ([fdo#109295] / [i915#3291] / [i915#3708])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-5/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][280] ([fdo#109295])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-3/igt@prime_vgem@fence-write-hang.html
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#3708])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-2/igt@prime_vgem@fence-write-hang.html
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#3708])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-10/igt@prime_vgem@fence-write-hang.html
- shard-rkl: NOTRUN -> [SKIP][283] ([fdo#109295] / [i915#3708])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-4/igt@prime_vgem@fence-write-hang.html
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#3708])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-17/igt@prime_vgem@fence-write-hang.html
* igt@v3d/v3d_get_param@base-params:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#2575]) +11 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-7/igt@v3d/v3d_get_param@base-params.html
* igt@v3d/v3d_perfmon@get-values-invalid-pad:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#2575]) +13 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-13/igt@v3d/v3d_perfmon@get-values-invalid-pad.html
* igt@v3d/v3d_submit_cl@bad-flag:
- shard-tglu: NOTRUN -> [SKIP][287] ([fdo#109315] / [i915#2575]) +10 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-4/igt@v3d/v3d_submit_cl@bad-flag.html
* igt@v3d/v3d_submit_cl@bad-multisync-out-sync:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#2575]) +8 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-6/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html
* igt@v3d/v3d_wait_bo@bad-bo:
- shard-rkl: NOTRUN -> [SKIP][289] ([fdo#109315]) +11 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-7/igt@v3d/v3d_wait_bo@bad-bo.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#7711]) +11 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-13/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#7711]) +5 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#7711]) +5 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-2/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_wait_bo@bad-pad:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#7711]) +8 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-10/igt@vc4/vc4_wait_bo@bad-pad.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#2575]) +5 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-3/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][295] ([i915#7742]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@fbdev@pan:
- shard-snb: [FAIL][297] ([i915#4435]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-snb7/igt@fbdev@pan.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-snb6/igt@fbdev@pan.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][299] ([i915#2846]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [FAIL][301] ([i915#2842]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [FAIL][303] ([i915#2842]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@i915_selftest@live@gem_contexts:
- shard-mtlp: [DMESG-FAIL][305] ([i915#9780]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-mtlp-2/igt@i915_selftest@live@gem_contexts.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-1/igt@i915_selftest@live@gem_contexts.html
* igt@i915_selftest@perf@region:
- shard-mtlp: [DMESG-WARN][307] -> [PASS][308] +1 other test pass
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-mtlp-8/igt@i915_selftest@perf@region.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-2/igt@i915_selftest@perf@region.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][309] ([i915#5138]) -> [PASS][310] +1 other test pass
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [FAIL][311] ([i915#3743]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-snb: [SKIP][313] ([fdo#109271]) -> [PASS][314] +4 other tests pass
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-snb1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@single-move@all-pipes:
- shard-mtlp: [DMESG-WARN][315] ([i915#2017]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-8/igt@kms_cursor_legacy@single-move@all-pipes.html
#### Warnings ####
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [INCOMPLETE][317] ([i915#5566]) -> [ABORT][318] ([i915#5566])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-glk8/igt@gen9_exec_parse@allowed-single.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-glk1/igt@gen9_exec_parse@allowed-single.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [INCOMPLETE][319] ([i915#9200]) -> [ABORT][320] ([i915#8668])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [ABORT][321] -> [INCOMPLETE][322] ([i915#9200])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_async_flips@crc@pipe-a-edp-1:
- shard-mtlp: [DMESG-FAIL][323] ([i915#8561]) -> [FAIL][324] ([i915#8247]) +1 other test fail
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-mtlp-8/igt@kms_async_flips@crc@pipe-a-edp-1.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-7/igt@kms_async_flips@crc@pipe-a-edp-1.html
* igt@kms_content_protection@atomic:
- shard-snb: [INCOMPLETE][325] -> [SKIP][326] ([fdo#109271])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-snb7/igt@kms_content_protection@atomic.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-snb1/igt@kms_content_protection@atomic.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][327] ([i915#3955]) -> [SKIP][328] ([fdo#110189] / [i915#3955])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337
[i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9780]: https://gitlab.freedesktop.org/drm/intel/issues/9780
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7620 -> IGTPW_10335
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13981: aaf3a2f69283b9783afb92c0aa5463f7176d20dd @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10335: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/index.html
IGT_7620: 6714b814e7f82743abf45c33361fbe057a22880a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/index.html
[-- Attachment #2: Type: text/html, Size: 110150 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Initial SR-IOV validation (rev8)
2023-12-05 19:44 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork
@ 2023-12-13 15:14 ` Kamil Konieczny
2023-12-14 9:26 ` Illipilli, TejasreeX
0 siblings, 1 reply; 21+ messages in thread
From: Kamil Konieczny @ 2023-12-13 15:14 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra, lgci.bug.filing
Hi,
below regressions are unrelated to new libs and tests for sr-iov (sriov)
while skips are ok (as there are no sr-iov configs now).
Regards,
Kamil
On 2023-12-05 at 19:44:52 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: Initial SR-IOV validation (rev8)
> URL : https://patchwork.freedesktop.org/series/126034/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_13981_full -> IGTPW_10335_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_10335_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_10335_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_10335/index.html
>
> Participating hosts (7 -> 7)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_10335_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@device_reset@unbind-reset-rebind:
> - shard-tglu: NOTRUN -> [ABORT][1] +1 other test abort
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-6/igt@device_reset@unbind-reset-rebind.html
>
> * igt@gem_lmem_swapping@parallel-multi@lmem0:
> - shard-dg2: NOTRUN -> [ABORT][2] +9 other tests abort
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-2/igt@gem_lmem_swapping@parallel-multi@lmem0.html
> - shard-dg1: NOTRUN -> [ABORT][3] +8 other tests abort
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-19/igt@gem_lmem_swapping@parallel-multi@lmem0.html
>
> * igt@i915_selftest@live@guc_multi_lrc:
> - shard-mtlp: [PASS][4] -> [DMESG-WARN][5] +3 other tests dmesg-warn
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-mtlp-2/igt@i915_selftest@live@guc_multi_lrc.html
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-1/igt@i915_selftest@live@guc_multi_lrc.html
>
> * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
> - shard-mtlp: NOTRUN -> [SKIP][6] +8 other tests skip
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
>
> * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
> - shard-dg2: NOTRUN -> [SKIP][7] +2 other tests skip
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
New tests for sriov - skips are ok.
>
> * igt@sriov_basic@bind-unbind-vf (NEW):
> - shard-dg1: NOTRUN -> [SKIP][8] +2 other tests skip
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@sriov_basic@bind-unbind-vf.html
>
> * igt@sriov_basic@enable-vfs-autoprobe-off (NEW):
> - shard-rkl: NOTRUN -> [SKIP][9] +2 other tests skip
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
>
> * igt@sriov_basic@enable-vfs-autoprobe-on (NEW):
> - shard-tglu: NOTRUN -> [SKIP][10] +3 other tests skip
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-5/igt@sriov_basic@enable-vfs-autoprobe-on.html
>
>
> #### Warnings ####
>
> * igt@gem_lmem_swapping@basic@lmem0:
> - shard-dg1: [ABORT][11] ([i915#4391] / [i915#4423]) -> [ABORT][12]
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-dg1-19/igt@gem_lmem_swapping@basic@lmem0.html
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@gem_lmem_swapping@basic@lmem0.html
>
> * igt@kms_content_protection@srm:
> - shard-snb: [SKIP][13] ([fdo#109271]) -> [INCOMPLETE][14]
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-snb2/igt@kms_content_protection@srm.html
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-snb7/igt@kms_content_protection@srm.html
>
>
> #### Suppressed ####
>
[...cut...]
>
>
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7620 -> IGTPW_10335
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_13981: aaf3a2f69283b9783afb92c0aa5463f7176d20dd @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_10335: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/index.html
> IGT_7620: 6714b814e7f82743abf45c33361fbe057a22880a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/index.html
^ permalink raw reply [flat|nested] 21+ messages in thread
* RE: [igt-dev] ✗ Fi.CI.IGT: failure for Initial SR-IOV validation (rev8)
2023-12-13 15:14 ` Kamil Konieczny
@ 2023-12-14 9:26 ` Illipilli, TejasreeX
0 siblings, 0 replies; 21+ messages in thread
From: Illipilli, TejasreeX @ 2023-12-14 9:26 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev@lists.freedesktop.org
Cc: I915-ci-infra@lists.freedesktop.org, LGCI Bug Filing
Hi,
This patchwork cannot be re-reported as results were already dropped from the server. Results are kept for a week only. Please try re-test.
https://patchwork.freedesktop.org/series/126034/
Thanks,
Tejasree
-----Original Message-----
From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Sent: Wednesday, December 13, 2023 8:44 PM
To: igt-dev@lists.freedesktop.org
Cc: Laguna, Lukasz <lukasz.laguna@intel.com>; I915-ci-infra@lists.freedesktop.org; LGCI Bug Filing <lgci.bug.filing@intel.com>; Illipilli, TejasreeX <tejasreex.illipilli@intel.com>
Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for Initial SR-IOV validation (rev8)
Hi,
below regressions are unrelated to new libs and tests for sr-iov (sriov) while skips are ok (as there are no sr-iov configs now).
Regards,
Kamil
On 2023-12-05 at 19:44:52 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: Initial SR-IOV validation (rev8)
> URL : https://patchwork.freedesktop.org/series/126034/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_13981_full -> IGTPW_10335_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_10335_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_10335_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_10335/index.html
>
> Participating hosts (7 -> 7)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_10335_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@device_reset@unbind-reset-rebind:
> - shard-tglu: NOTRUN -> [ABORT][1] +1 other test abort
> [1]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-6/igt@
> device_reset@unbind-reset-rebind.html
>
> * igt@gem_lmem_swapping@parallel-multi@lmem0:
> - shard-dg2: NOTRUN -> [ABORT][2] +9 other tests abort
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-2/igt@gem_lmem_swapping@parallel-multi@lmem0.html
> - shard-dg1: NOTRUN -> [ABORT][3] +8 other tests abort
> [3]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-19/igt@
> gem_lmem_swapping@parallel-multi@lmem0.html
>
> * igt@i915_selftest@live@guc_multi_lrc:
> - shard-mtlp: [PASS][4] -> [DMESG-WARN][5] +3 other tests dmesg-warn
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-mtlp-2/igt@i915_selftest@live@guc_multi_lrc.html
> [5]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-1/igt@
> i915_selftest@live@guc_multi_lrc.html
>
> * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
> - shard-mtlp: NOTRUN -> [SKIP][6] +8 other tests skip
> [6]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-mtlp-2/igt@
> kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
>
> * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
> - shard-dg2: NOTRUN -> [SKIP][7] +2 other tests skip
> [7]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg2-1/igt@k
> ms_dirtyfb@drrs-dirtyfb-ioctl.html
New tests for sriov - skips are ok.
>
> * igt@sriov_basic@bind-unbind-vf (NEW):
> - shard-dg1: NOTRUN -> [SKIP][8] +2 other tests skip
> [8]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@
> sriov_basic@bind-unbind-vf.html
>
> * igt@sriov_basic@enable-vfs-autoprobe-off (NEW):
> - shard-rkl: NOTRUN -> [SKIP][9] +2 other tests skip
> [9]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-rkl-3/igt@s
> riov_basic@enable-vfs-autoprobe-off.html
>
> * igt@sriov_basic@enable-vfs-autoprobe-on (NEW):
> - shard-tglu: NOTRUN -> [SKIP][10] +3 other tests skip
> [10]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-tglu-5/igt@
> sriov_basic@enable-vfs-autoprobe-on.html
>
>
> #### Warnings ####
>
> * igt@gem_lmem_swapping@basic@lmem0:
> - shard-dg1: [ABORT][11] ([i915#4391] / [i915#4423]) -> [ABORT][12]
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-dg1-19/igt@gem_lmem_swapping@basic@lmem0.html
> [12]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-dg1-15/igt@
> gem_lmem_swapping@basic@lmem0.html
>
> * igt@kms_content_protection@srm:
> - shard-snb: [SKIP][13] ([fdo#109271]) -> [INCOMPLETE][14]
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13981/shard-snb2/igt@kms_content_protection@srm.html
> [14]:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/shard-snb7/igt@km
> s_content_protection@srm.html
>
>
> #### Suppressed ####
>
[...cut...]
>
>
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7620 -> IGTPW_10335
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_13981: aaf3a2f69283b9783afb92c0aa5463f7176d20dd @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_10335: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/index.html
> IGT_7620: 6714b814e7f82743abf45c33361fbe057a22880a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
> == Logs ==
>
> For more details see:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10335/index.html
^ permalink raw reply [flat|nested] 21+ messages in thread